/* Awards Gallery Styles */
.awards-gallery {
    padding-top: 20px;
    /* margin-bottom: 20px; */
    margin-top: 20px;
}

.award-item {
    text-align: center;
    margin-bottom: 20px;
}

.award-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-image img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
}

.award-info {
    text-align: center;
}

.award-title {
    font-size: 22px;
}

.award-year {
    font-size: 16px;
    color: var(--second-color-dark);
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(114, 228, 232, 0.1);
    border-radius: 20px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .award-image {
        height: 160px;
    }
    
    .award-image img {
        max-height: 160px;
    }
}

@media (max-width: 767px) {
    .award-item {
        margin-bottom: 0px;
    }
    
    .award-year {
        font-size: 14px;
        padding: 4px 12px;
    }
    
    .award-image {
        height: 140px;
    }
    
    .award-image img {
        max-height: 120px;
    }
}

@media (max-width: 575px) {
    .award-image {
        height: 120px;
    }
    
    .award-image img {
        max-height: 100px;
    }
    
    .award-year {
        font-size: 12px;
        padding: 3px 10px;
    }
}
