.sv-page-banner {
    align-items: center;
    background-image: var(--sv-page-banner-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 300px;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    width: 100%;
}

.sv-page-banner__overlay {
    background: rgba(0, 0, 0, 0.48);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.sv-page-banner__content {
    color: #fff;
    max-width: 920px;
    padding: 0 20px;
    position: relative;
    text-align: center;
    z-index: 2;
}

.sv-page-banner__content h1 {
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.sv-page-banner__content p {
    color: #fff;
    font-size: clamp(15px, 1.65vw, 21px);
    font-weight: 500;
    line-height: 1.55;
    margin: 18px auto 0;
    max-width: 820px;
}

.sv-page-banner__breadcrumb-wrap {
    bottom: 0;
    left: clamp(16px, 4vw, 48px);
    position: absolute;
    transform: translateY(50%);
    z-index: 3;
}

.sv-page-banner__breadcrumb {
    align-items: center;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    max-width: calc(100vw - 32px);
    padding: 13px 20px;
}

.sv-page-banner__breadcrumb li {
    align-items: center;
    color: #263238;
    display: flex;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.sv-page-banner__breadcrumb li + li::before {
    color: #7a8791;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 16px;
}

.sv-page-banner__breadcrumb a,
.sv-page-banner__breadcrumb span {
    align-items: center;
    color: inherit;
    display: inline-flex;
    gap: 8px;
    text-decoration: none;
}

.sv-page-banner__breadcrumb a:hover {
    color: #119233;
}

.sv-page-banner__breadcrumb .is-active {
    color: #119233;
}

@media (max-width: 991px) {
    .sv-page-banner {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .sv-page-banner {
        height: 220px;
        margin-bottom: 22px;
    }

    .sv-page-banner__breadcrumb-wrap {
        left: 16px;
        right: 16px;
    }

    .sv-page-banner__breadcrumb {
        border-radius: 22px;
        padding: 12px 16px;
    }

    .sv-page-banner__breadcrumb li {
        font-size: 13px;
    }

    .sv-page-banner__breadcrumb li + li::before {
        margin: 0 10px;
    }
}
