.blog-list-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 65px;
    grid-row-gap: 65px;
    width: 80vw;
    margin: 10vh 10vw 5vh 10vw
}

.blog-item {
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    cursor: pointer;
}

.blog-item-img-container {
    margin-bottom: 2vh;
}

.blog-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-img:hover {
    transform: scale(1.02);
}

.blog-title {
    font-family: "JosefinSans-Regular";
    font-size: 1.6rem;
    margin-bottom: 1.25vh;
}

.blog-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.blog-info > a {
    color: var(--color1);
}

.blog-info > a:active {
    color: var(--color1);
}

.blog-info > a:visited {
    color: var(--color1);
}

.blog-info > a:hover {
    color: var(--color3);
}

/* ECRAN 2K */
@media screen and (min-width: 2500px) and (min-height: 1400px) {
    .blog-title {
        font-family: "JosefinSans-Regular";
        font-size: 2.1rem;
        margin-bottom: 1.5vh;
    }
}

/* ECRAN 4K */
@media screen and (min-width: 3500px) and (min-height: 2000px) {
    .blog-title {
        font-family: "JosefinSans-Regular";
        font-size: 3rem;
        margin-bottom: 1.5vh;
    }
}

/* ECRAN +1920x1080 */
@media screen and (max-width: 1920px) and (max-height: 1080px) {
    
}

/* ECRAN 17 pouces large */
@media screen and (max-width: 1680px) and (max-height: 1100px) {

}

/* ECRAN 13 à 15 pouces standard */
@media screen and (max-width: 1400px) and (max-height: 1050px) {

}


/* TRES GRAND MOBILE 1050x1370 */
@media screen and (max-width: 1050px ) and (max-height: 1370px ) {
    .blog-info {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .blog-item-img-container {
        margin-bottom: 1vh;
    }
    .blog-title {
        font-family: "JosefinSans-Regular";
        font-size: 1.6rem;
        margin-bottom: 1vh;
    }
    .blog-list-section {
        grid-column-gap: 30px;
        grid-row-gap: 30px;
    }
    .blog-list-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(auto, 1fr);
        grid-column-gap: 65px;
        grid-row-gap: 65px;
        width: 80vw;
        margin: 10vh 10vw 5vh 10vw
    }
}

/* GRAND MOBILE 500x900 */
@media screen and (max-width: 500px ) and (max-height: 1000px ) {
    .blog-list-section {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(auto, 1fr);
        grid-column-gap: 65px;
        grid-row-gap: 65px;
        width: 80vw;
        margin: 10vh 10vw 5vh 10vw
    }
}

/* MOYEN petit 700 */
@media screen and (max-width: 400px ) and (max-height: 750px ) {

}