.posts-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: flex-start;
    gap: 40px;
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .75s linear;
    transition: all .75s linear;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.post-tile:hover .post-thumbnail img  {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
}

.post-thumbnail .date {
    font-size: 10px;
    color: var(--secondary-color);
    padding: 4px 8px;
    position: absolute;
    top: 15px;
    right: 0;
    background: #fff;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}

.post-tile:hover .post-thumbnail .date {
    right: 15px;
}

.post-header {
    padding-top: 10px;
}

.post-header .posted_in,
.post-header .posted_in a {
    font-size: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.post-header .title {
    font-family: "Cabin", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
    text-transform: uppercase;
    margin: 10px 0;
}


.wp-paginate {
    padding: 60px 0;
    text-align: center;
}

.wp-paginate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wp-paginate li {
    border: 1px solid var(--secondary-color);
}

.wp-paginate li a,
.wp-paginate li .current,
.wp-paginate li .gap{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.wp-paginate li:hover a,
.wp-paginate li .current {
    color: #fff;
    background-image: linear-gradient(to right, #434548, #56585b, #434548, #434548);
}

@media (max-width: 992px) {
    .posts-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .posts-tiles {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}