/*
 * Flamboyante (pId 67234) — brand override styles.
 * Auto-loaded by base.php for this brand. Ports the CI3
 * assets/themes/ue_override/css/about_20260401.css
 * (only the classes the about page uses).
 *
 * CI3 used --main-bg-color; CI4 injects --brand-primary at runtime in <head>,
 * so we alias it here instead of hardcoding a hex.
 */
:root {
    --main-bg-color: var(--brand-primary, #5a1822);
}

/* ── About layout ───────────────────────────────────────────────── */
.common-spacing {
    padding: 25px 0;
}
.about-img img {
    width: 100%;
}
.common-para {
    font-size: 15px;
    color: #201c1d;
}
.placeholder-img {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
}
.placeholder-img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .common-spacing {
        padding: 20px 0;
    }
    .placeholder-img {
        height: 100%;
    }
}
