article.post.type-post {
    background: white;
    padding: 50px 40px;
    border-radius: 4px;
}

.single-post .post-wrapper {
    display: grid;
    grid-template-columns: auto 25%;
    gap: 20px;
    margin-bottom: 60px;
}

.single-post .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
    border-radius: 4px;
    margin-bottom: 30px;
    border: solid 1px var(--border-color);
    padding: 5px;
}

.post-date {
    margin-bottom: 20px;
    opacity: .5;
}

.related-posts {
    padding: 30px;
    background: white;
    border-radius: 4px;
}

.related-posts .related-posts-list a {
    text-decoration: none;
    color: var(--black-color);
    display: flex;
    flex-direction: column;
    font-weight: 700;
    border-bottom: solid 1px var(--border-color);
    padding: 15px 0;
    transition: .2s ease;
}

.related-posts .related-posts-list a:hover {
    opacity: .8;
}

.related-posts .related-posts-list a:first-child {
    padding-top: 0;
}

.related-posts .related-posts-list a:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-posts .related-posts-list a .read-more {
    margin-top: 10px;
    font-weight: 500;
}

span.related-post-date {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: normal;
    opacity: .7;
}

.post-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.post-wrapper table tr td {
    padding: 10px;
}


.post-wrapper table tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.post-wrapper table tr:nth-child(even) {
    background-color: #fff;
}

.see-all-posts {
    display: flex;
    justify-content: center;
    align-items: center;
}

.see-all-posts a {
    text-decoration: none;
    font-weight: bold;
    padding: 20px 10px;
    color: var(--black-color);
    opacity: .5;
    transition: .2s ease;
}

.see-all-posts a:hover {
    opacity: 1;
}

ul.wp-block-list {
    line-height: 160%;
    padding-left: 1em;
}

.wp-block-button__link {
    display: flex;
}

@media (max-width:1100px) {
    .single-post .post-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width:767px) {
    article.post.type-post {
        padding: 30px 20px;
    }

    .single-post .featured-image img {
        max-height: 350px;
    }
}