.journal-feed-section {
    padding: 0 0 var(--nv-section-space);
}

.journal-feed__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.66fr);
    gap: clamp(20px, 4vw, 44px);
    align-items: end;
    margin-bottom: clamp(26px, 4vw, 38px);
}

.journal-feed__heading-side {
    max-width: 26rem;
    justify-self: end;
}

.journal-feed__heading-side p {
    margin: 0;
    color: var(--nv-color-text-muted);
    font-size: 0.96rem;
    line-height: 1.8;
}

.journal-feed__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    color: var(--nv-color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.journal-feed__eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
}

.journal-feed__title {
    max-width: 12ch;
    margin: 0;
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4.2vw, 3.9rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: none;
    text-wrap: balance;
}

.journal-feed__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.journal-feed-card {
    overflow: hidden;
    border: 1px solid var(--nv-color-line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 245, 240, 0.98) 100%);
    box-shadow: var(--nv-shadow-soft);
}

.journal-feed-card--lead {
    grid-column: span 2;
}

.journal-feed-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--nv-color-surface);
}

.journal-feed-card__image {
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit: cover;
    object-position: center center;
}

.journal-feed-card--lead .journal-feed-card__image {
    aspect-ratio: 16 / 10;
}

.journal-feed-card__body {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.journal-feed-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 0;
    color: var(--nv-color-text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journal-feed-card__meta span + span::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 1px;
    margin: 0 10px 3px 0;
    background: currentColor;
    opacity: 0.56;
    vertical-align: middle;
}

.journal-feed-card__title {
    margin: 0;
    font-size: 1.28rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.journal-feed-card__title a {
    color: inherit;
    text-decoration: none;
}

.journal-feed-card--lead .journal-feed-card__title {
    max-width: 12ch;
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.journal-feed-card__excerpt {
    margin: 0;
    color: var(--nv-color-text-muted);
    font-size: 0.96rem;
    line-height: 1.76;
}

.journal-feed-card__actions {
    margin-top: 2px;
}

.journal-feed-card__cta {
    color: var(--nv-color-primary-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 991px) {
    .journal-feed__heading,
    .journal-feed__grid {
        grid-template-columns: 1fr;
    }

    .journal-feed__heading-side {
        justify-self: start;
    }

    .journal-feed-card--lead {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .journal-feed__title {
        max-width: 14ch;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 0.98;
    }

    .journal-feed-card {
        border-radius: 24px;
    }

    .journal-feed-card__body {
        padding: 20px;
    }

    .journal-feed-card__title {
        font-size: 1.2rem;
    }

    .journal-feed-card--lead .journal-feed-card__title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        line-height: 1;
    }
}
