/* =========================
     AWARDS (scoped)
     ========================= */
.awards-sec {
    padding: 44px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(100% 120% at 50% 0%, rgba(255, 255, 255, .05) 0%, rgba(0, 0, 0, 0) 55%),
        linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .85));
}

.awards-sec .awards-sec__cta {
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
}

.awards-sec .awards-sec__btn {
    background: var(--red);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .08);
    font-weight: 900;
    letter-spacing: .6px;
    padding: 14px 26px;
    min-width: min(720px, 100%);
    height: 58px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.awards-sec .awards-sec__btn:hover {
    background: #b80500;
}

.awards-sec .awards-sec__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

/* Card clickeable opcional (si luego lo haces link) */
.awards-sec .awards-sec__card {
    background: rgba(0, 0, 0, .35);
    border: 1px solid var(--line);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    overflow: hidden;
}

/* Imagen “badge” */
.awards-sec .awards-sec__img {
    width: 100%;
    height: 92px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .35));
    opacity: .98;
}

/* Responsive */
@media(max-width: 980px) {
    .awards-sec .awards-sec__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-sec .awards-sec__btn {
        min-width: 100%;
    }
}

@media(max-width: 520px) {
    .awards-sec {
        padding: 34px 0;
    }

    .awards-sec .awards-sec__grid {
        grid-template-columns: 1fr;
    }

    .awards-sec .awards-sec__card {
        min-height: 110px;
    }

    .awards-sec .awards-sec__img {
        height: 86px;
    }
}