/* estilo para listados de noticias */
body {
   margin:0; padding:0;
   font-family: Roboto,system-ui,sans-serif;
   font-size:1.19rem;
}
   .row {
      display:grid;
      grid-gap:1rem;
      grid-template-rows: repeat(auto-fill,minmax(10rem,1fr));
      grid-auto-flow: column;
      overflow-x:auto;
      grid-auto-columns: minmax(15.5rem,1fr);
   }
/*.row:before , .row:after { content: ''; width: .1rem; } */
figure { height:9rem; overflow:hidden; margin:0; }
img.image { max-width:100%; height:auto; }
a { color:#333; text-decoration:none; }
a:visited { color:#666; }
@media (max-width:768px) {
      .col { width:16rem; }
   }
   .nopic {
      font-size:1.8rem;
   }
   a.text-decoration-none { text-decoration:none; }


   div.listado {
      font-size:1.1rem;
   }
   div.listado h1.cabezota { font-size:2rem; }
   div.listado img { width:150px; height:auto; margin-left:1rem; }
   div.listado h1 { font-size:1.5rem; line-height:1.8rem; }
   div.listado h2, div.listado h3, div.listado h4, div.listado h5, div.listado h6, div.listado p {
      font-size:1.3rem; line-height:1.5rem; 
      margin:0 0 1rem;
   }
   @media (min-width:1024px) {
      div.listado h1 { font-size:2.5rem; line-height:2.8rem; }
      div.listado h1.cabezota { font-size:3rem; }
      div.listado h2, div.listado h3, div.listado h4, div.listado h5, div.listado h6, div.listado p {
         font-size:2.3rem; line-height:2.5rem; 
         margin:0 0 1rem;
      }
   }
   div.listado div {
      border-bottom:1px solid #ddd;
      padding-bottom:1rem;
      margin-bottom:2rem;
      font-family: var(--font2);
   }
   div.listado a { color:#000; }
   div.listado a:visited { color:#444; }
   p { padding:0; }


   /* galerías */
   div#gallery {
      display:grid;
      grid-gap:.1rem;
      grid-template-columns: 1fr 1fr 1fr;
      background:#000;
   }
   div#gallery a { overflow:hidden; height:5rem; }
   div#gallery a img { width:100%; overflow:hidden; }

