/* Awards Page Styles */
.awards_body {
    padding: 80px 0;
}

.awards_columns {
    margin-top: 60px;
}

.awards_column {
    margin-bottom: 60px;
}

.awards_column_header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.awards_column_header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.award_item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #f0f0f0;
}

.award_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.award_content {
    padding: 20px 0;
}

.award_content .title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    padding-bottom: 10px;
    position: relative;
}

.award_content .title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 30px;
    height: 2px;
    background: #000000;
}

.award_content .short_desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.award_image,
.award_slider {
    max-width: 100%;
    margin: 0 auto;
}

.award_image img,
.award_slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.award_slider .swiper-slide img {
    height: 400px;
    object-fit: cover;
}

.award_slider .swiper-container {
    border-radius: 4px;
    overflow: hidden;
}

.award_slider .swiper-button-next,
.award_slider .swiper-button-prev {
    display: none;
}


.award_slider .swiper-pagination-bullet {
    background: #222;
    opacity: 0.5;
}

.award_slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.button_group {
    margin-top: 20px;
}

.empty_message {
    padding: 60px 20px;
    text-align: center;
    color: #999;
    font-size: 16px;
}

/* Mobile Tabs */
.awards_mobile_tabs {
    display: none;
    margin-bottom: 40px;
}

.awards_mobile_tabs .nav-tabs {
    border-bottom: 2px solid #e0e0e0;
    justify-content: center;
}

.awards_mobile_tabs .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    border: none;
    padding: 15px 30px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.awards_mobile_tabs .nav-link.active {
    color: #222;
    border-bottom-color: #222;
    background: none;
}

.awards_mobile_tabs .nav-link:hover {
    color: #222;
    border-color: transparent;
}

/* Responsive */
@media (max-width: 991px) {
    .awards_body {
        padding: 60px 0;
    }
    
    .award_item {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
    
    .award_content .title {
        font-size: 22px;
    }
    
    .awards_columns {
        margin-top: 40px;
    }
    
    .awards_column {
        margin-bottom: 40px;
    }
    
    .award_image img,
    .award_slider img,
    .award_slider .swiper-slide img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .awards_body {
        padding: 40px 0;
    }
    
    .awards_columns {
        margin-top: 0;
    }
    
    /* Show tabs on mobile */
    .awards_mobile_tabs {
        display: block;
    }
    
    /* Hide desktop columns structure */
    .awards_desktop_columns {
        display: none;
    }
    
    .award_item {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .award_content {
        padding: 15px 0;
    }
    
    .award_content .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .award_content .short_desc {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .awards_column_header {
        margin-bottom: 30px;
    }
    
    .awards_column_header h2 {
        font-size: 22px;
    }
    
    .award_image img,
    .award_slider img,
    .award_slider .swiper-slide img {
        height: 300px;
    }
}