:root {
    --gray: #D4D4D4;
    --red: #CC1114;
    --dark: #111;
    --light: #f5f3ee;
    --bone: #F3F2ED;
    --bg-gray: #F3F5F8;
}
body {
  font-family: 'Zalando Sans', sans-serif;
}
div#iter-content-wrapper {
    margin-top: 25px;
}

/* Categoria*/
.sect-date {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 0.5rem;
}
.sect-date .article-section .section {
    background: var(--bg-gray);
    padding: 8px;
    font-size: 13px;
}
.sect-date .date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.sect-date .date::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--red);
    border-radius: 50%;
    display: inline-block;
}

/* Titulo del Bloque*/
.section-title {
    position: relative;
    font-size: 13px;
    line-height: 16px;
    border-bottom: 1px solid var(--gray);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}
.section-title .title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}
.section-title .title.principal{
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(60%);
    height: 4px;
    width: 30px;
    background: var(--red);
}
.section-title p{
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    margin: 1rem 0 0.8rem 0;
}

.title.principal svg{
  display: none;
}
/* ======== NOTA PRINCIPAL ======== */
/* Título del artículo */
.principal_notas .headline {
  margin: 0 0 6px 0;
}
.principal_notas .headline a {
  text-decoration: none;
  color: inherit;
}
.principal_notas .headline h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin: 10px 0 6px 0;
  color: var(--dark);
}
/* Solo la primera línea visual en rojo */
.principal_notas .headline h2::first-line {
  color: var(--red);
}
.principal_notas .autor-nombre,
.listado_notas .autor-nombre{
  display: none;
}
.principal_notas{
  padding-top: 15px;
}
/* Descripcion */
.principal_notas .subheadline {
  margin: 0;
}
.principal_notas .subheadline h3,
.principal_notas .subheadline p {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* ================= LISTADO DE NOTAS DER ================ */
.listado_notas article{
  padding-bottom: 20px;
  border-bottom: 1px solid  var(--gray);
  padding-top: 20px;
}
.listado_notas article:last-child {
  border-bottom: none;
}
.listado_notas .media_block {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.listado_notas .multimedia {
  order: 2;
}
.listado_notas .headline a{
  text-decoration: none;
}
.listado_notas .headline h2 {
  font-size: 16px;
  line-height: 1.3;
  color: #1a1a1a;
}
.listado_notas .subheadline h3 {
  font-size: 14px;
  color: #555555 !important;
}

/* ============= ARTÍCULO LISTA ================= */
.noticias_list .headline a{
  text-decoration: none;
}
.noticias_list article{
  padding-right: 3rem;
}
.noticias_list .R_IMG_SEC_DATE_TIT{
  padding: 20px 0;
  border-bottom: 1px solid var(--gray);
}
.noticias_list .media_block {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 25px;
}
.noticias_list .headline h2 {
  font-size: 16px;
  line-height: 1.3;
  color: #1a1a1a;
}

/* ======== DESTACADAS ======== */
.mas-destacados{
    margin-top: 0.5rem;
}
.iter-rankingtab-mostrecent-hd, 
.iter-rankingtab-mostviewed-hd {
    display: none;
}
.section-title.destacados{
    margin-bottom: 0;
    margin-top: 3rem;
}
.mas-destacados .R_TIT {
    display: flex;
    gap: 35px;
    border-bottom: 1px solid var(--gray);
    padding: 20px 0;
}
.mas-destacados .headline a{
  color: var(--dark);
  text-decoration: none;
}
.mas-destacados .headline h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.mas-destacados .r_numeracion {
  font-size: 18px;
  font-weight: 500;
  color: var(--red);
}
.mas-destacados .R_TIT:nth-child(5){
  border-bottom: 1px solid transparent;
}

/* PAGINADOR */
.noticias_list .carrusel{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 3rem;
}
.noticias_list .carrusel ul li {
    cursor: pointer;
    padding: 0 5px;
}
.noticias_list .prev-button,
.noticias_list .next-button{
    background: var(--red);
    padding: 0.5rem;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}
.noticias_list .carrusel ul {
    display: flex;
    align-items: center;
    gap: 25px;
}
.noticias_list .carrusel ul .nav-page-selected{
    color:  var(--red);
    text-decoration: underline;
    background: none !important;
}
.carrusel .prev-button.disable-button{
    opacity: initial !important;
}
.container, .container-fluid, .container-lg, 
.container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 991px) {
  .noticias_list .nav-button ul {
      gap: 10px;
  }
  .noticias_list .nav-button {
      gap: 12px;
      justify-content: center;
  }
  .noticias_list .next-button,
  .noticias_list .prev-button {
      font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mas-destacados .R_TIT {
      gap: 10px;
  }
  .mas-destacados .headline h2 {
      font-size: 12px;
  }
}

@media (max-width: 768px) {
  .sect-date .date{
    font-size: 10px;
  }
  .listado_notas .media_block{
    gap: 22px;
  }
  .listado_notas .headline h2{
    line-height: 1;
  }
  .listado_notas{
    padding: 12px 0 12px 0;
  }
  .listado_notas .multimedia,
  .noticias_list .multimedia{
    width: 140px !important;
    height: auto;
  }
  .noticias_list article {
      padding-right: 0rem;
  }
  
}

@media (max-width: 767px) {
  .noticias_list .media_block h2 {
      font-size: 16px;
  }
  .noticias_list .nav-button ul li {
      padding: 0;
  }
  .noticias_list .media_block {
      gap: 16px;
  }
  .noticias_list {
    margin-bottom: 36px;
  }
  .section-title .title.principal{
    font-size: 30px;
    margin-bottom: 20px;
  }

}

