.elementor-3583 .elementor-element.elementor-element-7e06b96{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3583 .elementor-element.elementor-element-f8c0922{text-align:center;}/* Start custom CSS for container, class: .elementor-element-7e06b96 *//* CONTENEDOR GENERAL */
.ma-vacantes-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 15px 60px;
    font-family: inherit;
}

/* HEADER (titulo + botón CV) */
.ma-vacantes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.ma-vacantes-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0A2A7E;
    margin: 0;
}

/* BOTÓN CV */
.ma-btn-cv {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: #0A2A7E;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s;
}

.ma-btn-cv:hover {
    background: #133ba5;
}

/* GRID DE VACANTES */
.ma-vacantes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

/* TARJETA DE VACANTE */
.ma-vacante-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 3px 18px rgba(0,0,0,0.08);
    border: 1px solid #e4e4e4;
}

.ma-vacante-titulo {
    font-size: 20px;
    font-weight: 700;
    color: #0A2A7E;
    margin-bottom: 10px;
}

.ma-vacante-contenido {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
}

/* Botón aplicar en cada tarjeta */
.ma-vacante-aplicar {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #0A2A7E;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #0A2A7E;
    transition: 0.25s;
}

.ma-vacante-aplicar:hover {
    background: #0A2A7E;
    color: #fff;
}

/* ESTADO SIN VACANTES */
.ma-vacantes-empty {
    text-align: center;
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 3px 18px rgba(0,0,0,0.08);
    border: 1px solid #e4e4e4;
}

.ma-vacantes-empty h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0A2A7E;
    margin-bottom: 10px;
}

.ma-vacantes-empty p {
    font-size: 16px;
    color: #333;
    margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ma-vacantes-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ma-vacantes-grid {
        grid-template-columns: 1fr;
    }

    .ma-vacantes-header h2 {
        font-size: 26px;
    }
}/* End custom CSS */