.award-slider {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-direction: column;
}

.award-images {
    width: 100%;
    height: 272px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

/* Grey fade shadow */
.award-images::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 140px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 0.9) 80%, #f7f7f7 100%);
}

.image-track {
    transition: transform 0.8s ease-in-out;
}

.image-item {
    height: 272px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-texts {
    width: 100%;
    overflow: hidden;
    margin-top: -25px;
}

.text-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.text-item {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    color: #2A2A37;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: -0.5%;
    line-height: 150%;
}

.text-item.active {
    opacity: 1;
}

@media (max-width:1024px) {
    .award-images {
        height: 170px;
    }
    .image-item img {
        object-fit: contain;
        object-position: top;
    }
}

@media (max-width: 768px) {
    .award-slider {
        flex-direction: column;
    }

    .award-images,
    .award-texts {
        width: 100%;
    }
}