
.widget-heading {
    font-size: 18px !important;
    font-weight: bold;
}

.stake-img {
    border-radius: 20px;
}

.stake-title {
    line-height: 1.1;
}

@media (max-width: 991.98px) {
    .stake-title {
        font-size: 1.8rem;
    }

    .stake-img {
        max-height: 360px;
        object-fit: cover;
    }
}

.brand-logos img {
    height: 150px;
    width: auto; /* keeps aspect ratio */
    object-fit: contain;
}

.packages-section h2 {
    color: #121b46;
    line-height: 1.1;
}

.training-card {
    background: #f5f7fb; /* light, similar to your screenshot */
    border-radius: 20px;
}

.training-img {
    height: 200px; /* adjust to taste (e.g., 220px) */
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.training-card p {
    color: #1b2a57;
}

.training-card .btn-get-started {
    border-radius: 999px;
    padding: 8px 18px;
}

@media (max-width: 991.98px) {
    .training-img {
        height: 180px;
    }
}

.training-img {
    height: 220px; /* all images will have the same height */
    width: 100%;
    object-fit: cover; /* crops edges to fill the space without distortion */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


.results-section h2 {
    color: #121b46;
    line-height: 1.1;
}

/* Outer rounded pill */
.results-shell {
    background: #f4f6f9;
    border-radius: 32px;
    padding: 32px 24px;
    max-width: 980px;
}

/* Inner card */
.result-card {
    background: #fff;
    border-radius: 12px;
    margin: 0 auto;
    padding: 28px 28px 22px;
    max-width: 760px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}

.result-card blockquote {
    font-style: italic;
    color: #2a3359;
    margin: 0 0 16px 0;
}

.result-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #7c859f;
}

.result-card figcaption strong {
    color: #121b46;
}

/* Swiper sizing */
.results-swiper {
    padding: 8px 48px;
}

.swiper-button-prev, .swiper-button-next {
    color: #121b46;
}

.swiper-pagination-bullet-active {
    background: #121b46;
}

@media (max-width: 991.98px) {
    .results-shell {
        border-radius: 24px;
        padding: 24px 16px;
    }

    .result-card {
        max-width: 100%;
        padding: 22px 18px;
    }

    .results-swiper {
        padding: 8px 32px;
    }
}

.section-content {
    padding-top: 20px;
}

/* Hero sizing: no white gaps on mobile */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional: overlay for contrast */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
    z-index: 1;
}

/* Heights per breakpoint */
@media (max-width: 575.98px) {
    .page-hero {
        height: 200px;
    }

    .section {
        padding-top: 20px;
    }
}

@media (min-width: 576px) {
    .page-hero {
        height: 280px;
    }

}