/*
 * bedura_about_banner — About page rounded hero (background cover + centered title)
 * Compiled plain CSS (no Sass build required).
 */

.bedura_about_banner {
    margin: 0;
    padding: 1rem 0 2rem;
    /* No outer background — page already uses cream; avoids double-fill behind the banner. */
    background: transparent;
}

.bedura_about_banner__container {
    max-width: 1320px;
}

.bedura_about_banner__panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 21 / 5;
    min-height: 148px;
    box-sizing: border-box;
}

@media (max-width: 575.98px) {
    .bedura_about_banner__panel {
        border-radius: 18px;
        aspect-ratio: 16 / 7;
        min-height: 132px;
    }
}

/* Light veil so white type stays readable on busy leather/photos */
.bedura_about_banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.bedura_about_banner__title {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: clamp(12px, 3vw, 28px) clamp(20px, 4vw, 48px);
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        'Segoe UI',
        Roboto,
        'Helvetica Neue',
        Arial,
        sans-serif;
    font-weight: 600;
    font-size: clamp(1.6875rem, 4vw, 3.125rem);
    line-height: 1.12;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.28),
        0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Lazy-load skeleton strip */
.bedura_about_banner--skeleton .bedura_about_banner__panel {
    background: rgba(74, 74, 74, 0.08);
    background-image: none;
    animation: none;
}
