.page-top-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    background-color: var(--color-rich-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-top-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.75) 100%);
}

.page-top-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-top-banner-title {
    color: var(--color-white);
    font-weight: 700;
    font-size: 42px;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.page-breadcrumb ol {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 14px;
}

.page-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    color: var(--color-amber);
}

.page-breadcrumb a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.85;
}

.page-breadcrumb a:hover {
    color: var(--color-amber);
}

.page-breadcrumb .current {
    color: var(--color-amber);
}