/* =====================================================
   PAGINA DESPRE NOI — BunDeTot Theme
===================================================== */

.despre-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a; /* fallback dacă nu e setată imaginea */
    display: flex;
    align-items: center;
}

.despre-hero__inner {
    width: 100%;
}

.despre-hero__overlay {
    width: 40%;
    background: var(--bdt-brand, #9a0019);
    color: #fff;
    padding: 40px 30px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
    animation: despreHeroFadeIn 0.7s ease both;
}

@keyframes despreHeroFadeIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Text din editor */
.despre-hero__overlay p,
.despre-hero__overlay p.lead {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #fff !important;
    text-align: justify;
    margin: 0 0 0.7em;
}

.despre-hero__overlay p:last-child {
    margin-bottom: 0;
}

.despre-hero__overlay span {
    color: #fff !important;
    font-size: inherit !important; /* ignoră font-size inline din shortcode */
}

/* Responsive */
@media (max-width: 1024px) {
    .despre-hero__overlay {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .despre-hero {
        min-height: 0;
        background-image: none !important; /* fără imagine pe mobil — se pune culoare */
        padding: 60px 0;
    }

    .despre-hero__overlay {
        width: 100%;
        box-shadow: none;
    }
}
