:root {
    --gap: 16px;
    --radius: 10px;
    --bg: #0b0b0b;
    --accent: #d9534f;
}

.fw-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}
.fw-heading-row h2 {
    color: #fff;
    font-size: 3rem;
    margin: 0;
    line-height: 1;
}
.fw-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}
.fw-link:hover { text-decoration: underline; }

/* ===========================================================
   REJILLA ÚNICA: 1 tarjeta grande + 4 pequeñas, sin huecos.
   Todo el bloque se define aquí, con áreas nombradas, así que
   no depende de aspect-ratio individuales que puedan desajustar.
=========================================================== */
.fw-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        "big s1 s2"
        "big s3 s4";
    gap: var(--gap);
    height: 640px; /* ajusta esta altura total del bloque a tu gusto */
}

@media (max-width: 900px) {
    .fw-grid { height: 520px; }
}
@media (max-width: 720px) {
    .fw-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 260px repeat(4, 160px);
        grid-template-areas:
            "big"
            "s1"
            "s2"
            "s3"
            "s4";
        height: auto;
    }
}

.fw-card--big { grid-area: big; }
.fw-card--s1  { grid-area: s1; }
.fw-card--s2  { grid-area: s2; }
.fw-card--s3  { grid-area: s3; }
.fw-card--s4  { grid-area: s4; }

.fw-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #1a1a1a;
    height: 100%;
    width: 100%;
}

.fw-card video,
.fw-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fw-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 2;
}
.fw-card:hover::after { opacity: 1; }

.fw-award {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 30px;
}

.fw-caption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    right: 16px;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s ease, transform .3s ease;
}
.fw-card:hover .fw-caption {
    opacity: 1;
    transform: translateY(0);
}
.fw-caption strong {
    display: block;
    font-size: 1.1rem;
}
