
/* AGENDA */
.agenda.listado-mosaico {
    display: grid;
    gap: 2%;
    grid-template-columns:  100%;
}
.agenda .item {
    border: 1px solid var(--granate);
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    padding:16px;
}
.agenda .imagen {
  width: 100%;
  display: flex;
  align-items: center;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  max-width: 100%;
}
.agenda .imagen img {
    height: 360px;
}
.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%;
    }
} 
