/**
 * Page Hero Block Styles
 */

.page-hero {
    position: relative;
    width: 100%;
    min-height: 299px;
    background-color: #2B2B2B;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}

.page-hero__title {
    font-family: var(--second-family), sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.1;
}

/* Breadcrumbs */
.page-hero__breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.page-hero__breadcrumb {
    font-family: var(--font-family), sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-hero__breadcrumb:hover {
    opacity: 0.8;
}

.page-hero__breadcrumb--current {
    opacity: 0.9;
}

.page-hero__breadcrumb-separator {
    font-family: var(--font-family), sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0 5px;
}

/* Preview in Admin */
.page-hero-preview {
    padding: 40px;
    background: #f5f5f5;
    text-align: center;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 1600px) {
    .page-hero__container {
        padding: 60px 150px;
    }
}

@media (max-width: 1200px) {
    .page-hero {
        min-height: 250px;
    }

    .page-hero__container {
        padding: 50px 80px;
    }

    .page-hero__title {
        font-size: 40px;
    }

    .page-hero__breadcrumb,
    .page-hero__breadcrumb-separator {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 200px;
    }

    .page-hero__container {
        padding: 40px 40px;
        gap: 12px;
    }

    .page-hero__title {
        font-size: 32px;
    }

    .page-hero__breadcrumb,
    .page-hero__breadcrumb-separator {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 180px;
    }

    .page-hero__container {
        padding: 30px 20px;
        gap: 10px;
    }

    .page-hero__title {
        font-size: 28px;
    }

    .page-hero__breadcrumb,
    .page-hero__breadcrumb-separator {
        font-size: 14px;
    }
}
