/* ─────────────────────────────────────────────────────────────────────────────
   VISORA JOURNAL — Magazin-Style Blog
   Editorial layout, Bento-Grid, atmosphärischer Hero, hochwertige Typografie.
   Erweitert visora-home.css für die blog.html-Seite und einzelne Blog-Posts.
   ───────────────────────────────────────────────────────────────────────────── */

.journal-body {
    background: var(--color-bg);
    color: var(--color-text);
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.journal-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

/* Subtle grid backdrop */
.journal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 100% 80px,
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 80px 100%;
    mask-image: radial-gradient(ellipse 90% 60% at 50% 35%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 35%, #000 0%, transparent 75%);
    z-index: 0;
}

.journal-hero__shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.journal-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
}
.journal-hero__orb--1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255, 64, 141, 0.45), transparent 70%);
    top: 12%;
    left: 8%;
    animation: orbFloat1 22s ease-in-out infinite;
}
.journal-hero__orb--2 {
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.35), transparent 70%);
    bottom: 8%;
    right: 6%;
    animation: orbFloat2 26s ease-in-out infinite;
}
.journal-hero__orb--3 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(208, 90, 255, 0.3), transparent 70%);
    top: 55%;
    left: 45%;
    animation: orbFloat3 30s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, 30px) scale(1.12); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-50px, -25px) scale(1.08); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, 0) scale(1); }
    50%      { transform: translate(-40%, -30px) scale(1.15); }
}

.journal-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.journal-hero__masthead {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    margin: 0 0 1.5rem;
}
.journal-hero__masthead-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
}

.journal-hero__title {
    font-family: 'Manrope', serif;
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin: 0 0 1.5rem;
}
.journal-hero__title em {
    font-style: italic;
    font-weight: 400;
    background: var(--gradient-brand);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.02em;
    display: inline-block;
    animation: gradientShift 8s ease-in-out infinite;
    position: relative;
}

.journal-hero__title em::after {
    content: '';
    position: absolute;
    inset: -8% -4%;
    background: radial-gradient(ellipse at center, rgba(255, 64, 141, 0.18), transparent 65%);
    filter: blur(28px);
    z-index: -1;
    opacity: 0.7;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50%      { opacity: 0.85; transform: scale(1.06); }
}

.journal-hero__tagline {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--color-text-muted);
    margin: 0 auto 3rem;
    max-width: 50ch;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

.journal-hero__meta {
    display: inline-flex;
    align-items: center;
    gap: 2.2rem;
    padding: 1rem 1.8rem;
    background: rgba(255,255,255,0.025);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 999px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.journal-hero__meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.journal-hero__meta-num {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
}
.journal-hero__meta-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
}
.journal-hero__meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.08);
}

.journal-hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    z-index: 2;
}
.journal-hero__scroll-hint i {
    animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50%      { transform: translateY(6px); opacity: 1; }
}

/* ─── TOOLBAR ─────────────────────────────────────────────────────────────── */
.journal-toolbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}
.journal-toolbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.journal-search {
    position: relative;
    flex: 0 1 320px;
    min-width: 240px;
}
.journal-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}
.journal-search input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}
.journal-search input:focus {
    border-color: rgba(0,200,255,0.45);
    background: rgba(255,255,255,0.05);
}

.journal-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.3rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 999px;
}
.journal-filter {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.55);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s, transform 0.15s;
}
.journal-filter:hover { color: #fff; }
.journal-filter:active { transform: scale(0.96); }
.journal-filter.is-active {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* ─── SECTION HEADS ───────────────────────────────────────────────────────── */
.journal-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255,255,255,0.55);
    font-weight: 700;
    margin: 0 0 1rem;
}
.journal-section-kicker span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.85;
}

.journal-section-head {
    margin-bottom: 2.5rem;
}
.journal-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0;
}

/* ─── FEATURED CARD ───────────────────────────────────────────────────────── */
.journal-featured {
    padding: 5rem 0 3rem;
    position: relative;
}

.journal-feature-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.008));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
    isolation: isolate;
    transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1), border-color 0.5s, box-shadow 0.5s;
}

.journal-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.65);
}

@media (min-width: 1024px) {
    .journal-feature-card {
        grid-template-columns: 1.25fr 1fr;
        min-height: 560px;
    }
}

.journal-feature-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    min-height: 320px;
}
@media (min-width: 1024px) {
    .journal-feature-card__image {
        aspect-ratio: auto;
        height: 100%;
    }
}
.journal-feature-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.45) 0%, transparent 55%);
    pointer-events: none;
}
.journal-feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s cubic-bezier(0.2,0.7,0.2,1), filter 0.6s;
    filter: saturate(1.05);
}
.journal-feature-card:hover .journal-feature-card__image img {
    transform: scale(1.06);
    filter: saturate(1.18);
}

.journal-feature-card__badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    background: #ffffff;
    color: #0a0a0a;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

.journal-feature-card__content {
    padding: 3rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
@media (min-width: 1024px) {
    .journal-feature-card__content {
        padding: 3.5rem 3.5rem 3.5rem 3.5rem;
    }
}

.journal-feature-card__cat {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
}

.journal-feature-card__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
    transition: color 0.3s;
}
.journal-feature-card:hover .journal-feature-card__title {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.journal-feature-card__excerpt {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    margin: 0;
    max-width: 52ch;
}

.journal-feature-card__meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.2rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 600px) {
    .journal-feature-card__meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.journal-feature-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.journal-feature-card__author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #0a0a0a;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.journal-feature-card__author-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}
.journal-feature-card__author-role {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
}
.journal-feature-card__stats {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.journal-feature-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0a0a0a;
    align-self: flex-start;
    padding: 0.78rem 1.5rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.journal-feature-card:hover .journal-feature-card__cta {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.4);
}
.journal-feature-card__cta i {
    transition: transform 0.3s;
}
.journal-feature-card:hover .journal-feature-card__cta i {
    transform: translateX(4px);
}

.journal-dot { opacity: 0.4; }

/* ─── GRID SECTION ────────────────────────────────────────────────────────── */
.journal-grid-section {
    padding: 4rem 0 5rem;
}

.journal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

@media (min-width: 700px) {
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem;
    }
}

@media (min-width: 1024px) {
    .journal-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.75rem;
    }

    .journal-card { grid-column: span 2; }
    .journal-card--large { grid-column: span 3; }
}

/* ─── CARD ────────────────────────────────────────────────────────────────── */
.journal-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.55s cubic-bezier(0.2,0.7,0.2,1), border-color 0.4s, box-shadow 0.5s;
    isolation: isolate;
}
.journal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.journal-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.journal-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-bg-alt);
}
.journal-card--large .journal-card__image {
    aspect-ratio: 16/9;
}
.journal-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 40%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.journal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.2,0.7,0.2,1), filter 0.6s;
    filter: saturate(1.05);
}
.journal-card:hover .journal-card__image img {
    transform: scale(1.08);
    filter: saturate(1.2);
}

.journal-card__cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
}
.journal-card__cat::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ffffff;
}

.journal-card__content {
    padding: 1.5rem 1.7rem 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}
.journal-card--large .journal-card__content {
    padding: 1.8rem 2rem 2rem;
}

.journal-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin: 0;
    color: #fff;
    transition: color 0.3s;
}
.journal-card--large .journal-card__title {
    font-size: 1.45rem;
    line-height: 1.2;
}
.journal-card:hover .journal-card__title {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.journal-card__excerpt {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

.journal-card__meta {
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.02em;
}

/* ─── NEWSLETTER ──────────────────────────────────────────────────────────── */
.journal-newsletter {
    padding: 4rem 0 7rem;
}

.journal-newsletter__card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 2.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
}

@media (min-width: 800px) {
    .journal-newsletter__card {
        grid-template-columns: 1.1fr 1fr;
        gap: 3rem;
        padding: 4rem 4rem;
        align-items: center;
    }
}

.journal-newsletter__title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.journal-newsletter__sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
    max-width: 48ch;
}

.journal-newsletter__field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
@media (min-width: 500px) {
    .journal-newsletter__field {
        flex-direction: row;
        align-items: stretch;
    }
}
.journal-newsletter__field input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}
.journal-newsletter__field input:focus {
    border-color: rgba(0,200,255,0.5);
    background: rgba(255,255,255,0.08);
}
.journal-newsletter__field input::placeholder {
    color: rgba(255,255,255,0.35);
}

.journal-newsletter__legal {
    margin: 1rem 0 0;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
}
.journal-newsletter__legal a {
    color: rgba(255,255,255,0.55);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.2);
    text-underline-offset: 2px;
}
.journal-newsletter__legal a:hover { color: #fff; }

.journal-newsletter__success {
    margin: 1rem 0 0;
    padding: 0.7rem 1rem;
    background: rgba(0,255,98,0.08);
    border: 1px solid rgba(0,255,98,0.25);
    border-radius: 12px;
    color: #aaffc7;
    font-size: 0.85rem;
    display: none;
}
.journal-newsletter__success.is-show { display: block; }

/* ═════════════════════════════════════════════════════════════════════════════
   SINGLE BLOG POST PAGE — used by blog_post_*.html files
   ═════════════════════════════════════════════════════════════════════════════ */

.post-page {
    background: var(--color-bg);
    color: var(--color-text);
}

/* ─── POST HERO — EDITORIAL MAGAZINE STYLE ────────────────────────────────── */
.post-hero {
    position: relative;
    padding: 9rem 0 0;
    isolation: isolate;
    overflow: hidden;
}

/* Subtle atmosphere behind text block */
.post-hero::before {
    content: '';
    position: absolute;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 380px;
    background:
        radial-gradient(ellipse 60% 80% at 30% 20%, rgba(255, 64, 141, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 60% 80% at 70% 80%, rgba(0, 200, 255, 0.08) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

/* Top strip — Back link + Meta */
.post-hero__strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 1rem;
}

.post-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.2s, transform 0.25s;
}
.post-hero__back:hover {
    color: #fff;
    transform: translateX(-3px);
}
.post-hero__back i { font-size: 0.7rem; }

.post-hero__strip-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    flex-wrap: wrap;
}

.post-hero__cat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.32rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #fff;
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}
.post-hero__cat::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ffffff;
}

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

/* Title block — centered editorial cover */
.post-hero__title-block {
    max-width: 920px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 1rem;
}

.post-hero__title {
    font-size: clamp(2.4rem, 7vw, 5.2rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0 0 1.4rem;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}
.post-hero__title em {
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    background: var(--gradient-brand);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    animation: gradientShift 8s ease-in-out infinite;
}

.post-hero__sub {
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    max-width: 56ch;
    margin: 0 auto 2rem;
}

.post-hero__author {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1rem 0.45rem 0.45rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    transition: border-color 0.3s, background 0.3s;
}
.post-hero__author:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
}
.post-hero__author-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    color: #0a0a0a;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: -0.02em;
}

/* Cover image — full-bleed, cinematic */
.post-hero__cover {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: clamp(320px, 58vh, 640px);
    overflow: hidden;
    isolation: isolate;
}
.post-hero__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05);
    animation: heroCoverIn 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes heroCoverIn {
    from { transform: scale(1.08); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.post-hero__cover::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    pointer-events: none;
}
.post-hero__cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 64, 141, 0.08), transparent 50%, rgba(0, 200, 255, 0.08));
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* ─── POST BODY ───────────────────────────────────────────────────────────── */
.post-body {
    padding: 5rem 0 4rem;
}

.post-body__inner {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
}

.post-body__inner > p { margin: 0 0 1.3rem; }
.post-body__inner > p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-weight: 800;
    float: left;
    margin: 0.15rem 0.7rem -0.1rem 0;
    line-height: 0.9;
    color: #ffffff;
    font-family: 'Georgia', serif;
}

.post-body__inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 3.5rem 0 1.2rem;
    color: #fff;
}

.post-body__inner h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin: 2.5rem 0 0.8rem;
    color: #fff;
}

.post-body__inner a {
    color: var(--color-blue);
    text-decoration: underline;
    text-decoration-color: rgba(0,200,255,0.35);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
.post-body__inner a:hover { text-decoration-color: var(--color-blue); }

.post-body__inner strong { color: #fff; font-weight: 700; }

.post-body__inner ul,
.post-body__inner ol {
    padding-left: 1.5rem;
    margin: 0 0 1.5rem;
}
.post-body__inner li { margin-bottom: 0.55rem; }

.post-body__inner blockquote {
    margin: 3rem 0;
    padding: 1.5rem 0 1.5rem 2rem;
    border-left: 2px solid rgba(255, 255, 255, 0.35);
    position: relative;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.5;
    color: #fff;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.post-body__inner blockquote::before {
    content: '\201C';
    position: absolute;
    top: -1.4rem;
    left: 1.3rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.12);
    line-height: 1;
}
.post-body__inner blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-style: normal;
    font-weight: 500;
}

.post-body__inner figure {
    margin: 3rem 0;
    text-align: center;
}
.post-body__inner figure img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}
.post-body__inner figcaption {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.8rem;
    font-style: italic;
}

/* Wide image breakout */
.post-body__inner figure.wide {
    max-width: calc(100% + 8rem);
    margin-left: -4rem;
    margin-right: -4rem;
}
@media (max-width: 900px) {
    .post-body__inner figure.wide {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Highlight box (pull quote or info box) */
.post-callout {
    margin: 2.5rem 0;
    padding: 1.5rem 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.post-callout__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #0a0a0a;
    display: grid;
    place-items: center;
    font-size: 0.92rem;
    flex-shrink: 0;
}
.post-callout p { margin: 0; font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.85); }
.post-callout strong { color: #fff; }

/* Divider — dezente weiße Linie statt Gradient */
.post-divider {
    margin: 3rem auto;
    height: 1px;
    width: 80px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
}

/* CTA block — clean, weiß als Akzent */
.post-cta {
    margin: 4rem 0 0;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    text-align: center;
}
.post-cta__title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
}
.post-cta__sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    margin: 0 0 1.5rem;
}

/* ─── RELATED ARTICLES — UP NEXT BENTO ───────────────────────────────────── */
.post-related {
    padding: 6rem 0 7rem;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}
.post-related::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.post-related__intro {
    text-align: center;
    margin-bottom: 3.5rem;
}
.post-related__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin: 0 0 0.9rem;
}
.post-related__kicker::before,
.post-related__kicker::after {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}
.post-related__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 0.7rem;
}
.post-related__title em {
    font-style: italic;
    font-family: 'Georgia', serif;
    font-weight: 400;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.post-related__sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Bento Grid — 1 großer Hero-Card + 2 kleine gestapelt */
.post-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 900px) {
    .post-related__grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 1.75rem;
    }
    .post-related__col {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* Hauptcard — riesiger "Up Next" Block */
.post-related-feature {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 4/3;
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    isolation: isolate;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (min-width: 900px) {
    .post-related-feature {
        aspect-ratio: auto;
        height: 100%;
        min-height: 460px;
    }
}
.post-related-feature__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}
.post-related-feature__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.3s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s;
    filter: saturate(1.05);
}
.post-related-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.15) 75%, transparent 100%);
    pointer-events: none;
}
.post-related-feature:hover {
    transform: translateY(-6px);
}
.post-related-feature:hover .post-related-feature__bg img {
    transform: scale(1.06);
    filter: saturate(1.18);
}

.post-related-feature__label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
}
.post-related-feature__label::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #00ff62;
    box-shadow: 0 0 8px #00ff62;
    animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}

.post-related-feature__content {
    padding: 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.post-related-feature__cat {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}
.post-related-feature__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0;
    color: #fff;
    transition: color 0.3s;
}
.post-related-feature:hover .post-related-feature__title {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.post-related-feature__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 50ch;
}
.post-related-feature__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.7rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}
.post-related-feature__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    align-self: flex-start;
    padding: 0.7rem 1.3rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.post-related-feature:hover .post-related-feature__cta {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
    transform: translateX(4px);
}

/* Kleine Cards rechts (gestapelt) */
.post-related-small {
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.1rem;
    padding: 1.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.4s, background 0.4s;
    overflow: hidden;
}
@media (max-width: 500px) {
    .post-related-small {
        grid-template-columns: 100px 1fr;
        gap: 0.9rem;
        padding: 0.85rem;
    }
}
.post-related-small:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.045);
}
.post-related-small__thumb {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-alt);
}
.post-related-small__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.post-related-small:hover .post-related-small__thumb img {
    transform: scale(1.08);
}

.post-related-small__body {
    min-width: 0;
}
.post-related-small__cat {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 700;
    margin-bottom: 0.45rem;
}
.post-related-small__title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0 0 0.55rem;
    color: #fff;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-related-small:hover .post-related-small__title {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.post-related-small__meta {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.post-related-small__meta i {
    font-size: 0.62rem;
    opacity: 0.5;
}

/* Footer-Link unter dem Grid */
.post-related__footer {
    margin-top: 2.5rem;
    text-align: center;
}
.post-related__all {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    background: transparent;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.post-related__all:hover {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
    transform: translateY(-2px);
}
.post-related__all i {
    transition: transform 0.3s;
}
.post-related__all:hover i { transform: translateX(4px); }

/* ─── Active nav state — kein Gradient-Strich, nur Farbe ──────────────────── */
.nav-link.is-active {
    color: #ffffff;
}

/* ═════════════════════════════════════════════════════════════════════════════
   POST-PAGE MAGAZINE COMPONENTS
   Wird in den einzelnen blog_post_*.html verwendet — für Layouts, die nicht
   alles untereinander stapeln. Stats, 2-Spalter, Step-Cards, Pullquote etc.
   ═════════════════════════════════════════════════════════════════════════════ */

/* Reading progress bar (top) */
.post-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
    background: transparent;
}
.post-progress__fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-brand);
    transition: width 0.05s linear;
}

/* Wider body container so 2-col & breakout layouts have room */
.post-body__wide {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── STATS GRID — große Zahlen mit Labels (3-4 spaltig) ─────────────────── */
.post-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 3rem 0;
}
@media (min-width: 700px) {
    .post-stats { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.post-stat {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1.5rem 1.3rem;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), border-color 0.4s, background 0.4s;
}
.post-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px;
    height: 2px;
    background: #ffffff;
    transition: width 0.5s cubic-bezier(0.2,0.7,0.2,1);
}
.post-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.045);
}
.post-stat:hover::before { width: 100%; }
.post-stat__num {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: #fff;
    margin: 0.4rem 0 0.5rem;
}
.post-stat__num em {
    font-style: normal;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.post-stat__label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    line-height: 1.4;
}
.post-stat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
    transition: background 0.4s, color 0.4s;
}
.post-stat:hover .post-stat__icon {
    background: #ffffff;
    color: #0a0a0a;
}

/* ── 2-SPALTEN-LAYOUT — Text + Bild oder Text + Card nebeneinander ──────── */
.post-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
}
@media (min-width: 800px) {
    .post-2col {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .post-2col--ratio-3-2 { grid-template-columns: 3fr 2fr; }
    .post-2col--ratio-2-3 { grid-template-columns: 2fr 3fr; }
}
.post-2col__media {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}
.post-2col__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.2,0.7,0.2,1);
}
.post-2col__media:hover img {
    transform: scale(1.04);
}
.post-2col__text h3 {
    margin-top: 0 !important;
    margin-bottom: 0.8rem;
}
.post-2col__text p { margin: 0 0 0.9rem; }
.post-2col__text p:last-child { margin-bottom: 0; }
.post-2col__kicker {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 700;
    margin-bottom: 0.7rem;
}

/* ── STEP CARDS — nummerierte Cards (für Workflows / How-to) ────────────── */
.post-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 3rem 0;
    counter-reset: step;
}
@media (min-width: 700px) {
    .post-steps { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (min-width: 1100px) {
    .post-steps--three { grid-template-columns: repeat(3, 1fr); }
}

.post-step {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 1.8rem 1.5rem 1.6rem;
    transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), border-color 0.4s, background 0.4s;
    counter-increment: step;
}
.post-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.045);
}
.post-step__num {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}
.post-step__num::before {
    content: counter(step, decimal-leading-zero);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 0.55rem;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.post-step__title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin: 0 0 0.55rem;
    color: #fff;
    transition: color 0.3s;
}
.post-step:hover .post-step__title {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.post-step__text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ── BIG PULL QUOTE — riesiges zentriertes Statement ───────────────────── */
.post-pullquote {
    margin: 4rem -1rem;
    padding: 3rem 2rem;
    position: relative;
    text-align: center;
    isolation: isolate;
}
.post-pullquote::before {
    content: '\201C';
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    font-size: 9rem;
    line-height: 1;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.4;
    z-index: -1;
}
.post-pullquote__text {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 auto 1rem;
    max-width: 30ch;
    font-family: 'Georgia', serif;
    font-style: italic;
}
.post-pullquote__author {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    font-style: normal;
}

/* ── IMAGE GRID — 2 oder 3 Bilder nebeneinander ────────────────────────── */
.post-image-grid {
    display: grid;
    gap: 0.8rem;
    margin: 3rem 0;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) {
    .post-image-grid--2 { grid-template-columns: 1fr 1fr; }
    .post-image-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
    .post-image-grid--asymmetric { grid-template-columns: 2fr 1fr; }
}
.post-image-grid figure {
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}
.post-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
    transition: transform 1s cubic-bezier(0.2,0.7,0.2,1);
}
.post-image-grid--asymmetric figure:first-child img {
    aspect-ratio: 4/3;
}
.post-image-grid figure:hover img {
    transform: scale(1.05);
}
.post-image-grid figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 1.5rem 1rem 0.85rem;
    font-size: 0.74rem !important;
    color: rgba(255,255,255,0.75) !important;
    margin: 0 !important;
    font-style: italic;
    text-align: left !important;
}

/* ── INFO CARD — kleine Akzent-Box ─────────────────────────────────────── */
.post-info-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem 1.5rem;
    margin: 2rem 0;
    position: relative;
}
.post-info-card__label {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.post-info-card__title {
    font-size: 1.05rem !important;
    font-weight: 700;
    margin: 0 0 0.5rem !important;
    color: #fff;
}
.post-info-card p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: rgba(255,255,255,0.72); }

/* ── SETTINGS / SPEC TABLE — für technische Listen (Astro, Synthesia) ──── */
.post-spec {
    margin: 2.5rem 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
}
.post-spec__row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    padding: 0.9rem 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
}
.post-spec__row:last-child { border-bottom: none; }
.post-spec__row:hover { background: rgba(255,255,255,0.02); }
.post-spec__key {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
}
.post-spec__val {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}
.post-spec__val code {
    background: rgba(255,255,255,0.06);
    padding: 0.15rem 0.45rem;
    border-radius: 5px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.85em;
}

/* ── FULL-BLEED IMAGE — bricht aus dem Container raus ──────────────────── */
.post-fullbleed {
    position: relative;
    margin: 4rem calc(50% - 50vw);
    width: 100vw;
    max-height: 70vh;
    overflow: hidden;
}
.post-fullbleed img {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: cover;
    display: block;
}
.post-fullbleed__caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(12px);
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ── CHECKLIST — Liste mit Häkchen-Icons ───────────────────────────────── */
.post-checklist {
    list-style: none !important;
    padding: 0 !important;
    margin: 2rem 0 !important;
    display: grid;
    gap: 0.6rem;
}
@media (min-width: 700px) {
    .post-checklist--2 { grid-template-columns: 1fr 1fr; gap: 0.7rem 1.4rem; }
}
.post-checklist li {
    position: relative;
    padding: 0.7rem 1rem 0.7rem 2.6rem !important;
    margin: 0 !important;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 11px;
    font-size: 0.92rem !important;
    color: rgba(255,255,255,0.85);
    line-height: 1.5 !important;
    transition: border-color 0.3s, background 0.3s;
}
.post-checklist li:hover {
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
}
.post-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    transition: background 0.3s, color 0.3s;
}
.post-checklist li:hover::before {
    background: var(--gradient-brand);
    color: #0a0a0a;
}

/* ── BLOCK SCROLL-REVEAL — JS adds .pre-reveal then .is-in-view ────────── */
/* Default: alles sichtbar (Fallback ohne JS). JS markiert Blöcke mit
   .pre-reveal beim Page-Load, dann .is-in-view beim Scroll-Hit. */
.post-body__inner > *.pre-reveal,
.post-body__wide > *.pre-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.2,0.7,0.2,1),
                transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
}
.post-body__inner > *.pre-reveal.is-in-view,
.post-body__wide > *.pre-reveal.is-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ── ENHANCED POST-HERO with animated entrance ─────────────────────────── */
.post-hero__title-wrap {
    display: inline-block;
}
.post-hero__title em {
    font-style: italic;
    font-weight: 400;
    background: var(--gradient-brand);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Georgia', serif;
    animation: gradientShift 7s ease-in-out infinite;
}

/* ─── POST-HERO STRIP: kein Umbruch, immer eine Zeile ───────────────────── */
.post-hero__strip {
    flex-wrap: nowrap;
}

/* Autor-Pill im Title-Block: Abstand nach oben */
.post-hero__title-block .post-hero__author {
    margin-top: 2rem;
}


/* ═══════════════════════════════════════════════════════════════════════════
   WEITER IM JOURNAL — überarbeitete Suggested-Posts-Sektion
   ═══════════════════════════════════════════════════════════════════════════ */

.post-related {
    padding: 5rem 0 7rem;
    background: var(--color-bg);
    border-top: none;
    position: relative;
}

/* Dünne Brand-Linie oben als visueller Trenner */
.post-related::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--gradient-brand);
    background-size: 200% 100%;
}

.post-related__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Sektion-Titel mit Kicker über dem Heading */
.post-related__head-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.post-related__kicker {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
}
.post-related__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.72) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.post-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .post-related__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 960px) {
    .post-related__grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

/* Karten in Related-Sektion: etwas kompakteres Image-Ratio */
.post-related__grid .journal-card__image {
    aspect-ratio: 16/9;
}

/* Hover-Glow leicht grüner/pinker Tint passend zum Brand */
.post-related__grid .journal-card:hover {
    box-shadow: 0 24px 60px -16px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.12);
}
