.post-banner {
    padding: var(--grid-gap) 0;
}

.post-banner_container {
    height: 300px;
    border-radius: 20px;
    
    max-width: 1400px;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.post-content_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.post-wrapper {
    grid-column: 3 span;
}

.post {
   max-width: 100%;
   background-color: white;
   padding: 30px;
   border-radius: 25px;
   margin-bottom: var(--grid-gap);
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.post-meta .post_category {
    border-radius: 9px;
    background-color: var(--light-green-color);
    color: var(--bright-blue-color);
    padding: 7px;
    font-size: 13px;

    z-index: 5;
}

.post-meta .post_date {
    font-size: 11px;
}

.post-content {
    padding-bottom: 80px;
}

.post_title {
    font-size: 36px;
}

.post p {
    margin: 0;
    margin-bottom: 20px;
}

.post img {
    margin-bottom: 20px;
    display: inline-block;
    object-fit: cover;
    border-radius: 20px;
}

.post-links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 100%;
}

.post-links_link {
    border-radius: 20px;
    background: var(--accent-color);
    border: none;
    padding: 15px 35px;
    color:var(--bright-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.link_icon_prev, .link_icon_next {
    height: 25px;
}

.link_icon_next {
    margin-left: 10px;
}

.link_icon_prev {
    margin-right: 10px;
}