.site-container .archive-banner {
    flex-direction: row;
    justify-content: space-between;
}

.post-overlay {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.post-preview {
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-color: var(--link-color);
    border-radius: 10px;
}

.post-details {
    padding: 15px;
    min-height: 36%;
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
}

.post-category {
    background-color: #ffffffea;
    color: #000000;
    font-size: 0.75rem;
    padding: 1px 5px;
    border-radius: 3px;
    margin-bottom: 3px;
    font-weight: 500
}

.post-title {
    line-height: 1.1;
    margin: 0;
    font-size: calc(var(--h3-font-size-desktop) / 1.3);
}

.post-title a {
    color: #fcfcfcff;
    text-decoration: none;
}

.post-title a:hover {
    text-decoration: underline 1px
}

.post-excerpt {
    color: #e2e2e2;
    font-size: 0.824rem;
    margin: 5px 0 0 ;
}

.load-more {
    margin-top: 40px;
    text-align: center;
}

#load-more-posts {
    padding: 12px 35px;
    border: none;
    border-radius: 3px
}

.pagination {
    display: flex;
    gap: 15px;
    justify-content: center
}

.pagination .page-numbers {
    height: 40px;
    width: 40px;
    border-radius: 4px;
}

.pagination a {
    box-shadow: -3px 3px 6px #00000013;
    color: inherit
}

.page-numbers.current {
    background-color: var(--button-background-color);
    color: var(--button-text-color);
    box-shadow: -3px 3px 6px #00000013;
}

a.page-numbers:hover {
    background-color: var(--button-background-hover-color);
    color: var(--button-text-hover-color)
}

@media (max-width:768px) {
    .post-overlay {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .post-preview {
        height: 390px;
    }

    .post-title {
        font-size: calc(var(--h3-font-size-tablet) / 1.1);
    }
}

@media (max-width:480px) {
    .post-overlay {
        grid-template-columns: 1fr;
    }

    .pagination {
        gap: 10px;
    }

    .post-title {
        font-size: calc(var(--h3-font-size-mobile) / 1.1);
    }

    .post-preview {
        height: 360px;
    }

    .post-details {
        min-height: unset;
    }

    .site-container .archive-banner {
        flex-direction: column;
        justify-content: revert
    }
}