/* Normalización interna del componente para evitar conflictos con Gutenberg/Tema */
.card-alcalde-wrapper,
.card-alcalde-container,
.card-alcalde-content-overlay,
.card-alcalde-header-text,
.card-alcalde-quote-container,
.card-alcalde-footer-text,
.card-alcalde-title,
.card-alcalde-years,
.card-alcalde-quote,
.card-alcalde-name {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

/* En WordPress solo usas el contenedor (puedes quitar .card-alcalde-wrapper si no usas la sección completa) */
.card-alcalde-wrapper {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Contenedor Principal */
.card-alcalde-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos base para las capas de imágenes superpuestas */
.card-alcalde-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Capa 1: Fondo Amarillo (atrás) */
.card-alcalde-yellow-layer {
    z-index: 1;
}

/* Capa 2: Marco Azul (medio) */
.card-alcalde-blue-layer {
    z-index: 2;
}

/* Capa 3: Persona (frente) */
.card-alcalde-person-layer {
    z-index: 4;
    top: auto;
    left: auto;
    right: -2%;
    bottom: 0;
    width: 46%; 
    height: 76%;
    object-position: bottom right;
    transform: scaleX(-1);
}

/* Capa de Texto y Contenido */
.card-alcalde-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 8% 7% 12% 7%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

/* Encabezado */
.card-alcalde-header-text {
    text-align: left;
    margin-top: 2%;
}

.card-alcalde-title {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-alcalde-years {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 5px;
    color: #ffffff;
    line-height: 1.2;
}

/* Cita Central */
.card-alcalde-quote-container {
    width: 58%;
    margin-top: -20%;
}

.card-alcalde-quote {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}

/* Pie con el Nombre */
.card-alcalde-footer-text {
    width: 68%;
    text-align: center;
    margin-bottom: 8%;
}

.card-alcalde-name {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1.2;
}