
/* AGENDA */
.agenda.listado-mosaico {
    display: grid;
    gap: 2%;
    grid-template-columns:  100%;
}
.agenda .item {
    background-color: var(--crema);
    border: 1px solid var(--borde);
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}
.agenda .imagen {
    width: 100%;
    height: 470px;
    display: block;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}
.agenda .imagen img {
    height:100%;
    width: auto;
    max-width: unset !important;
    margin-left: 50%;
    transform: translateX(-50%);
}
.agenda .textos {
}
.agenda .textos  div {
    padding: 24px 16px 8px 16px;
    border-bottom: 1px solid var(--borde);
}
.agenda .textos  div.noborder {
    border-bottom:unset;
}
.agenda .textos h2 {
    font-size:24px;
    font-family:"NeueMontrealMedium";
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 600px) {
    .agenda.listado-mosaico {
        display: grid;
        gap: 2%;
        grid-template-columns: 48% 48%;
    }
}

@media only screen and (min-width: 800px) {

}
@media only screen and (min-width: 992px) {
}
@media only screen and (min-width: 1150px) {

}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .agenda.listado-mosaico {
        display: grid;
        gap: 2%;
        grid-template-columns: 32% 32% 32%;
    }
} 
