.fl-module-class-awards-carousel-module {
    overflow: hidden;
    width: 90%;
    margin: auto;
}

.awards-carousel {
    position: relative;
}

.swiper-slide {
    text-align: center;
    overflow: visible;
    transition: opacity 0.3s ease-in-out;
}

.swiper-slide-active {
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.5));
}

.award-item {
    padding: 20px 30px;
    background: #ffffff;
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0% 100%, 0% 50px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.award-image {
    width: 100%;
    max-width: 300px !important;
    height: auto;
    margin: 30px;
    border-radius: 4px;
}

.award-title {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 700 !important;
    margin-bottom: 10px;
}

.award-years {
    font-size: clamp(0.875rem, 1.25vw, 1.25rem);
}

/* Swiper Navigation */
.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
    top: 55% !important;
}

@media screen and (max-width: 1024px) {

    .swiper-button-next {
        right: -6px !important;
    }

    .swiper-button-prev {
        left: -6px !important;
    }
}

@media screen and (max-width: 768px) {
    .award-item {
        padding: 10px 20px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 20px !important;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 20px !important;
    }

    .award-image {
        max-width: 200px !important;
    }
}