.site-container .archive-banner {
    flex-direction: column-reverse;
    gap: 2px;
    border-bottom: none;
    background-color: #8b8b8b19;
    padding: 20px;
    border-radius: 5px
}

.posts-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    margin-bottom: 20px;
}

.posts-card a {
    text-decoration: none
}

.post-preview {
    display: flex;
    flex-direction: column;
    position: relative;
}

.post-featured-image {
    height: 250px;
    background-color: var(--link-color);
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    transition: filter ease-in 0.25s
}

.post-featured-image:hover {
    filter: brightness(0.6);
}

.post-category {
    text-transform: uppercase;
    color: white;
    font-size: 10px;
    letter-spacing: 0.4px;
    padding: 2px 3px;
    background-color: #00000069;
    position: absolute;
    z-index: 44;
    right: 10px;
    top: 10px;
    border-radius: 4px
}

.post-details {        
    padding: 10px 0;

}

.post-meta {
    color: var(--body-text-color);
    font-size: 11px;       
    margin: 10px 0;
}

.archive-posts .author, .post-date {
    opacity: 0.8}

.post-meta, .post-author {
    display: flex;
    align-items: center;
}

.post-meta a {
    color: inherit;
}

.divider {
    margin: 0 10px;
}

h3.post-title {
    margin: 0 0 5px;
    font-size: 26px;
    line-height: 1.2
}

h3.post-title a {
    color: inherit
}

h3.post-title a:hover {
    color: var(--link-hover-color);
    text-decoration: underline 1px
}

.post-excerpt {
    font-size: 15px;
    color: var(--body-text-color);
    line-height: 1.2em;
}

.author-image img {
    border-radius: 50%;
    margin-right: 3px;
}

.pagination {
    gap: 15px;
    font-size: 17px;
    font-weight: 500;
    justify-content: center;
}

.pagination .page-numbers {
    height: 40px;
    width: 40px;
}

.pagination a {
    border: solid 1px #8c8c8c31;
}

.pagination .current, .pagination a:hover {
    background-color: var(--header-background-color);
    color: var(--menu-text-color);
    border-color: var(--header-background-color)
}

.load-more {
    text-align: center;
}

.load-more-button {
    border: none;
    padding: 15px 25px;
    cursor: pointer
}

@media (max-width:768px) {

    .posts-card {
        grid-template-columns: repeat(2, 1fr);
    }
    .post-excerpt {
        font-size: 14px;
    }

    .post-featured-image {
        height: 220px;
    }

    .post-title {
        line-height: 1.1;
    }
}

@media (max-width:480px) {
    .posts-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px 25px;
    }

    .post-featured-image {
        height: 200px;
    }

    .pagination .page-numbers {
        height: 35px;
        width: 35px;
    }
}