/* Content Section Cards & Fade-in Animation */
.content-section {
    position: relative;
    z-index: 2;
}
.content-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.content-fade.visible {
    opacity: 1;
    transform: none;
}
.card-img-top {
    object-fit: cover;
    height: 220px;
}
@media (max-width: 767.98px) {
    .card-img-top {
        height: 140px;
    }
}
