/* ==============================
   Post-Layout – ergänzt style.css
   ============================== */

/* Seiten-Hintergrund */
body {
    background-color: var(--cream);
}

/* ==============================
   Post-Header (Titelbereich)
   ============================== */
.post-hero {
    background: var(--purple-deep);
    padding: 140px 0 72px;
    position: relative;
    overflow: hidden;
}

.post-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -60deg,
        transparent,
        transparent 40px,
        rgba(255, 255, 255, 0.014) 40px,
        rgba(255, 255, 255, 0.014) 41px
    );
    pointer-events: none;
}

.post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 32px;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
}

.post-back:hover {
    color: var(--white);
}

.post-back::before {
    content: '←';
    font-size: 15px;
}

.post-hero-inner {
    position: relative;
    z-index: 1;
}

.post-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.post-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 780px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.post-meta-divider {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

/* ==============================
   Post-Body (Artikel-Text)
   ============================== */
.post-body {
    padding: 80px 0 100px;
}

.post-content {
    max-width: 720px;
    margin: 0 auto;
}

.post-content p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 24px;
}

.post-content h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin-top: 52px;
    margin-bottom: 16px;
}

.post-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 36px;
    margin-bottom: 12px;
}

.post-content ul,
.post-content ol {
    list-style: revert;
    padding-left: 28px;
    margin-bottom: 24px;
}

.post-content li {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 8px;
}

.post-content blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    border-left: 3px solid var(--gold);
    background: rgba(119, 81, 68, 0.06);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-content blockquote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

.post-content .lead {
    font-size: 19px;
    color: var(--text-dark);
    line-height: 1.75;
    font-weight: 400;
}

/* ==============================
   Post-Footer (Navigation)
   ============================== */
.post-footer-nav {
    border-top: 1px solid var(--cream-dark);
    padding-top: 48px;
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.post-footer-nav .btn {
    font-size: 14px;
    padding: 12px 26px;
}
