.post-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px
}

.post-preview {
    background-color: #ffffff9c;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 20px #0000000a;
    transition: box-shadow 0.4s ease-out;
}

.post-preview:hover {
    box-shadow: 0 12px 15px #00000015;

}

.post-meta {
    display: flex;
}

.post-meta span {
    font-size: 0.84rem;        
    font-weight: 600;
    text-transform: uppercase;     
    padding: 5px 10px;
}

.post-date {           
    background-color: white;
}

.post-category {
    color: white;
    background-color: var(--link-color);
}

.post-category a {
    color: white;
    text-decoration: none;  
}

.post-featured-image {
    height: 220px;
    background-color: var(--link-color);
    background-size: cover;
    background-position: center;
}


.post-title h3 {
    font-size: 1.11rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
    font-family: inherit;
}

.post-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--link-hover-color);
}

.pagination {
    justify-content: center;
    gap: 12px
}

.pagination .page-numbers {
    height: 40px;
    width: 40px;
    font-size: 0.95rem;
    text-decoration: none;
    color: inherit;
}

.pagination .current {
    background-color: var(--button-background-color);
    color: var(--button-text-color);
}

.pagination a:hover {
    background-color: var(--button-background-hover-color);
    color: var(--button-text-hover-color);
}

.pagination a {
    background-color: #00000009;
}

.load-more {
    text-align: center;
}

.load-more-button {
    border: none;
    padding: 12px 20px;
    cursor: pointer
}

@media (max-width: 768px) {
    .post-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px
    }
}

@media (max-width: 480px) {
    .post-archive-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
}