.blog-posts {
    padding: 60px 0;
    background: var(--theme-semiwhite);
}
.blog-posts h2 {
    text-align: center;
    text-transform: uppercase;
}

.blog-posts .posts {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}
.blog-posts .post-item {
    background: var(--White) !important;
    color: var(--Black);
    transition: 0.3s;
}
.blog-posts .post-item:hover {
    background: var(--Buttons) !important;
    color: var(--White);
}

.blog-posts .post-item img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

.blog-posts .post-info {
    padding: 30px;
}
.blog-posts .post-info .post-title {
    color: var(--Buttons);
    margin-bottom: 10px;
    transition: 0.3s;
}
.blog-posts .post-item:hover .post-title {
    color: var(--White);
}
.blog-posts .post-info .post-description {
    margin-bottom: 10px;
    font-size: calc(1rem - 2px);
}
.blog-posts .post-info .post-arrow {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -10px;
    margin-right: -10px;
}
.blog-posts .post-info .post-arrow span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 30px;
    width: 30px;
    aspect-ratio: 1/1;
    background: var(--Buttons);
    border-radius: 1000px;
    transition: 0.3s;
}
.blog-posts .post-item:hover .post-arrow span {
    background: var(--White);
}
.blog-posts .post-info .post-arrow span i {
    color: var(--White);
    transition: 0.3s;
}
.blog-posts .post-item:hover .post-arrow span i {
    color: var(--Buttons);
}

@media screen and (max-width: 991px) {
    .blog-posts {
        padding: 50px 0;
    }
    .blog-posts .posts {
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-posts .post-info {
        padding: 20px;
    }
    .blog-posts .post-info .post-arrow {
        margin-right: -5px;
        margin-bottom: -5px;
    }
}

@media screen and (max-width: 575px) {
    .blog-posts .posts {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}