/**
 * Page Hero Block Styles
 */

.eicom-page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    overflow: hidden;
}

/* Gradient Overlay */
.eicom-page-hero .page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 107, 140, 0.75) 0%, rgba(0, 107, 140, 0.55) 100%);
    z-index: 1;
}

/* Content */
.eicom-page-hero .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #ffffff;
}

/* Breadcrumb */
.eicom-page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.eicom-page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.eicom-page-hero .breadcrumb a:hover {
    color: #ffffff;
}

.eicom-page-hero .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.eicom-page-hero .breadcrumb-current {
    font-weight: 600;
}

/* Title */
.eicom-page-hero .page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Subtitle */
.eicom-page-hero .page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
}

/* Action */
.eicom-page-hero .page-hero-action {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .eicom-page-hero {
        min-height: 350px;
        padding: 60px 0;
    }

    .eicom-page-hero .page-hero-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .eicom-page-hero .page-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .eicom-page-hero .breadcrumb {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

@media (max-width: 640px) {
    .eicom-page-hero {
        min-height: 300px;
        padding: 50px 0;
    }

    .eicom-page-hero .page-hero-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .eicom-page-hero .page-hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 16px;
    }

    .eicom-page-hero .breadcrumb {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .eicom-page-hero .page-hero-action .btn {
        width: 100%;
        justify-content: center;
    }
}
