/* ============================================
   NOTICIAS HOME — carousel y nota destacada
   Acotado a .containerNewNavegacion
   ============================================ */

/* Nota destacada 1 */
.containerNewNavegacion #div_destacada_1 {
  position: relative;
  width: calc(100% - 16px);
  height: 380px !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  box-sizing: border-box;
  margin: 0 8px 24px 8px;
  cursor: pointer;
}

.containerNewNavegacion #div_destacada_1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.50) 100%);
  z-index: 1;
}

.containerNewNavegacion #div_destacada_1 > * {
  position: relative;
  z-index: 2;
}

.containerNewNavegacion #div_categoria_1 {
  display: inline-block;
  width: fit-content;
  background: #00aaaa;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 8px;
}

.containerNewNavegacion #div_titulo_1 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.containerNewNavegacion #div_copete_1 {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
}

/* Carousel — tarjetas */
.containerNewNavegacion .owl-carousel .owl-item > div {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.11);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 8px;
  height: 230px;
  box-sizing: border-box;
}

.containerNewNavegacion .owl-carousel .owl-item .nota-fecha {
  display: none;
}

.containerNewNavegacion .owl-carousel .owl-item .nota-imagen {
  width: 100%;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 6px 6px 0 0;
}

.containerNewNavegacion .owl-carousel .owl-item .nota-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.containerNewNavegacion .owl-carousel .owl-item > div > div:nth-child(3) {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  overflow: hidden;
  min-height: 0;
}

.containerNewNavegacion .owl-carousel .owl-item > div > div:nth-child(3) > div:first-child {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.containerNewNavegacion .owl-carousel .owl-item > div > div:nth-child(3) > div:last-child {
  display: none;
}

.containerNewNavegacion .owl-carousel .owl-item .nota-categoria {
  display: block !important;
  flex: 0 0 auto !important;
  height: auto !important;
  overflow: visible !important;
  width: fit-content;
  background: #00aaaa;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.2px;
  line-height: 1.5;
  white-space: nowrap;
  margin-bottom: 4px;
}

.containerNewNavegacion .owl-carousel .owl-item .nota-titulo {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.containerNewNavegacion .owl-carousel .owl-item .nota-titulo:hover {
  color: #1a9c6e;
}
.containerNewNavegacion .owl-carousel .owl-item .nota-imagen {
  width: 100%;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 6px 6px 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}