/* =========================================================
   MILONGAS - ESTILO PÚBLICO
   ========================================================= */

.abt-milongas {
    width: 100%;
}


/* =========================================================
   AGENDA
   ========================================================= */

.abt-milongas-agenda {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* =========================================================
   SEPARADOR DE FECHA
   ========================================================= */

.abt-milonga-dia {
    width: 100%;

    margin-top: 38px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    color: #003A5D;

    font-size: 27px;
    line-height: 1;

    font-weight: 700;
}

.abt-milonga-dia::before {
    content: "";

    width: 7px;
    height: 28px;

    flex-shrink: 0;

    background: #D85F13;

    border-radius: 4px;
}

.abt-milonga-dia::after {
    content: "";

    flex: 1;

    height: 2px;

    background: #003A5D;

    opacity: 0.25;

    border-radius: 2px;
}


/* =========================================================
   TARJETA NORMAL
   ========================================================= */

.abt-milonga-card {
    width: 100%;

    display: flex;
    align-items: flex-start;
    
    position: relative;

    gap: 20px;

    padding: 20px;

    box-sizing: border-box;

    border: none;
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 6px 20px rgba(0, 58, 93, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.abt-milonga-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 9px 25px rgba(0, 58, 93, 0.32);
}


/* =========================================================
   FOTO
   ========================================================= */

.abt-milonga-foto {
    width: 190px;
    min-width: 190px;
    max-width: 190px;

    height: 238px;

aspect-ratio: 190 / 238;

    flex: 0 0 190px;

    align-self: flex-start;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 10px;

    background: #ffffff;
}

.abt-milonga-foto img {
    display: block;

    width: 190px;
    height: 238px;

    max-width: 100%;

    object-fit: cover;

    border-radius: 8px;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.abt-milonga-contenido {
    flex: 1;

    min-width: 0;

    height: auto;

    display: flex;
    flex-direction: column;
}

.abt-milonga-contenido h2 {
    margin: 0 0 8px;

    color: #003A5D;

    font-size: 24px;
    line-height: 1.2;

    font-weight: 700;
}


/* =========================================================
   LUGAR
   ========================================================= */

.abt-milonga-lugar {
    margin-bottom: 10px;

    color: #D85F13;

    font-size: 15px;
    line-height: 1.4;

    font-weight: 600;
}


/* =========================================================
   HORARIO
   ========================================================= */

.abt-milonga-horario {
    margin-bottom: 14px;

    color: #003A5D;

    font-size: 15px;
    line-height: 1.4;

    font-weight: 600;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.abt-milonga-descripcion {
    color: #333333;

    font-size: 15px;
    line-height: 1.5;
}

.abt-milonga-descripcion p {
    margin-top: 0;
}


/* CONTENIDO RECORTADO */

.abt-milonga-descripcion-texto {
    max-height: 120px;

    overflow: hidden;
}

.abt-milonga-descripcion-texto.abierto {
    max-height: none;

    overflow: visible;
}



/* =========================================================
   BOTONES DE ACCIÓN
   ========================================================= */

.abt-milonga-botones {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 18px;
    padding-top: 0;
}

.abt-milonga-boton {
    display: inline-block;

    padding: 7px 13px;

    border-radius: 20px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    color: #003A5D;

    background: #ffffff;

    box-shadow:
        0 2px 8px rgba(0, 58, 93, 0.18);

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.abt-milonga-boton:hover {
    color: #ffffff;

    background: #D85F13;

    text-decoration: none;

    transform: translateY(-1px);
}


/* =========================================================
   REDES SOCIALES
   ========================================================= */

.abt-milonga-redes {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 52px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    gap: 14px;

    padding-left: 18px;

    box-sizing: border-box;

    border-left: 1px solid rgba(0, 58, 93, 0.15);
}

/* REDES DENTRO DEL EVENTO DESTACADO */

.abt-milonga-destacada .abt-milonga-redes {
    position: static;

    width: 100%;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: flex-start;

    gap: 10px;

    margin-top: 14px;

    padding-left: 0;

    border-left: none;
}

.abt-milonga-destacada .abt-milonga-red {
    position: static;

    width: 40px;
    height: 40px;

    min-width: 40px;

    padding: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border-radius: 50%;

    
}

.abt-milonga-red {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #003A5D;

    background: #ffffff;

    text-decoration: none;

    font-size: 20px;

    box-shadow:
        0 3px 10px rgba(0, 58, 93, 0.16);

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.abt-milonga-red:hover {
    color: #ffffff;

    background: #D85F13;

    transform: scale(1.08);

    text-decoration: none;
}

/* =========================================================
   EVENTO DESTACADO
   ========================================================= */

.abt-milongas-destacados {
    width: 100%;
    margin-bottom: 35px;
}


.abt-milonga-destacada {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 24px;

    min-height: 150px;

    padding: 18px 22px;

    box-sizing: border-box;

    border: 3px solid #FED16D;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 6px 20px rgba(0, 58, 93, 0.15);
}


/* IMAGEN DESTACADO */

.abt-milonga-destacada .abt-milonga-imagen {
    width: 100px;
    min-width: 100px;

    height: 110px;

    overflow: hidden;

    border-radius: 10px;
}

.abt-milonga-destacada .abt-milonga-imagen img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* CONTENIDO DESTACADO */

.abt-milonga-destacada-contenido {
    flex: 1;

    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* FECHA */

.abt-milonga-destacada .abt-milonga-fecha {
    margin-bottom: 6px;

    color: #003A5D;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;

    white-space: nowrap;
}


/* TÍTULO */

.abt-milonga-destacada-fila {
    display: flex;

    align-items: center;

    gap: 35px;
}


.abt-milonga-destacada-fila h2 {
    margin: 0;

    color: #003A5D;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;
}


/* VER MÁS */

.abt-milonga-destacada-ver-mas {
    display: inline-block;

    padding: 8px 18px;

    border: none;

    border-radius: 20px;

    background: #e86f00 !important;

    color: #ffffff !important;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.abt-milonga-destacada-ver-mas:hover {
    background: #d85f00 !important;

    color: #003A5D;

    transform: translateY(-1px);
}

/* =========================================================
   MOSTRAR MÁS EVENTOS
   ========================================================= */

.abt-milonga-mostrar-mas {
    display: block;

    margin: 30px auto 0;

    padding: 9px 20px;

    border: none !important;

    border-radius: 20px !important;

    background: #003A5D !important;

    color: #ffffff !important;

    font-size: 14px !important;

    font-weight: 600 !important;

    cursor: pointer;

    box-shadow: none;
}

.abt-milonga-mostrar-mas:hover {
    background: #D85F13 !important;
    color: #ffffff !important;
}
/* =========================================================
   CELULAR
   ========================================================= */

@media screen and (max-width: 700px) {

    .abt-milongas-agenda {
        flex-direction: column;

        gap: 0;
    }


    /* SEPARADOR */

    .abt-milonga-dia {
        margin-top: 30px;

        margin-bottom: 16px;

        gap: 10px;

        font-size: 23px;
    }

    .abt-milonga-dia::before {
        width: 6px;

        height: 24px;
    }


    /* TARJETA */

    .abt-milonga-card {
        width: 100%;

        flex-direction: column;

        gap: 18px;

        padding: 18px;
    }


    /* FOTO */

    .abt-milonga-foto {
        width: 100%;
        min-width: 0;
        max-width: none;

        height: auto;

        aspect-ratio: 4 / 5;

        flex: none;
    }

    .abt-milonga-foto img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* TITULO */

    .abt-milonga-contenido h2 {
        font-size: 23px;
    }


    /* REDES */
    
    

    .abt-milonga-redes {
        
        position: static;
top: auto;
right: auto;

        width: 100%;
        min-width: 0;

        flex: none;

        order: 3;

        flex-direction: row;

        justify-content: flex-start;

        gap: 12px;

        padding-left: 0;

        padding-top: 14px;

        margin-left: 0;

        border-left: none;

        border-top: 1px solid rgba(0, 58, 93, 0.15);
    }


    /* DESTACADO */

    .abt-milongas-destacados {
        margin-bottom: 25px;
    }

    .abt-milonga-destacada {
        min-height: 0;

        flex-wrap: wrap;

        gap: 12px;

        padding: 16px;
    }

    .abt-milonga-destacada .abt-milonga-imagen {
        width: 85px;
        min-width: 85px;

        height: 95px;
    }

    .abt-milonga-destacada h2 {
    font-size: 21px;
}

/* TÍTULO + VER MÁS EN CELULAR */

.abt-milonga-destacada-fila {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    width: 100%;
}

.abt-milonga-destacada-ver-mas {
    border-radius: 20px !important;
    align-self: flex-start;
}

    .abt-milonga-destacada .abt-milonga-fecha {
        width: 100%;
    }

    .abt-milonga-destacada-contenido {
        width: 100%;
    }

    .abt-milonga-destacada .abt-milonga-redes {
        width: 100%;

        flex-direction: row;

        margin-top: 10px;
    }
}

/* PRUEBA ALTURA DESCRIPCIÓN */

.abt-milonga-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

.abt-milonga-contenido {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}

.abt-milonga-descripcion {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.abt-milonga-descripcion-texto {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}


.abt-milonga-descripcion .abt-milonga-ver-descripcion {
    display: inline-block;

    margin-top: 14px;
    padding: 10px 28px;

    border: none;
    border-radius: 50px;

    background: #e86f00 !important;
    color: #ffffff !important;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 4px 10px rgba(0, 58, 93, 0.15);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
        
}

.abt-milonga-ver-descripcion:hover {
    background: #d85f00 !important;
    transform: translateY(-1px);
}

/* =========================================================
   TIPO DE EVENTO
   ========================================================= */

.abt-milonga-tipo {
    margin-top: 8px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.abt-milonga-tipo.tipo-milonga {
    color: #C09473;
}

.abt-milonga-tipo.tipo-especial {
    color: #A42A2A;
}

/* =========================================================
   FECHAS DEL EVENTO DESTACADO
   ========================================================= */

.abt-milonga-fechas {
    margin-bottom: 14px;

    color: #003A5D;
    font-size: 15px;
    font-weight: 600;
}

.abt-milonga-fechas strong {
    font-weight: 700;
}