/**
 * Blog Hero Styles
 * Estilos para header da página de blog
 *
 * @package SeedDigital
 * @since 1.0.0
 */

/* ============================================
   Blog Hero Container
   ============================================ */
.blog-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 480px;
    height: 480px;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Container interno do hero (centraliza o conteúdo) */
.blog-hero__container {
    position: relative;
    z-index: 1;
    max-width: 1266px;
    margin: 0 auto;
    padding: 48px 64px 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 100%;
}

/* Overlay com gradiente - Mesmo do inner-hero */
.blog-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url('../../assets/images/hero-overlay.png') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

/* Breadcrumb - Mesmo estilo do inner-hero */
.blog-hero__breadcrumb {
    color: #ffffff;
    font-size: 1rem;
    margin-top: 25px;
    margin-bottom: 1rem;
    max-width: 1384px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Blog Hero Content - Mesmo estilo do inner-hero
   ============================================ */
.blog-hero__content {
    max-width: 440px;
    width: 100%;
    text-align: left;
    margin-bottom: 128px;
}

.blog-hero__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.blog-hero__subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}

/* ============================================
   Responsive - Mesmo do inner-hero
   ============================================ */
@media (max-width: 1024px) {
    .blog-hero__container {
        padding: 40px 48px 70px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 400px;
        height: 400px;
    }

    .blog-hero__container {
        padding: 32px 24px 60px;
    }

    .blog-hero__title {
        font-size: 32px;
    }

    .blog-hero__subtitle {
        font-size: 14px;
    }

    .blog-hero__content {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        min-height: 350px;
        height: 350px;
    }

    .blog-hero__container {
        padding: 24px 20px 40px;
    }

    .blog-hero__title {
        font-size: 24px;
    }

    .blog-hero__subtitle {
        font-size: 13px;
    }

    .blog-hero__content {
        margin-bottom: 40px;
    }
}

