.main--controlador {
  background-color: #101010;
  color: white;
}

.informativo-cabecera {
  padding: 35px 0px;
  background-color: #161616;
}

.informativo-cabecera__programa {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.informativo-cabecera__programa-span--categoria {
  font-weight: bold;
  color: var(--color-title-media);
}

.informativo-cabecera__volver-titulo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.informativo-cabecera__programa-span {
  font-size: 10px;
  background-color: white;
  color: black;
  border-radius: 8px;
  height: 30px;
  font-weight: bold;
  padding: 7px 15px;
}

.informativo-cabecera__titulo-noticia {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 30px;
}


.fa-circle-arrow-left {
  font-size: 35px;
}

.fa-circle-arrow-left--controlador {
  font-size: 30px;
}

.informativo-cabecera__compartir-fecha {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.informativo-cabecera__compartir-noticia {
  list-style: none;
  display: flex;
  flex-direction: row;
}

.informativo-cabecera__compartir-icono {
  font-size: 25px;
  margin-right: 15px;
}

.informativo-cabecera__compartir-icono i:hover {
  color: white;
  scale: 1.5;
  transition: 300ms;
}

.informativo {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.informativo__noticia {
  width: 75%;
  padding-right: 15px;
  border-right: 1px solid rgb(43, 46, 60);
}

.informativo__cuerpo-noticia {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-align: justify;
}

.informativo__cuerpo-noticia p {
  margin-bottom: 10px;
}

.informativo__imagen-noticia {
  margin-bottom: 15px;
  width: 100%;
  height: 350px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.destacados {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.destacados__titulo {
 color: var(--color-light);
 font-weight: bold;
font-size:26px;
}

.destacados__lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.destacados__item {
  list-style: none;
  overflow: hidden;
  box-shadow: 0px 0px 15px -1px rgba(26, 26, 26, 0.24);
  -webkit-box-shadow: 0px 0px 15px -1px rgba(26, 26, 26, 0.24);
  -moz-box-shadow: 0px 0px 15px -1px rgba(26, 26, 26, 0.24);
  position: relative;
}

.destacados__container {
  position: relative;
  height: 210px;
}

.destacados__imagen-miniatura {
  width: 100%;
  height: 100%;
  transition: 500ms;
  object-fit: cover !important;
}

.destacados__item:hover .destacados__imagen-miniatura {
  scale: 1.1;
}


.destacados__container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(transparent 35%, black 100%);
  opacity: 0.9;
}

.destacados__categoria {
  background-color: black;
  color: white;
  position: absolute;
  top: 0px;
  font-size: 12px;
  padding: 3px 13px;
}

.destacados__fecha {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: white;
  z-index: 1000;
  font-size: 12px;
}

.destacados__title {
  position: absolute;
  bottom: 10px;
  color: white;
  font-size: 18px;
  padding: 0px 10px;
  z-index: 1000;
  font-size: 13px;
  font-weight: bold;
}

.destacados__play {
  width: 100px;
  position: absolute;
  bottom: 0px;
  right: -55px;
  background-color: transparent;
  z-index: 555555555;
}

.destacados__separador {
  width: 100%;
  height: 25px;
  background: rgb(2, 0, 36);
  background-color: #161616;
}

@media screen and (max-width: 777px) {
  .informativo {
    flex-direction: column;
    gap: 5px;
  }

  .informativo__noticia {
    width: 100%;
    padding-right: 0px;
    border-right: 0px;
  }

  .destacados {
    width: 100%;
  }
}

.informativo__nota {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.informativo__audio {
  width: 100%;
  background-color: #F1F3F4;
  border-radius: 5px;
}

.noticias__separador {
  height: 25px;
  background-color: #161616;
}

.informativo__escucha {
  font-weight: bold;
  color: pink;
}
