/* ==========================================================================
   Featured News — a white card on a light-gray section highlighting one post.
   ========================================================================== */

.section.featurednews {
    padding-top: 24px;
    padding-bottom: 24px;
    background: var(--color-background);
}

/* Gray panel wrapping the white content card */
.fnews-panel {
    background: var(--color-secondary);
    border-radius: var(--radius-sm);
    padding: clamp(20px, 3vw, 32px);
}

.fnews-card {
    display: flex;
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
    padding: clamp(24px, 4vw, 40px);
    background: var(--color-background);
    border-radius: var(--radius-sm);
}
.featurednews--image-right .fnews-card { flex-direction: row-reverse; }

/* ---- Media -------------------------------------------------------------- */
.fnews-media {
    flex: 0 0 47%;
    position: relative;
    aspect-ratio: 555 / 299;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-card-navy);
    display: block;
}
.fnews-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--ease-slow);
}
.fnews-media:hover img { transform: scale(1.04); }

/* ---- Content ------------------------------------------------------------ */
.fnews-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    min-width: 0;
}
.fnews-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.fnews-eyebrow {
    font-family: var(--font-heading);
    font-size: var(--text-label-xs);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-foreground);
}

.fnews-title {
    margin: 0;
    color: var(--color-foreground);
}
.fnews-title a {
    color: inherit;
    text-decoration: none;
}
.fnews-title a:hover { text-decoration: underline; }

.fnews-excerpt {
    margin: 0;
    color: var(--color-secondary-foreground);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .fnews-card,
    .featurednews--image-right .fnews-card { flex-direction: column; align-items: stretch; }
    .fnews-media { flex: 0 0 auto; width: 100%; }
}
