/*
 * [B] Elementor Blog Hero - Base Styles 
 * Colors and spacing are fully controlled via Elementor Widget Settings.
 */

.bdw-ebh-wrapper {
    position: relative;
    overflow: hidden;
    /* Structural fallbacks */
    padding: 96px 48px 64px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: transparent;
}

/* Decorative Glow - Controlled by Elementor */
.bdw-ebh-wrapper::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 74, 171, 0.05) 0%, transparent 70%); /* Fallback Azul Baqueiro */
    pointer-events: none;
    z-index: 0;
}

/* Make sure the text stays above the glow */
.bdw-ebh-wrapper .lang-box {
    position: relative;
    z-index: 1;
}

.bdw-ebh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f4aab; /* Fallback */
    margin-bottom: 20px;
}

.bdw-ebh-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: #0f4aab; /* Fallback */
}

.bdw-ebh-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    max-width: 700px;
    margin: 0;
    color: #1e293b; /* Fallback */
}

.bdw-ebh-title em {
    font-style: normal;
    color: #0f4aab; /* Fallback */
}

.bdw-ebh-sub {
    margin-top: 20px;
    font-size: 1.05rem;
    color: #475569; /* Fallback */
    max-width: 480px;
    line-height: 1.65;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .bdw-ebh-wrapper {
        padding: 48px 24px 32px;
    }
    .bdw-ebh-wrapper::before {
        width: 300px;
        height: 300px;
        top: -50px;
        right: -50px;
    }
}
