/*
 Theme Name:   Colegio San Isidro - GeneratePress Child
 Theme URI:    https://www.redcolegiosrc.cl
 Description:  tema personalizado para el colegio San Isidro
 Author:       Nelson Grez
 Author URI:   https://www.nelsongrez.cl
 Template:     generatepress
 Version:      0.1
*/

/*===================================================================== variables =====================================================================*/
:root {
      --color-principal: #18398A;
      --color-secundario: #00704A;
      --color-blanco: #ffffff;
      --color-gris: #999999;
      --color-negro: #000000;
    }

/*===================================================================== Logotipo Red - cabecera =====================================================================*/
 
 .logo-red {
      display: flex;
      align-content: center;
      justify-content: center;
      padding: 5px;    
 }
 
 .logo-red__link {
     line-height:0;    
 }
 
 .logo-red__imagen {
     width: 105px;
 }
 
 /*===================================================================== Imágenes destacadas de páginas y entradas =====================================================================*/
 
 .featured-image {
     position: relative;
     margin: auto;
     max-width: 1200px;
     height: calc(1200px * 9 / 16) !important;
     border-bottom: 4px solid var(--color-secundario);
 }
 .featured-image img {
     width: 100%;
     height: 100%;
     position: absolute;
     top: 0;
     left: 0;
     object-fit: cover;
     object-position: center;
 }
 
 @media only screen and (max-width: 1200px) {
     .featured-image {
         width: 100%;
         height: calc(100vw * 6 / 16) !important;
     }    
  }
 @media only screen and (max-width: 768px) {
     .featured-image {
         width: 100%;
         height: calc(100vw * 9 / 16) !important;
     }
 }   
 @media only screen and (max-width: 576px) {
     .featured-image {
         width: 100%;
         height: calc(100vw * 3 / 4) !important;
     }    
  }
  
  /*===================================================================== Imágenes listado de noticias =====================================================================*/
  
  .inside-article .post-image {
    position: relative;
    margin: auto;
    max-width: 400px;
    height: calc(400px * 3 / 4) !important;
  }
 
 .inside-article .post-image a img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
 }
 
 
 
 
 
 