.seccion-contenido {
   .contenedor {
      display: flex;
      flex-direction: column;
      gap: 2em;
      max-width: 1200px;
      margin: 0 auto;

      .div-historia,
      .div-mas-informacion {
         display: grid;
         grid-template-columns: 1fr;
         gap: 2em;
         /* align-items: center; */

         h2 {
            display: flex;
            align-items: center;
            font-size: 2rem;
            font-weight: normal;
            text-align: left;
            height: 100%;
         }
      }

      .div-imagenes {
         display: grid;
         grid-template-columns: 1fr;
         gap: 1em;
         align-items: center;
         max-height: 400px;
         overflow: hidden;

         img {
            width: 100%;
            height: 100%;
            object-fit: cover;
         }
      }
   }


}

@media (min-width: 768px) {
   .seccion-contenido {
      .contenedor {
         .div-imagenes {
            grid-template-columns: repeat(2, 1fr);
         }
      }
   }
}

@media (min-width: 1024px) {
   .seccion-contenido {
      .contenedor {
         .div-historia,
         .div-mas-informacion {
            grid-template-columns: repeat(3, 1fr);
         }

         .div-imagenes {
            grid-template-columns: 1fr 2fr;
         }
      }
   }
}