/*----------------------------------------------------------------------------------------
	Contiene:

	+ Headers (h1 - h6)
	+ Formatos de texto:
		.formato-texto-seccion
		.formato-titulo-listado
		.formato-titulo-listado-2
		.formato-texto-listado
		.formato-fecha-listado
		.formato-fuente-listado
		.formato-referencia-listado
		.formato-imagen-listado
	+ Alineación vertical
----------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------------------
:: Headers
----------------------------------------------------------------------------------------*/

h2 {
  font-weight: 700;
  font-size: var(--extralarge-font-size);
  letter-spacing: -.018em;

  .material-icons {
    color: #ccc;
    margin-right: 5px;
  }

  &.privado {
    border-left: none;

    &>.material-icons {
      color: var(--tertiary-color);
    }
  }

  &>small {
    display: block;
    margin-top: 4px;
    color: var(--fifth-color);
  }
}


h3 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin-top: 0;
  margin-bottom: 25px;

  @media (max-width: 768px) {
    margin-bottom: 15px;
  }
}




/*----------------------------------------------------------------------------------------
:: Formatos de texto
----------------------------------------------------------------------------------------*/


/** Listados **/

.formato-titulo-listado {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2em;
  letter-spacing: -.035em;
  color: var(--primary-color);
  font-family: var(--secondary-font);
}

.formato-titulo-listado a {
  color: inherit;
}

.formato-titulo-listado-2 {
  font-weight: 400;
  font-size: 17px;
  line-height: 2rem;
  color: #333;
  font-family: var(--secondary-font);
}

.formato-titulo-listado-2 a {
  color: inherit;
}

.formato-texto-seccion {
  font-size: var(--medium-font-size);
  /* text-align:justify; */
}

.formato-texto-listado {
  font-size: var(--medium-font-size);
  /* text-align:justify; */
}

.formato-fecha-listado {
  color: var(--tertiary-color);
  font-size: 13px;
}

.formato-fuente-listado {
  color: var(--tertiary-color);
  font-size: 13px;
}

.formato-referencia-listado {
  color: #999;
  font-size: 13px;
}

.formato-imagen-listado img {
  transition: all .3s;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.formato-imagen-listado:hover img {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, .4);
}

@media (max-width: 1200px) {
  .formato-titulo-listado {
    font-size: 1.4rem;
  }

  .formato-titulo-listado-2 {
    font-size: 1.4rem;
  }

  .formato-fecha-listado {
    font-size: 1.1rem;
  }

  .formato-fuente-listado {
    font-size: 1.1rem;
  }

  /* .formato-texto-listado {
        font-size: 1.3rem;
    } */
  /* .formato-texto-seccion {
        font-size: 1.4rem;
    } */
}

@media (max-width: 992px) {
  .formato-titulo-listado {
    font-size: 1.6rem;
  }

  .formato-titulo-listado-2 {
    font-size: 1.6rem;
  }

  .formato-fecha-listado {
    font-size: 1.3rem;
  }

  .formato-fuente-listado {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .formato-titulo-listado {
    font-size: 1.3rem;
  }

  .formato-titulo-listado-2 {
    font-size: 1.3rem;
  }

  .formato-fecha-listado {
    font-size: 1rem;
  }

  .formato-fuente-listado {
    font-size: 1rem;
  }

  /* .formato-texto-listado {
        font-size: 1.1rem;
    } */
  /* .formato-texto-seccion {
        font-size: 1.2rem;
    } */
}


/*----------------------------------------------------------------------------------------
:: Alineación vertical
----------------------------------------------------------------------------------------*/

.valign-wrapper {
  width: 100%;
  display: table;
}

.valign-wrapper .valign {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}