.site-container .archive-banner {
    flex-direction: row;
    justify-content: space-between;
}

.magazine {
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 100px;        
    margin: 0 auto 30px;
}

.post-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.meta-extra {
    font-size: 0.77rem;        
    justify-content: center;
    display: flex;
    gap: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 5px 0;
    flex-wrap: wrap
}

.meta-extra  {
    opacity: 0.8
}


.meta-extra a {
    color: inherit;
    text-decoration: none;
}

.meta-extra a:hover {
    color: var(--link-hover-color);
    opacity: 1
}

.meta-extra .divider {
    opacity: 0.5
}

.post-featured-image {
    width: 100%;
    height: 500px;
    background-position: center;
    background-size: cover;
    background-color: var(--link-color);
    margin: 20px 0;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.post-title a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease-out;
}

.post-title a:hover {
    color: var(--link-hover-color)
}

.post-title a:hover::after {
    transform: scaleX(1);
}

.post-title {
    text-align: center;
    margin: 0
}

.post-excerpt {
    margin: 0 0 10px;
}

.pagination {
    gap: 12px;
    justify-content: center;
}

.pagination .page-numbers { 
    height: 40px;
    width: 40px;
    
}

.pagination .current {
    font-weight: 800;
    border-color: inherit;
    box-shadow: -1px 2px 8px #00000013;
    border-bottom: 3px solid;
}

.pagination a {
    box-shadow: -1px 2px 8px #00000013;
    border-bottom: 3px solid #0000;
    transition: border 0.6s ease, color 0.2s ease;
}

.pagination a:hover {
    border-bottom: 3px solid;
}

a.read-more-btn {
    text-decoration: none;
    align-self: flex-start
}

a.read-more-btn:hover {
    text-decoration: underline 1px
}

.post-preview i.pre {
    font-size: 20px;
    opacity: 0.4;
    margin-bottom: 10px
}

.load-more {        
    text-align: center;
}

.load-more-button {
    border: solid 2px;
    padding: 15px 25px;
    background: #0000;
    border-radius: 4px;
    color: inherit
}

.load-more-button:hover {
    border-color: var(--button-background-hover-color);
}

@media (max-width:480px) {
    .meta-extra {            
        font-size: 0.65rem;
        gap: 8px;
        letter-spacing: 0;
    }

    .post-featured-image {
        height: 200px;
        margin: 10px 0;
    }

    .site-container .archive-banner {
        flex-direction: column;
        justify-content: revert
    }
}