.blog-container {
   
    width: 100%;
    height: fit-content;
    padding: 1rem;
   
}

.blog-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: fit-content;
     flex-wrap: wrap;
    
}

.blog-item {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: calc(100vw / 4);
    min-width: 300px;
    display: flex;
   
    flex-direction: column;
    transition: 0.5s ease;

}

.blog-item:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: translateY(-7px);
    transition: 0.5s ease;
}

.blog-item a {
    text-decoration: none;
    color: black!important;
}

.blog-thumbnail {
    width: 100%;
}

.blog-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.blog-resume {
    padding: 5px 1rem 5px 1rem;
}


                                  /* blog single */
.single-post-container{
    background-color: rgba(222, 220, 220, 0.512);
    width: 90%;
    max-width: 1200px;
    height: fit-content;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.single-post-title {
    font-size: 45px;
    text-align: center;
}

.single-post-thumbnail {
    width: 90%;
}
.single-post-thumbnail img {
    width: 100%;
    height: auto;
}

.single-post-content {
    width: 90%;
}



/* version mobile */

@media (max-width: 862px) {
.single-post-title {
    font-size: 25px;
    text-align: center;
}
}

