.seccion_Novedades_TiempoFinal {
  padding: 72px 0;
  background: #f6f3ed;
}

.noticia_Destacada {
  display: grid;
  grid-template-columns: 34% 1fr;
  align-items: start;
  background: #ffffff;
  border: 1px solid rgba(33, 36, 36, 0.12);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 36px;
  box-shadow: 0 18px 50px rgba(33, 36, 36, 0.08);
}

.noticia_Destacada_Imagen {
  width: 100%;
  height: 430px;
  margin: 0;
  overflow: hidden;
  background: #212424;
  align-self: start;
}

.noticia_Destacada_Imagen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.noticia_Destacada_Contenido {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.noticia_Destacada_Meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.noticia_Destacada_Meta span {
  padding: 7px 12px;
  border-radius: 50px;
  background: rgba(202, 148, 64, 0.12);
  color: #9b6b21;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.noticia_Destacada_Contenido > h2 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #212424;
  font-family: "Merriweather", serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.16;
}

.noticia_Destacada_Entradilla {
  max-width: 720px;
  margin: 0;
  color: #616565;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.noticia_Destacada_Detalles {
  margin-top: 30px;
}

.noticia_Destacada_Detalles summary {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 50px;
  background: #212424;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.noticia_Destacada_Detalles summary::-webkit-details-marker {
  display: none;
}

.noticia_Destacada_Detalles summary:hover {
  background: #ca9440;
  transform: translateY(-2px);
}

.texto_Cerrar {
  display: none;
}

.noticia_Destacada_Detalles[open] .texto_Abrir {
  display: none;
}

.noticia_Destacada_Detalles[open] .texto_Cerrar {
  display: inline;
}

.noticia_Destacada_Flecha {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.noticia_Destacada_Detalles[open] .noticia_Destacada_Flecha {
  transform: rotate(180deg);
}

.noticia_Destacada_Cuerpo {
  padding-top: 36px;
  max-width: 760px;
}

.noticia_Destacada_Cuerpo p {
  margin: 0 0 22px;
  color: #4e5252;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.noticia_Destacada_Cuerpo h3 {
  margin: 38px 0 16px;
  color: #212424;
  font-family: "Merriweather", serif;
  font-size: 23px;
  font-weight: 700;
}

.noticia_Destacada_Autor {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(33, 36, 36, 0.12);
  color: #616565;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.noticia_Destacada_Autor strong {
  color: #212424;
  font-size: 16px;
}

@media (max-width: 991px) {
  .seccion_Novedades_TiempoFinal {
    padding: 56px 0;
  }

  .noticia_Destacada {
    grid-template-columns: 1fr;
  }

  .noticia_Destacada_Imagen {
    width: calc(100% - 72px);
    max-width: 430px;
    height: 360px;
    margin: 36px auto 0;
    border-radius: 18px;
  }

  .noticia_Destacada_Contenido {
    padding: 36px;
  }
}

@media (max-width: 576px) {
  .seccion_Novedades_TiempoFinal {
    padding: 48px 0;
  }

  .noticia_Destacada {
    margin-top: 28px;
    border-radius: 18px;
  }

  .noticia_Destacada_Imagen {
    width: 100%;
    max-width: none;
    height: 300px;
    margin: 0;
    border-radius: 0;
  }

  .noticia_Destacada_Contenido {
    padding: 26px 20px 28px;
  }

  .noticia_Destacada_Contenido > h2 {
    font-size: 27px;
    line-height: 1.25;
  }

  .noticia_Destacada_Entradilla {
    font-size: 15px;
    line-height: 1.7;
  }

  .noticia_Destacada_Detalles summary {
    width: 100%;
    justify-content: center;
  }

  .noticia_Destacada_Cuerpo {
    padding-top: 30px;
  }

  .noticia_Destacada_Cuerpo p {
    font-size: 15px;
    line-height: 1.75;
  }

  .noticia_Destacada_Cuerpo h3 {
    font-size: 21px;
  }
}