.blog-list-main {
    overflow: hidden;
}

.blog-intro-container {
    width: 100%;
    margin: 5vh 0;
    height: fit-content;
    position: relative;
    text-align: center;
}

.blogs-container {
    position: relative;
    width: 100%;
}

.blogs-wrapper {

    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


.blog-link {
    width: 80%;
    height: 55vh;
    overflow: hidden;
    margin-bottom: 5vh;
    background-color: #ffffff;
    border: 1px solid var(--gold-color);
    box-shadow:
        -2px 0 10px rgba(128, 128, 128, 0.3),
        /* Sombra a la izquierda */
        2px 0 10px rgba(128, 128, 128, 0.3),
        /* Sombra a la derecha */
        0 -2px 10px rgba(128, 128, 128, 0.3),
        /* Sombra arriba */
        0 2px 10px rgba(128, 128, 128, 0.3);
    /* Sombra abajo */
    max-width: 300px;
    padding: 1% 1.5%;
}

.blog-card {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 auto;

}

.blog-img-container {
    width: 100%;
    height: 45%;
}

/* .index-blog-img {
    height: 77%!important;
} */

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blog-info-container {
    width: 100%;
    height: 50%;
    margin-top: 2%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    row-gap: 5%;

}

.blog-author-date {
    color: #aaa;
    height: fit-content;
    font-size: 13px;
}

.blog-card-title {
    width: 100%;
    color: rgb(0, 0, 0);
    height: 25%;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.index-blog .blog-card-title{
    height: 30%;
}
.blog-card-description {
    color: #444;
    font-size: 12px;
}

.blog-card-button {
    width: fit-content;
    font-size: 12px;
    background: none;
    background-color: var(--violet-color);
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    color: #fff;
}



.arrow-container {
    position: absolute;

}


@media(min-width:768px) {

    .blog-link {
        height: 70vh;
    }
    .blog-img-container {
        height: 30%;
    }

    /* .blog-card-title{
        font-size: 1.3rem;
    } */

    .blog-card-description {
        font-size: 1rem;
    }
    .index-blog .blog-card-description{
        font-size: .9rem;
    }
    .blog-card-button {
        font-size: 12px;
    }

}


@media(min-width:1024px) {

    .blog-link {
        width: 32%;
        max-width: 350px;
        height: 70vh;
    }

    .index-blog {
        height: 50vh !important;
    }

    .blog-img-container {
        height: 40%;
    }

    .blog-card-button {
        padding: .5rem 1.5rem;
        margin: 0;
    }
}