.spt-hero-banner {
    position: relative;
    width: 100%;
    min-height: 850px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #212529;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.spt-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(260deg, rgba(30, 33, 21, 0.00) -3.59%, rgba(15, 54, 96, 0.55) 68.45%);
    pointer-events: none;
}

.spt-hero-banner__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

/* Breadcrumb (rendered by Rank Math SEO via [rank_math_breadcrumb]) */
.spt-hero-banner .rank-math-breadcrumb {
    margin: 0;
}

.spt-hero-banner .rank-math-breadcrumb p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 4px;
    margin: 0;
}

.spt-hero-banner .rank-math-breadcrumb a,
.spt-hero-banner .rank-math-breadcrumb .last {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #E9ECEF;
    text-decoration: none;
    white-space: nowrap;
}

.spt-hero-banner .rank-math-breadcrumb a:hover {
    text-decoration: underline;
}

.spt-hero-banner .rank-math-breadcrumb .separator {
    color: #E9ECEF;
    font-size: 16px;
    white-space: pre;
}

/* First item (Home) is brighter and gets a home icon, per Figma */
.spt-hero-banner .rank-math-breadcrumb p > a:first-child {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #F8F9FA;
}

.spt-hero-banner .rank-math-breadcrumb p > a:first-child::before {
    content: '';
    width: 14px;
    height: 14px;
    flex: none;
    background-image: url(../images/hero-banner-breadcrumb-home.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* First separator (right after Home) stays brighter too */
.spt-hero-banner .rank-math-breadcrumb p > a:first-child + .separator {
    color: #F8F9FA;
}

/* Eyebrow */
.spt-hero-banner__eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #F8F9FA;
    margin: 0;
}

/* Title */
.spt-hero-banner__title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 80px;
    line-height: 1.2;
    text-transform: capitalize;
    max-width: 648px;
    margin: 0;
    background-image: linear-gradient(76.28deg, #F8F9FA 1.04%, #E6B859 102.66%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Description */
.spt-hero-banner__desc {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
    color: #F8F9FA;
    max-width: 648px;
    margin: 0;
}

/* Button */
.spt-hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #006644;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    padding: 13px 25px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: opacity .2s ease;
}

.spt-hero-banner__btn:hover,
.spt-hero-banner__btn:focus {
    opacity: .85;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .spt-hero-banner {
        min-height: 640px;
    }

    .spt-hero-banner__title {
        font-size: 56px;
    }

    .spt-hero-banner__title,
    .spt-hero-banner__desc {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .spt-hero-banner {
        min-height: 520px;
    }

    .spt-hero-banner__container {
        padding: 40px 16px;
        gap: 16px;
    }

    .spt-hero-banner__title {
        font-size: 36px;
    }

    .spt-hero-banner__eyebrow {
        font-size: 16px;
    }

    .spt-hero-banner__desc {
        font-size: 16px;
    }

    .spt-hero-banner__btn {
        padding: 11px 20px;
        font-size: 16px;
    }
}
