/* Container for the award cards */
.awards-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
    margin-top: 40px;
}

/* Individual award card */
.award-card {
    width: 32%; /* 3 cards per row */
    background-color: #fff;
    border-radius: 24px 0px 0px 0px;
    position: relative;
    opacity: 1;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px; /* Space between rows */
    border-radius: 20px !important;
}

/* Award card image */
.award-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 200px; /* Set max width to reduce image size */
    margin: 0 auto 15px; /* Center the image with a margin at the bottom */
    border-radius: 20px 20px 0 0 !important;
}

/* Award card content */
.award-card-content {
    font-family: Inter, sans-serif;
    font-size: 16px; /* Reduced title size */
    font-weight: 700;
    line-height: 24px; /* Adjusted line height */
    letter-spacing: -0.02em;
    text-align: center; /* Center align the text */
    padding: 10px;
    color: #333; /* Dark color for better readability */
}
.award-card-title {font-size:16px!important;}
/* Button for "See All Awards" */
.awards-see-all-button {
    text-align: center;
    margin-top: 40px;
}

.see-all-awards-btn {
    background-color: black;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
}

/* Year Filter */
.awards-filter {
    margin: 20px;
    text-align: right;
}

#award-year-filter {
    padding: 8px;
    font-size: 16px;
    width: 115px;
   
}

/* Responsive Design */
@media (max-width: 768px) {
    .awards-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .award-card {
        width: 80%; /* 2 cards per row on smaller screens */
    }
}

@media (max-width: 480px) {
    .award-card {
        width: 100%; /* 1 card per row on very small screens */
    }
}

.award-card-title {
    font-size: 15px;
    text-align: left;
}