*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Glacial Indifference";
    src: url("../ASSETS/FONTS/GlacialIndifference/GlacialIndifference-Regular.otf");
}

@font-face {
    font-family: "Brittany";
    src: url("../ASSETS/FONTS/Brittany/BrittanySignature.ttf");
}



/*HEADER*/
header{
    position: relative;
    display: flex;
    justify-content: center;
    height: auto;
    background-color: #ffffff;
}

.portadaBox{
    position: relative;
    margin-top: 1rem;
    display: inline-flex;
    width: 80%;
    height: 80vh;
    overflow: hidden;
}

.portadaPrincipal{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.portadaPrincipal.active {
    opacity: 1;
}

.imgPortadaPrincipal{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5);
}


#prevBtn{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    background-color: #fff;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

#prevBtn:hover{
    background-color: #000000;
}

#nextBtn{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    background-color: #fff;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

#nextBtn:hover{
    background-color: #000000;
}

.arrowPrev, .arrowNext{
    width: 25px;
    transition-duration: .4s;
}

.control-btn{
    transition-duration: .4s;
}


.descriptionBox{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 2rem;
}

.titlePortada{
    margin-top: 6rem;
    font-family: "Glacial Indifference";
    font-size: 40px;
    height: 2em; /* Altura para 3 líneas de texto (1.5em por línea) */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Número de líneas visibles */
    -webkit-box-orient: vertical;
    line-height: 1em; /* Espaciado entre líneas */
    white-space: normal;
    position: relative;
    color: #fff;
    z-index: 10;
}

.category{
    margin-top: 1rem;
    font-size: 20px;
    color: #fff;
    font-family: "Brittany";
    margin-bottom: 2rem;
}

.buttonBox{
    position:relative;
    width: 150px;
    flex: 20%;
    z-index: 100;
    cursor: pointer;
}

.btnLeerMas{
    width:100%;
    height:50px;
    position:relative;
    color:#fff;
    background-color: transparent;
    letter-spacing:1px;
    border:none;
    font-size:12px;
    outline:none;
    font-family: "Glacial Indifference";
    cursor: pointer;
}

.linkPortadaBtn{
    display: inline-block;
}


/* FIRST BUTTON */

.border{
    position:absolute;
    background:none;
    transition:all .5s ease-in-out;
}

.buttonBox>.border:nth-of-type(1){
    top:0;
    left:0;
    border-left:1px solid white;
    border-top:1px solid white;
    width:30px;
    height:30px;
}

.buttonBox>.border:nth-of-type(2){
    bottom:0;
    right:0;
    border-right:1px solid white;
    border-bottom:1px solid white;
    width:30px;
    height:30px;
}

.buttonBox:hover .border{
    width:102%;
    height:105%;
}



.details{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.datePortada{
    font-family: "Glacial Indifference";
    font-size: 12px;
    color: #fff;
}

.authorPortada{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: "Glacial Indifference";
    font-size: 12px;
    color: #fff;
}

.boxAuthor{
    cursor: pointer;
    z-index: 100;
}

.author{
    text-decoration: none;
    color: #ffff;
}

.underlinedAuthor{
    width: 0;
    height: 1px;
    background-color: #fff;
    transition-duration: .4s;
}

.underlinedAuthor_Active{
    transition-duration: .4s;
    width: 100%;
}

.boxAvatarAuthorPortada{
    width:25px;
    height: 25px;
    border-radius: 50%;
    margin-left: 10px;
    overflow: hidden;
}

.avatarAuthorPortada{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*FEATURED POSTS*/
#content-1{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    height: auto;
    padding-bottom: 3rem;
}

.titleFeaturedPost{
    font-family: "Glacial Indifference";
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    letter-spacing: 2px;
}

.featuredPosts{
    margin-top: 2rem;
    display: inline-flex;
    justify-content: space-evenly;
    width: 90%;
    height: auto;
}

.featuredPost{
    position: relative;
    display: inline-flex;
    flex-direction: column;
    width: 30%;
    height: 550px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.boxAuthorFP{
    position: absolute;
    display: flex;
    justify-content: right;
    align-items: center;
    top: 15px;
    right: 0;
    width: 100%;
    cursor: pointer;
    z-index: 1;
}

.authorFP{
    display: flex;
    flex-direction: column;
    font-family: "Glacial Indifference";
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
}

.linkAuthorFP{
    text-decoration: none;
}

.underlinedAuthorFP{
    width: 0;
    height: 1px;
    background-color: #fff;
    transition-duration: .4s;
}

.underlinedAuthorFP_Active{
    transition-duration: .4s;
    width: 100%;
}

.boxAvatarAuthorFP{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
}

.avatarAuthorFP{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxFeaturedPostImg{
    width: 100%;
    height: 70%;
    overflow: hidden;
}

.imgFeaturedPost{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5);
}

.boxFeaturedPostDescription{
    width: 100%;
    height: 30%;
    padding: 1rem;
}

.titlePostFeatured{
    font-family: "Glacial Indifference";
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 4em; /* Altura para 3 líneas de texto (1.5em por línea) */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Número de líneas visibles */
    -webkit-box-orient: vertical;
    line-height: 1em; /* Espaciado entre líneas */
    white-space: normal;
    position: relative;
    color: #000000b2;
}


.buttonBoxFP{
    position:relative;
    width: 120px;
    flex: 20%;
    z-index: 100;
    cursor: pointer;
}

.btnLeerMasFP{
    width:100%;
    height:40px;
    position:relative;
    color:#000000b2;
    background-color: transparent;
    letter-spacing:1px;
    border:none;
    font-size:12px;
    outline:none;
    font-family: "Glacial Indifference";
}

.linkBtnFP{
    display: inline-block;
    margin-top: 1rem;
}


/* FIRST BUTTON */

.borderFP{
    position:absolute;
    background:none;
    transition:all .5s ease-in-out;
}

#buttonBoxFP>.borderFP:nth-of-type(1){
    top:0;
    left:0;
    border-left:1px solid rgb(0, 0, 0);
    border-top:1px solid rgb(0, 0, 0);
    width:30px;
    height:30px;
}

#buttonBoxFP>.borderFP:nth-of-type(2){
    bottom:0;
    right:0;
    border-right:1px solid rgb(0, 0, 0);
    border-bottom:1px solid rgb(0, 0, 0);
    width:30px;
    height:30px;
}

#buttonBoxFP:hover .borderFP{
    width:102%;
    height:105%;
}


.buttonBoxContent{
    position:relative;
    width: auto;
    flex: 20%;
    z-index: 100;
    cursor: pointer;
    padding: 10px;
}

.btnLeerMasContent{
    width:100%;
    height:40px;
    position:relative;
    color:#ffffff;
    background-color: transparent;
    letter-spacing:1px;
    border:none;
    font-size:12px;
    outline:none;
    font-family: "Glacial Indifference";
    background-color: #000000;
    padding: 0 5px;
}

.linkBtnContent{
    display: inline-block;
    margin-top: 1rem;
}


/* FIRST BUTTON */

.borderContent{
    position:absolute;
    background:none;
    transition:all .5s ease-in-out;
}

#buttonBoxContent>.borderContent:nth-of-type(1){
    top:0;
    left:0;
    border-left:1px solid rgb(0, 0, 0);
    border-top:1px solid rgb(0, 0, 0);
    width:30px;
    height:30px;
}

#buttonBoxContent>.borderContent:nth-of-type(2){
    bottom:0;
    right:0;
    border-right:1px solid rgb(0, 0, 0);
    border-bottom:1px solid rgb(0, 0, 0);
    width:30px;
    height:30px;
}

#buttonBoxContent:hover .borderContent{
    width:102%;
    height:105%;
}


/*POST CON MAS VISTAS - CONTENT 2*/
#content-2{
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    height: 650px;
    padding-bottom: 3rem;
}

.boxPostMostViews{
    display: inline-flex;
    width: 90%;
    height: 100%;
}


.boxImgPostMostViews{
    width: 55%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

.imgPostMostViews{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxDescriptionPostMostViews{
    width: 45%;
    height: 100%;
    padding-left: 3rem;
}

.detailsPMV{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Glacial Indifference";
    font-size: 14px;
}

.authorPostMostViews{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: "Glacial Indifference";
    font-size: 14px;
    color: #000;
}

.authorPMV{
    text-decoration: none;
    color: #000;
}

.underlinedAuthorPMV{
    width: 0;
    height: 1px;
    background-color: #000;
    transition-duration: .4s;
}

.underlinedAuthorPMV_Active{
    transition-duration: .4s;
    width: 100%;
}

.boxAvatarAuthorPMV{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 10px;
    overflow: hidden;
}

.avatarAuthorPMV{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categoryPMV{
    font-family: "Brittany";
    font-size: 25px;
}

.titlePMV{
    font-size: 35px;
    text-transform: uppercase;
    font-family: "Glacial Indifference";
    height: 5em; /* Altura para 3 líneas de texto (1.5em por línea) */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Número de líneas visibles */
    -webkit-box-orient: vertical;
    line-height: 1em; /* Espaciado entre líneas */
    white-space: normal;
    position: relative;
    color: #000000b2;
}

.descriptionPMV{
    font-family: "Glacial Indifference";
    font-size: 20px;
    margin-top: 1rem;
    height: 6em; /* Altura para 3 líneas de texto (1.5em por línea) */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* Número de líneas visibles */
    -webkit-box-orient: vertical;
    line-height: 1em; /* Espaciado entre líneas */
    white-space: normal;
    position: relative;
    color: #000000b2;
}

.buttonBoxPMV{
    position:relative;
    width: 180px;
    flex: 20%;
    z-index: 100;
    cursor: pointer;
}

.btnLeerMasPMV{
    width:100%;
    height:50px;
    position:relative;
    color:#000000;
    background-color: transparent;
    letter-spacing:1px;
    border:none;
    font-size:15px;
    outline:none;
    font-family: "Glacial Indifference";
}

.linkBtnPMV{
    display: inline-block;
    margin-top: 1rem;
}


/* FIRST BUTTON */

.borderPMV{
    position:absolute;
    background:none;
    transition:all .5s ease-in-out;
}

#buttonBoxPMV>.borderPMV:nth-of-type(1){
    top:0;
    left:0;
    border-left:1px solid rgb(0, 0, 0);
    border-top:1px solid rgb(0, 0, 0);
    width:30px;
    height:30px;
}

#buttonBoxPMV>.borderPMV:nth-of-type(2){
    bottom:0;
    right:0;
    border-right:1px solid rgb(0, 0, 0);
    border-bottom:1px solid rgb(0, 0, 0);
    width:30px;
    height:30px;
}

#buttonBoxPMV:hover .borderPMV{
    width:102%;
    height:105%;
}

/*Gallery content 3*/
#content-3{
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    height: auto;
    padding-bottom: 3rem;
    flex-wrap: wrap;
}

.titleGallery{
    display: flex;
    width: 90%;
    font-family: "Glacial Indifference";
    text-transform: uppercase;
    justify-content: left;
    font-size: 20px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    letter-spacing: 2px;
}

.boxGallery {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    justify-content: space-between;
}

.boxPicture{
    position: relative;
    width: 350px;
    overflow: hidden;
    height: 350px;
    margin-bottom: 2rem;
}

.imgGallery{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: .4s;
}

.imgGallery:hover{
    filter: brightness(.5);
}

.btnVerMasPicture{
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Brittany";
    font-size: 30px;
    transition-duration: .4s;
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.btnVerMasPicture:hover{
    letter-spacing: 4px;
}

.btnVerMasPicture_Active{
    top: 50%;
}

.arrowPicture{
    animation: arrowPicture infinite 1s forwards;
}

@keyframes arrowPicture{
    0%{
        margin-left: 0;
    }
    50%{
        margin-left: 10px;
    }
    100%{
        margin-left: 0;
    }
}



/*RESPONSIVE*/

@media (width: 1280px) {
    header{
        margin-top: 4rem;
    }
    .portadaBox{
        height: 500px;
    }

    .datePortada{
        font-size: 18px;
    }

    .author{
        font-size: 18px;
    }

    .boxAvatarAuthorPortada{
        width: 50px;
        height: 50px;
    }

    .titlePortada{
        margin-top: 3rem;
    }

    .btnLeerMas{
        font-size: 18px;
    }

    .featuredPost{
        width: 350px;
        height: 550px;
    }

    .boxFeaturedPostImg{
        height: 65%;
    }

    .boxFeaturedPostDescription{
        height: 35%;
    }

    .authorFP{
        font-size: 18px;
    }

    .boxAvatarAuthorFP{
        width: 50px;
        height: 50px;
    }

    .titlePostFeatured{
        font-size: 25px;
    }

    .btnLeerMasFP{
        font-size: 15px;
    }

    .buttonBoxFP{
        width: 150px;
    }

    .buttonBoxContent{
        margin-top: 4rem;
    }

    .btnLeerMasContent{
        font-size: 15px;
    }

    .descriptionPMV{
        font-size: 25px;
        height: 10em; /* Altura para 3 líneas de texto (1.5em por línea) */
        -webkit-line-clamp: 10; /* Número de líneas visibles */
    }

    .buttonBoxPMV{
        width: 200px;
    }

    .btnLeerMasPMV{
        font-size: 20px;
    }
}

@media (max-width: 1024px) and (height: 1366px) {
    .portadaBox{
        height: 500px;
    }

    .datePortada, .author{
        font-size: 18px;
    }

    .boxAvatarAuthorPortada{
        width: 50px;
        height: 50px;
    }

    .btnLeerMas{
        font-size: 18px;
    }

    .featuredPosts{
        flex-wrap: wrap;
    }

    .boxFeaturedPostImg{
        height: 60%;
    }

    .boxFeaturedPostDescription{
        height: 40%;
    }

    .featuredPost{
        width: 40%;
        height: 600px;
        margin-bottom: 2rem;
    }

    .authorFP{
        font-size: 18px;
    }

    .boxAvatarAuthorFP{
        width: 50px;
        height: 50px;
    }

    .titlePostFeatured{
        font-size: 27px;
    }

    .buttonBoxFP{
        width: 200px;
    }

    .btnLeerMasFP{
        font-size: 20px;
    }

    .buttonBoxContent{
        width: 400px;
    }

    .btnLeerMasContent{
        font-size: 22px;
        height: 70px;
    }

    .boxPostMostViews{
        height: 500px;
    }

    .boxImgPostMostViews{
        width: 45%;
    }

    .boxDescriptionPostMostViews{
        width: 55%;
    }

    .detailsPMV{
        flex-wrap: wrap;
    }

    .datePostMostViews, .authorPostMostViews{
        width: 100%;
        font-size: 20px;
        text-align: right;
    }

    .boxAuthorPMV{
        width: 100%;
    }

    .boxAvatarAuthorPMV{
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .categoryPMV{
        text-align: right;
    }

    .titlePMV{
        text-align: right;
    }

    .buttonBoxPMV{
        width: 250px;
    }
    
    .descriptionPMV{
        font-size: 22px;
    }

    .btnLeerMasPMV{
        font-size: 22px;
        color: #000000b2;
    }

    .boxGallery{
        justify-content: space-evenly;
    }

    .boxPicture{
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1024px) and (height: 600px){
    .portadaBox{
        height: 400px;
    }

    .titlePortada{
        margin-top: 3rem;
    }

    .category{
        margin: 0;
    }

    .buttonBox{
        margin-top: 1rem;
    }

    .featuredPost{
        height: 450px;
    }

    .boxFeaturedPostImg{
        height: 60%;
    }

    .authorFP{
        font-size: 15px;
    }

    .boxAvatarAuthorFP{
        width: 35px;
        height: 35px;
    }

    .boxImgPostMostViews{
        width: 40%;
    }

    .boxDescriptionPostMostViews{
        width: 60%;
    }

    .boxPostMostViews{
        height: 450px;
    }

    #content-2{
        height: auto;
        padding-bottom: 1rem;
    }

    .boxGallery{
        justify-content: space-evenly;
    }

}


@media (max-width: 912px) and (max-height: 1368px){
    .portadaBox{
        height: 700px;
    }

    .datePortada, .author{
        font-size: 18px;
    }

    .boxAvatarAuthorPortada{
        width: 50px;
        height: 50px;
    }

    .buttonBox{
        width: 200px;
    }

    .btnLeerMas{
        font-size: 20px;
    }

    .featuredPosts{
        flex-wrap: wrap;
    }

    .featuredPost{
        width: 45%;
        height: 600px;
        margin-bottom: 1rem;
    }

    .boxFeaturedPostImg{
        height: 65%;
    }

    .boxFeaturedPostDescription{
        height: 35%;
    }

    .buttonBoxFP{
        width: 200px;
    }

    .btnLeerMasFP{
        font-size: 20px;
    }

    .authorFP{
        font-size: 18px;
    }

    .boxAvatarAuthorFP{
        width: 50px;
        height: 50px;
    }

    .buttonBoxContent{
        width: 300px;
    }

    .btnLeerMasContent{
        font-size: 20px;
        height: 50px;
    }

    .boxPostMostViews{
        height: 450px;
    }

    .boxImgPostMostViews{
        width: 45%;
    }

    .boxDescriptionPostMostViews{
        width: 55%;
    }

    .detailsPMV{
        flex-wrap: wrap;
    }

    .datePostMostViews, .authorPostMostViews{
        display: flex;
        width: 100%;
        justify-content: right;
        font-size: 20px;
    }

    .categoryPMV{
        text-align: right;
    }

    .titlePMV{
        text-align: right;
    }
    
    .btnLeerMasPMV{
        color: #000000b2;
    }

    #content-2{
        height: auto;
    }

}

@media (max-width: 820px){
    .portadaBox{
        height: 500px;
    }

    .featuredPost{
        width: 90%;
        height: 600px;
        margin-bottom: 3rem;
    }

    .titlePostFeatured{
        font-size: 30px;
    }

    .boxPostMostViews{
        flex-wrap: wrap;
        height: 750px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
        padding: 2rem;
    }

    .boxImgPostMostViews{
        width: 100%;
        height: 50%;
    }

    .detailsPMV{
        margin-top: 1rem;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .datePostMostViews{
        justify-content: left;
    }

    .authorPostMostViews{
        justify-content: right;
    }

    .boxAvatarAuthorPMV{
        width: 50px;
        height: 50px;
    }

    .boxDescriptionPostMostViews{
        width: 100%;
        height: 50%;
        padding: 0;
    }

    .descriptionPMV {
        height: 3em;  
        -webkit-line-clamp: 3;
    }

    .btnLeerMasPMV{
        font-size: 25px;
    }

    .titleGallery{
        font-size: 30px;
    }

    .boxGallery{
        flex-wrap: wrap;
        justify-content: center;
    }

    .boxPicture{
        width: 600px;
        height: 600px;
    }

    .btnVerMasPicture{
        font-size: 50px;
    }

    .titlePMV{
        height: 3em; /* Altura para 3 líneas de texto (1.5em por línea) */
    
        -webkit-line-clamp: 3; /* Número de líneas visibles */
    }

}


@media (max-width: 768px) {
    header{
        margin-bottom: 10rem;
    }
    #nextBtn {
        top: 110%;
        right: 25%;
        width: 80px;
        height: 80px;
    }

    #prevBtn {
        top: 110%;
        left:25%;
        width: 80px;
        height: 80px;
        
    }

    #content-2{
        height: auto;
    }

}

@media (max-width: 540px) {

    .details{
        margin-top: -1rem;
    }
    .datePortada, .author{
        font-size: 15px;
    }

    .boxAvatarAuthorPortada{
        width: 40px;
        height: 40px;
    }

    .titlePortada {
        margin-top: 3rem;
        height: 4em;
        -webkit-line-clamp: 4;
    }

    .titleFeaturedPost{
        font-size: 25px;
    }

    .featuredPost{
        width: 90%;
        height: 600px;
        margin-bottom: 2rem;
    }

    .boxAvatarAuthorFP{
        width: 40px;
        height: 40px;
    }

    .datePostMostViews, .authorPMV{
        font-size: 15px;
    }

    .titlePMV{
        font-size: 25px;
    }

    .boxAvatarAuthorPMV{
        width: 40px;
        height: 40px;
    }

    .titleGallery{
        font-size: 25px;
    }

    .boxPicture{
        width: 400px;
        height: 400px;
    }

    .btnVerMasPicture{
        font-size: 30px;
    }
}

@media (max-width: 430px) {
    .featuredPost{
        width: 90%;
        height: 500px;
    }

    .titlePostFeatured{
        font-size: 20px;
    }
}

@media (max-width: 414px) {
    .details{
        flex-wrap: wrap;
    }

    .datePortada{
        width: 100%;
        text-align: right;
        font-size: 13px;
    }

    .authorPortada{
        width: 100%;
        justify-content: right;
        margin-top: 5px;
    }

    .author{
        font-size: 13px;
    }

    .boxAvatarAuthorPortada{
        width: 30px;
        height: 30px;
    }

    .buttonBox{
        width: 150px;
    }

    .category{
        font-size: 15px;
    }

    .btnLeerMas{
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .portadaBox{
        width: 90%;
    }


    .titleFeaturedPost{
        font-size: 20px;
    }

    .titleGallery{
        font-size: 20px;
    }

    .boxPicture{
        width: 300px;
        height: 300px;
    }

    .buttonBoxContent{
        width: 250px;
    }

    .btnLeerMasContent{
        font-size: 15px;
    }
}