/* =====================================================
   COMMON INNER PAGE BANNER
   + BREADCRUMB
===================================================== */

.page-banner {
    position: relative;

    min-height: 330px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 75px 20px;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 55%,
            rgba(105, 10, 32, 0.30),
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(212, 175, 55, 0.07),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #070707 0%,
            #18080e 50%,
            #0b0908 100%
        );
}


/* =====================================
   TOP GLOW
===================================== */

.page-banner::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -350px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.08),
            transparent 68%
        );

    pointer-events: none;
}


/* =====================================
   BOTTOM GOLD LINE
===================================== */

.page-banner::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.35),
            transparent
        );
}


/* =====================================
   CONTENT
===================================== */

.page-banner__content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 800px;

    margin: 0 auto;
}


/* =====================================
   LABEL
===================================== */

.page-banner__label {
    display: block;

    margin-bottom: 13px;

    color: #d4af37;

    font-family: "Poppins", sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;

    line-height: 1.5;

    text-transform: uppercase;
}


/* =====================================
   BREADCRUMB
===================================== */

.breadcrumb {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-bottom: 17px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.5;
}


.breadcrumb a {
    color: #aaa09d;

    text-decoration: none;

    transition: color 0.25s ease;
}


.breadcrumb a:hover {
    color: #d4af37;
}


.breadcrumb > span:not([aria-current="page"]) {
    color: rgba(212, 175, 55, 0.45);
}


.breadcrumb [aria-current="page"] {
    color: #d4af37;

    font-weight: 500;
}


/* =====================================
   PAGE TITLE
===================================== */

.page-banner__title {
    margin: 0;

    color: #f7f0e7;

    font-family: "Cinzel", serif;

    font-size: clamp(38px, 5vw, 56px);

    font-weight: 600;

    line-height: 1.2;
}


.page-banner__title span {
    color: #d4af37;

    font-style: italic;
}


/* =====================================
   DESCRIPTION
===================================== */

.page-banner__text {
    max-width: 650px;

    margin: 18px auto 0;

    color: #b7aeab;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================
   GOLD DETAIL LINE
===================================== */

.page-banner__line {
    width: 55px;
    height: 1px;

    margin: 25px auto 0;

    background: #d4af37;

    box-shadow:
        0 0 12px rgba(212, 175, 55, 0.35);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .page-banner {
        min-height: 310px;

        padding: 70px 20px;
    }

    .page-banner__title {
        font-size: 44px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .page-banner {
        min-height: 285px;

        padding: 60px 18px;
    }


    .page-banner__label {
        font-size: 9px;

        letter-spacing: 3px;

        margin-bottom: 11px;
    }


    .breadcrumb {
        gap: 7px;

        margin-bottom: 13px;

        font-size: 10px;
    }


    .page-banner__title {
        font-size: 34px;

        line-height: 1.28;
    }


    .page-banner__text {
        margin-top: 15px;

        font-size: 12.5px;

        line-height: 1.75;
    }


    .page-banner__line {
        width: 45px;

        margin-top: 21px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .page-banner {
        min-height: 270px;

        padding: 55px 15px;
    }


    .page-banner__title {
        font-size: 30px;
    }


    .page-banner__text {
        font-size: 12px;
    }

}