/* =======================
   HERO SECTION
======================= */
.awards-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    padding: clamp(60px, 8vw, 120px) 7vw;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.awards-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 6vw, 60px);
    align-items: center;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
    padding: clamp(20px,4vw,40px);
}

.awards-hero__text {
    color: #111;
}

.awards-hero__title {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.05;
    margin-bottom: 12px;
}

.awards-hero__subtitle {
    font-size: 16px;
    color: #4a4a4a;
}

.awards-hero__image img {
    max-width: 720px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =======================
   CAROUSEL
======================= */
.awards-carousel {
    width: 100%;
    height: clamp(360px, 78vh, 920px);
    position: relative;
    overflow: hidden;
    background: #fff;
    z-index: 2;
}

.awards-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.awards-carousel__slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 250ms ease;
    height: 100%;
}
.awards-carousel__slide.is-active{
    opacity: 1;
    z-index: 1;
}
.awards-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}
.awards-carousel__caption{
    position: absolute;
    left: 50%;
    top: 18%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 16px;
    font-size: clamp(20px, 4vw, 34px);
    font-weight: 800;
    text-align: center;
    text-shadow: 0 8px 24px rgba(0,0,0,0.45);
    max-width: min(900px, 92vw);
}

@keyframes scrollAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =======================
   AWARDS GRID
======================= */
.container {
    width: 90%;
    margin: auto;
    padding: clamp(20px, 3vw, 40px) 0;
}

.award-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: clamp(15px, 2vw, 25px);
}

.award-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.filter-btn {
    background: none;
    border: none;
    font-size: clamp(14px, 2vw, 20px);
    margin: 0;
    cursor: pointer;
    font-weight: 700;
    padding-bottom: 8px;
    position: relative;
    transition: 0.3s ease-in-out;
}

.filter-btn.active {
    color: #e63946;
}

.filter-btn.active::after {
    content: "";
    width: 25px;
    height: 3px;
    background: #e63946;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 2vw, 38px);
    justify-items: center;
    padding: 0 clamp(10px, 2vw, 50px);
}

.award-item {
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.award-item.hide {
    opacity: 0;
    transform: scale(0.95);
    display: none;
}

.awards-list{
    padding: clamp(52px, 7vw, 90px) 0;
}

/* =======================
   MEDIA QUERIES
======================= */

/* TABLET */
@media(max-width: 992px) {
    .awards-hero { padding: 80px 24px; }
    .awards-hero__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .awards-hero__title { font-size: clamp(28px, 6vw, 46px); }
    .awards-carousel { height: clamp(300px, 64vh, 640px); }
    .awards-carousel__caption{ top: 20%; }

    .award-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* MOBILE *//* MOBILE */
@media(max-width: 480px) {
    .awards-hero { padding: 70px 16px 50px; min-height: auto; }
    .awards-hero__title { font-size: clamp(22px, 7vw, 32px); text-align: center; }
    .awards-hero__inner { grid-template-columns: 1fr; }

    .awards-carousel { height: clamp(240px, 56vh, 520px); }
    .awards-carousel__caption{
        font-size: clamp(16px, 4vw, 22px);
        top: 20%;
        padding: 8px 12px;
    }

    .award-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-left: 0;
        padding: 0 10px;
    }

    .filter-btn {
        font-size: clamp(12px, 3vw, 18px);
    }

    .award-item {
        font-size: clamp(12px, 3vw, 18px);
    }
}

/* SMALL MOBILE */
@media(max-width: 375px) {
    .awards-hero { padding: 60px 10px 40px; }
    .awards-carousel { height: clamp(220px, 54vh, 460px); }
    .awards-carousel__caption{ top: 22%; }

    .award-grid {
        gap: 15px;
    }

    .filter-btn {
        font-size: 14px;
    }

    .award-item {
        font-size: 14px;
    }
}
