*{
    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");
}


.titleSearch{
    font-family: "Glacial Indifference";
    font-size: 30px;
    color: #000000bb;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
}

.noResults{
    font-family: "Glacial Indifference";
    font-size: 20px;
    color: #000000bb;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
}

.boxResultsBlogs{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 2rem;
}

.blogResult{
    display: flex;
    flex-wrap: wrap;
    width: 300px;
    height: 500px;
    padding: 2rem 1rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.boxImgBlog{
    display: flex;
    width: 100%;
    height: 60%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
}

.imgBlog{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxDescriptionBlog{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 40%;
    font-family: "Glacial Indifference";
}

.dateBlog{
    display: flex;
    margin-top: 10px;
    font-size: 12px;
    color: #000000b4;
}

.titleBlog{
    width: 100%;
    font-size: 25px;
    height: 3em; /* Altura para 3 líneas de texto (1.5em por línea) */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Número de líneas visibles */
    -webkit-box-orient: vertical;
    line-height: 1em; /* Espaciado entre líneas */
    white-space: normal;
}

.buttonBox{
    position:relative;
    width: 100px;
    flex: 20%;
    z-index: 100;
    cursor: pointer;
}

.btnLeerMas{
    width:100%;
    height:30px;
    position:relative;
    color:#000000;
    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 rgb(0, 0, 0);
    border-top:1px solid rgb(0, 0, 0);
    width:30px;
    height:30px;
}

.buttonBox>.border: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;
}

.buttonBox:hover .border{
    width:102%;
    height:105%;
}

.boxResultImages{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}


.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;
    }
}