@import url('reset.css');
@import url("https://fonts.googleapis.com/css?family=Exo:400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,700&display=swap");
html {
  scroll-behavior: smooth;
}
.wrapper {
  max-width: 1280px;
  padding: 0 60px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .wrapper {    
    padding: 0 20px;    
  }  
}
/* portada */
.portada-plaquinews{  
  background-image: url(../images_plaqui/plaquinews-hero.webp);
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;  
  padding-bottom: 40px;
  padding-top: 140px;
  height: 566px;
}
.portada-plaquinews0625{
  background-image: url(../images_plaqui/plaquimet-mejor-distribuidor-2024.webp);
  background-position: bottom center;
}
.portada-plaquinews .wrapper{    
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  height: 100%;
}
.portada-plaquinews0625 .wrapper{    
  justify-content: space-between;
}
#titulo {
  font-family: 'Exo', sans-serif;
  font-size: 48px;
  color:#FFFFFF;
  text-shadow: 3px 3px 8px #000000bf;
  font-weight: bold;
}
#subTitulo {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  color:#FFFFFF;  
}
.portada-plaquinews button {  
  align-self: end;  
  font-family: 'Exo', sans-serif;
  font-size: 20px;
  padding: 10px 20px 6px;
  border: none;
}
@media screen and (max-width: 1024px) {
  .portada-plaquinews0625{
    padding-top: 100px;
  }
  .portada-plaquinews {     
    background-image: url(../images_plaqui/plaquinews-hero-tablet.webp);
  }   
  .portada-plaquinews0625{
    background-image: url(../images_plaqui/plaquimet-mejor-distribuidor-2024-tablet.webp);
  } 
}
@media screen and (max-width: 768px) {
  .portada-plaquinews {     
    background-image: url(../images_plaqui/plaquinews-hero-mobile.webp);    
    height: 400px;
    padding-bottom: 20px;
  }
  .portada-plaquinews0625{
    background-image: url(../images_plaqui/plaquimet-mejor-distribuidor-2024-mobile.webp);
    background-position: center;
  }
  #titulo { font-size: 28px; }
  #subTitulo { font-size: 21px; } 
  .portada-plaquinews button { font-size: 18px; margin-top: 10px; } 
}

/* thumbnails noticias y notas tecnicas */
.thumbnails {
  background-color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #606060;    
  padding: 30px 0;
}
.noticias-th{
  margin-top: 20px;  
}
.notas-tecnicas-th{
  margin-bottom: 20px;
}
.thumbnails .wrapper  {
  display: flex;  
  flex-direction: column;
  gap: 30px;
}
.grupo-ths  {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}
.thumbnails h2 {
  font-family: 'Exo', sans-serif;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
}
.thumbnails .fecha {
  text-transform: uppercase;
  font-style: italic;
  text-align: right;
}
.caja-th  {
  background-color: #FFFFFF;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.noticias-th .caja-th  {  
  justify-content: space-between;
}
.thumbnails img {
  width: 100%;
}
.caja-th h3, .titulo-nota-tecnica{
  font-family: 'Exo', sans-serif;
  font-size: 20px;
  color:#00a8e9;
  padding: 10px 0; 
  text-transform: uppercase;
}
.caja-th h3, .titulo-nota-tecnica{
  font-weight: 600;
}
.titulo-nota-tecnica{
  font-weight: 500;
  text-align: left;
  line-height: 1.2;
  background-color: transparent;  
  padding: 10px 0 0 0;
  border: 0;
}
.boton-noticia {
  font-family: 'Exo', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #00a8e9;
  background-color: transparent;
  float: right;
  padding: 0;
  border: 0;
  align-self: end;
}
@media screen and (max-width: 768px) {
  .thumbnails .wrapper  {
    max-width: 600px;
  }
  .grupo-ths  {
    grid-template-columns: 1fr;
  }
  .thumbnails, .caja-th h3, .caja-th button {
    font-size: 17px;    
  }  
}

/* cuerpos noticias */
.contenido-wrapper {
  margin-top: 10px;
  max-width: 1280px;
  padding: 0 60px;
  margin: auto;
}
.contenido {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #606060;
  padding: 0 0 60px;  
}
.noticia-row:first-child{
  margin-top: 60px;
}
.contenido.activo {
  display: block;
  opacity: 1;
}
.noticia-row {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}
.contenido h2 {
  font-family: 'Exo', sans-serif;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.contenido h3 {
  font-size: 21px;
  font-weight: bold;
  margin-top: 35px;
}
.contenido h4 {
  line-height: 1.6;
}
.contenido p {
  text-align: justify;
  padding-bottom: 20px;
}
.contenido img {
  max-width: 100%;
  margin: auto !important;
  display: block;
}
figcaption {  
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  padding-top: 10px !important;
  line-height: 1.4;
}
.contenido ul, .contenido ol{
  list-style: inherit;
  margin: 10px 0 20px 20px;
}
.contenido ul li::marker {
  color: #00a8e9;
}
.mobile{
  display: none;
}
.desktop{
  display: block;
}
@media screen and (max-width: 768px) {
  .contenido-wrapper {
    padding: 0 20px;
  }
  .noticia-row {
    gap: 20px;
    grid-template-columns: 1fr !important;
  } 
  .contenido {    
    font-size: 16px;    
  }
  .contenido h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  figcaption {  
    text-align: center;
  }
  .continuidad{
    margin-top: -50px;
  }
  .mobile{
    display: block;
  }
  .desktop{
    display: none;
  }
}