/* =====================================================
   NEWS
===================================================== */

.fcwc-news-grid{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:18px;
}

.fcwc-news-card{
  display:block;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  text-decoration:none;
  color:#111827;
  box-shadow:0 2px 10px rgba(0,0,0,.06);
  transition:.2s ease;
}

.fcwc-news-card:hover{
  transform:translateY(-2px);
}

.fcwc-news-card img{
  width:100%;
  display:block;
  object-fit:cover;
}

/* ==========================================
   NOTICIA PRINCIPAL
========================================== */

.fcwc-news-card:first-child{
  grid-row:span 3;
}

.fcwc-news-card:first-child img{
  height:340px;
}

.fcwc-news-card:first-child .fcwc-news-body{
  padding:18px;
}

.fcwc-news-card:first-child h3{
  margin:10px 0;
  font-size:24px;
  line-height:1.15;
  font-weight:700;
  color:#0b1f3b;
}

.fcwc-news-card:first-child time{
  color:#64748b;
  font-size:13px;
}

/* ==========================================
   NOTICIAS SECUNDARIAS
========================================== */

.fcwc-news-card:not(:first-child){
  display:grid;
  grid-template-columns:140px 1fr;
  align-items:center;
}

.fcwc-news-card:not(:first-child) img{
  width:140px;
  height:110px;
}

.fcwc-news-card:not(:first-child) .fcwc-news-body{
  padding:12px;
}

.fcwc-news-card:not(:first-child) h3{
  margin:0;
  font-size:17px;
  line-height:1.3;
  font-weight:700;
  color:#0b1f3b;
}

.fcwc-news-card:not(:first-child) time{
  display:block;
  margin-top:8px;
  font-size:12px;
  color:#64748b;
}

.fcwc-news-card,
.fcwc-news-card:hover,
.fcwc-news-card:focus,
.fcwc-news-card h3,
.fcwc-news-card h3 a{
  text-decoration:none !important;
}

/* ==========================================
   ETIQUETA
========================================== */

.fcwc-news-body span{
  display:none;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:#fc2729;
  color:#fff;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
}

.fcwc-news-body h3{
  font-size:22px;
  line-height:1.25;
  font-weight:700;
  margin:0;
  text-decoration:none !important;
}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px){

  .fcwc-news-grid{
    grid-template-columns:1fr;
  }

  .fcwc-news-card:first-child{
    grid-row:auto;
  }

  .fcwc-news-card:first-child img{
    height:220px;
  }

  .fcwc-news-card:first-child h3{
    font-size:20px;
  }

  .fcwc-news-card:not(:first-child){
    grid-template-columns:110px 1fr;
  }

  .fcwc-news-card:not(:first-child) img{
    width:110px;
    height:80px;
  }

  .fcwc-news-card:not(:first-child) h3{
    font-size:15px;
  }
}

@media (max-width: 600px){

  .fcwc-news-card:not(:first-child){
    grid-template-columns:95px 1fr;
  }

  .fcwc-news-card:not(:first-child) img{
    width:95px;
    height:70px;
  }

  .fcwc-news-card:first-child h3{
    font-size:20px;
  }
}