body.home .fez-feature {
    padding: 84px 0 96px;
    background: var(--bg);
}

body.home .fez-feature .fez-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 56px;
    padding: 42px 42px;
    position: relative;
    overflow: hidden;
}

body.home .fez-feature .fez-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 420px at 30% 10%, rgba(246, 199, 76, .12), transparent 55%),
        radial-gradient(800px 520px at 85% 65%, rgba(90, 0, 17, .06), transparent 52%);
    z-index: 0;
}

body.home .fez-feature .fez-content,
body.home .fez-feature .fez-cover {
    position: relative;
    z-index: 2;
}

body.home .fez-feature .fez-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .20em;
    text-transform: uppercase;
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(120% 180% at 20% 10%, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, #6a0015 0%, #4a000f 55%, #36000b 100%);
    color: #f7d36a;
    border: 1px solid rgba(246, 199, 76, .42);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .14),
        inset 0 -1px 0 rgba(0, 0, 0, .18);
    margin-bottom: 12px;
}

body.home .fez-feature .fez-kicker::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 42%);
    opacity: .55;
    pointer-events: none;
    z-index: -1;
}

body.home .fez-feature .fez-title {
    margin: 0 0 12px;
    color: var(--maroon);
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.025em;
}

body.home .fez-feature .fez-sub {
    margin: 0 0 20px;
    max-width: 62ch;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

body.home .fez-feature .fez-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* =========================================================
   Cover card (front page)
========================================================= */

body.home .fez-feature .fez-cover {
    display: flex;
    justify-content: center;
}

body.home .fez-feature .fez-cover-card {
    position: relative;
    display: grid;
    place-items: center;
    width: min(380px, 100%);
    padding: 16px;
    background: linear-gradient(180deg, var(--theme-card-strong), var(--theme-card));
    border: 1px solid var(--theme-border);
    box-shadow: var(--theme-shadow-lg);
    border-radius: 28px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

body.home .fez-feature .fez-cover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 45px 100px rgba(15, 23, 42, .18);
}

body.home .fez-feature .fez-cover-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

body.home .fez-feature .fez-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #3b0010;
    background: var(--yellow);
    border: 1px solid rgba(120, 70, 0, .2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
    z-index: 5;
}

@media (max-width: 980px) {
    body.home .fez-feature .fez-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 34px;
    }

    body.home .fez-feature .fez-actions {
        justify-content: center;
    }
}
