/* Breadcrumb Container */
.page-header-content .sub-title {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

/* Breadcrumb Links */
.page-header-content .sub-title a {
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

/* Home Link */
.page-header-content .sub-title a.home {
    color: #6c757d;
    font-weight: 500;
}

.page-header-content .sub-title a.home:hover {
    color: #495A6A;
    text-decoration: none;
}

/* Inner Page Links */
.page-header-content .sub-title a.inner-page {
    color: #495A6A;
    font-weight: 500;
    position: relative;
}

.page-header-content .sub-title a.inner-page:hover {
    color: #3a4756;
    text-decoration: none;
}

/* Separator Icon */
.page-header-content .sub-title .icon {
    color: #adb5bd;
    font-size: 12px;
    padding: 0 4px;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
}

/* Last item (current page) - no link */
.page-header-content .sub-title a.inner-page:last-of-type {
    color: #495A6A;
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .page-header-content .sub-title {
        font-size: 12px;
        margin-top: 10px;
        gap: 4px;
    }

    .page-header-content .sub-title .icon {
        font-size: 11px;
        padding: 0 3px;
    }

    .page-header-content .sub-title a {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .page-header-content .sub-title {
        font-size: 11px;
        margin-top: 8px;
        gap: 3px;
        line-height: 1.5;
    }

    .page-header-content .sub-title .icon {
        font-size: 10px;
        padding: 0 2px;
    }

    .page-header-content .sub-title a {
        font-size: 11px;
    }
}

/* Better spacing for page header */
.page-header {
    padding: 80px 0 60px !important;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px !important;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 50px 0 30px !important;
    }
}

/* Title spacing */
.page-header-content .title {
    margin-bottom: 10px !important;
}

@media (max-width: 768px) {
    .page-header-content .title {
        font-size: 28px !important;
        margin-bottom: 8px !important;
    }
}

@media (max-width: 576px) {
    .page-header-content .title {
        font-size: 24px !important;
        margin-bottom: 6px !important;
    }
}

/* Remove any background color conflicts */
.page-header-content .sub-title a.inner-page {
    background: none !important;
    border: none !important;
}

/* Better visual hierarchy */
.page-header-content .sub-title {
    opacity: 1;
}

.page-header-content .sub-title a:hover {
    opacity: 1;
}

