/* What's New — balanced 50/50 layout */
.whats-new .section-title {
    font-weight: 700;
    color: #056839;
}

.whats-new .news-carousel .carousel-item .news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
}

.whats-new .news-carousel .news-image {
    max-height: 220px;
    overflow: hidden;
}

.whats-new .news-carousel .news-image img {
    object-fit: cover;
    height: 220px;
    width: 100%;
}

.whats-new .quote-card {
    display: flex;
    flex-direction: row;
    min-height: 280px;
    background: #fff;
}

.whats-new .quote-card .quote-image {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 280px;
}

.whats-new .quote-card .quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.whats-new .quote-card .quote-content {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whats-new .quote-card.quote-card-text-only .quote-content {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 991px) {
    .whats-new .quote-card {
        flex-direction: column;
    }

    .whats-new .quote-card .quote-image,
    .whats-new .quote-card .quote-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .whats-new .quote-card .quote-image {
        min-height: 200px;
    }

    .whats-new .quote-card .quote-image img {
        min-height: 200px;
    }
}
