/**
 * Single Hero Styles
 * Estilos para header de posts individuais
 * Usa os mesmos estilos do inner-hero
 *
 * @package SeedDigital
 * @since 1.0.0
 */

/* ============================================
   Single Hero Container
   ============================================ */
.inner-hero.single-hero,
.single-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) */
.single-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 */
.inner-hero__overlay.single-hero__overlay,
.single-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 */
.single-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

