/* ESTILOS TITULOS SECCIONES */

.subheader__title,
.news__title,
.list-header__title,
.last-reviews__title,
.last-reviews__link-title,
.list-header__link-title {
    display: inline;
    font-weight: 400;
    font-size: 1.3rem;
    text-transform: uppercase;
    white-space: nowrap;
    /* padding: 0.1rem; */
    color: var(--color-principal);
    background-color: var(--color-secondary);
}    

/* ESTILOS SECCIONES SUB-ENCABEZADOS */
.news__subheader,
.games__subheader,
.login__subheader,
.posts__subheader,
.recent__subheader,
.videos__subheader,
.highlights__subheader,
.last-reviews__subheader {
    width: 100%;
    height: 3rem;
    margin-bottom: 3rem;
    background-color: var(--color-bg-navbar);
    padding: 0.4rem;
}

/*ESTILOS DEL ICONO DE COMENTARIOS Y NUMERO VISITAS  */

.footer-post__comments>.fa-solid,
.footer-post__views>.fa-solid,
.main-video__comments>.fa-solid,
.main-video__views>.fa-solid,
.main-post__comments>.fa-solid,
.main-post__views>.fa-solid,
.recent__comments>.fa-solid,
.recent__views>.fa-solid {
    margin-right: 0.2rem;
    margin-right: 0.2rem;
    font-size: 1.2rem;
}

/* ESTILOS DE TEXTO DE COMENTARIOS Y NUMERO VISITAS DE CADA SECCION */

.footer-post__comments,
.footer-post__views,
.main-video__comments,
.main-video__views,
.main-post__views,
.main-post__comments,
.recent__comments,
.recent__views {
    display: inline-block;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--color-text-marquee);
}

/* ESTILOS PARA EL AUTOR DE CADA SECCION */

.highlights__author,
.main-video__author,
.video__author,
.main-post__author,
.news__author,
.post__author,
.recent__author {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--color-secondary);
}

/* ESTILOS PARA LA FECHA DE CADA SECCION */

.highlights__date,
.main-video__date,
.video__date,
.main-post__date,
.news__data,
.post__date {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--color-text-marquee);
}

/* ESTILOS READ MORE DE CADA SECCION */

.footer-post__read-more,
.main-post__read-more,
.post__btn-read-more {
    color: var(--color-text-marquee);
    border: 1px solid var(--color-text-marquee);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.4rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-post__read-more:hover,
.main-post__read-more:hover,
.post__btn-read-more:hover {
    /* border: 1px solid var(--color-secondary); */
    /* color: var(--color-secondary); */
    color: var(--color-principal);
    background-color: var(--color-secondary);
}

/* ESTILOS PARA LAS CAJAS DE LAS CATEGORIAS  */

.highlights__category:hover,
.post__container-category:hover,
.main-post__container-category:hover,
.game__container-category:hover {
    background-color: var(--color-bg-navbar);
}

.main-post__container-category,
.game__container-category,
.highlights__category,
.post__container-category{
    position: absolute;
    left: 0;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-secondary);
    transition: all 300ms ease-in-out;
}

.main-post__category,
.game__category,
.highlights__name-category,
.post__category {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-principal);
}





