/* ── Bambu Cintillo – Frontend v1.0.3 ──────────────────────────────────────── */

#bambu-cintillo {
    /* Valores por defecto (sobreescritos por CSS vars del admin) */
    --bc-pad-v:    10px;
    --bc-pad-h:    24px;
    --bc-gap:      20px;
    --bc-img-h:    40px;
    --bc-font-size: 14px;

    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    line-height: 1.4;
    display: block;
}

.bambu-cintillo__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--bc-gap);
    padding: var(--bc-pad-v) var(--bc-pad-h);
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.bambu-cintillo__el {
    display: flex;
    align-items: center;
}

/* Imagen */
.bambu-cintillo__image img {
    display: block;
    height: var(--bc-img-h);
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

/* Texto */
.bambu-cintillo__text {
    font-size: var(--bc-font-size);
    text-align: center;
}

.bambu-cintillo__text p { margin: 0; }

.bambu-cintillo__text a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bambu-cintillo__text a:hover { opacity: 0.8; }
