/**
 * Page Banner / Breadcrumb Styles
 *
 * Custom styling for the page banner section on interior pages.
 */

/* Main banner container */
.breadcrumb.page-banner {
    height: 220px;
    min-height: 220px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Content wrapper */
.breadcrumb.page-banner .container {
    position: relative;
    z-index: 2;
}

.breadcrumb.page-banner .breadcrumb__content {
    text-align: left;
}

/* Page title - h1 styling */
.breadcrumb.page-banner .breadcrumb__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Logo on right side */
.page-banner__logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 120%;
    z-index: 1;
    pointer-events: none;
}

.page-banner__logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.1;
}

/* Hide breadcrumb trail if it exists */
.breadcrumb.page-banner .breadcrumb-container {
    display: none;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .breadcrumb.page-banner {
        height: 180px;
        min-height: 180px;
    }

    .breadcrumb.page-banner .breadcrumb__title {
        font-size: 32px;
    }

    .page-banner__logo {
        height: 130%;
        right: -20px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .breadcrumb.page-banner {
        height: 120px;
        min-height: 120px;
    }

    .breadcrumb.page-banner .breadcrumb__title {
        font-size: 26px;
    }

    .page-banner__logo {
        height: 130%;
        right: -40px;
        opacity: 0.5;
    }
}
