/* Page Header Widget Styles */
.ababil-page-header {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 150px;
    /* Ensure filters work properly */
    overflow: hidden;
}

.ababil-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-position: inherit;
    background-size: inherit;
    background-repeat: inherit;
    background-attachment: inherit;
    filter: inherit;
    z-index: 0;
}

.ababil-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: inherit;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ababil-page-header-content {
    display: flex;
    flex-direction: column;
    justify-content: var(--content-vertical-alignment, center);
    width: 100%;
    position: relative;
    z-index: 2;
}

.ababil-page-header-content-inner {
    margin: 0 auto;
}

.ababil-page-header-title {
    margin: 0;
    position: relative;
    z-index: 2;
}

.ababil-page-header-description {
    position: relative;
    z-index: 2;
}

.ababil-page-header-breadcrumb {
    position: relative;
    z-index: 2;
}

.ababil-page-header-breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: inherit;
    gap: 4px;
}

.ababil-breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.ababil-breadcrumb-item a {
    text-decoration: none;
}

.ababil-breadcrumb-item a:hover {
    text-decoration: underline;
}

.ababil-breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
}

.ababil-page-header-divider {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    margin: 15px 0;
}

.ababil-page-header-divider > div {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ababil-page-header-divider-line {
    background-color: #000;
    height: 2px;
    width: 100%;
    display: block;
}

.ababil-page-header-divider-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ababil-page-header-divider-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ababil-page-header-divider-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.ababil-page-header-divider-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .ababil-page-header-content {
        padding: 20px;
    }
    
    .ababil-page-header-breadcrumb-inner {
        justify-content: center !important;
    }
    
    .ababil-breadcrumb-separator {
        margin: 0 4px;
    }
    
    .ababil-page-header-divider {
        margin: 10px 0;
    }
}