/* Awards Page Styles */
.card-img-container {
    height: 200px;
    overflow: hidden;
}

.custom-card-image {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

/* Extra Small (xs) - <576px (For phones in portrait view) */
@media (max-width: 575px) {
    .card-img-container {
        height: 200px;
    }
}

/* Small (sm) - ≥576px to <768px (For small tablets and large phones) */
@media (min-width: 576px) and (max-width: 767px) {
    .card-img-container {
        height: 180px;
    }
}

/* Medium (md) - ≥768px to <992px (For tablets in landscape view) */
@media (min-width: 768px) and (max-width: 991px) {
    .card-img-container {
        height: 150px;
    }
}

/* Large (lg) - ≥992px to <1200px (For laptops and desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
    .card-img-container {
        height: 180px;
    }
}

/* Extra Large (xl) - ≥1200px (For large desktops and high-res screens) */
@media (min-width: 1200px) {
    .card-img-container {
        height: 200px;
    }
}