.is-vspaced {
    padding: 3rem 0;
}

.post-author-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-author-avatar {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.post-author-name,
.post-author-name:visited {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
    background-image: none;
    text-decoration: underline;
}

.post-author-name:hover {
    background-image: none;
    background-size: 0;
    text-decoration: underline;
}

.post-author-bio {
    font-size: 0.88rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

/* Блок "Читайте также" */
.related-post-card {
    display: block;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 .5em 1em -.125em rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.02);
    overflow: hidden;
    height: 100%;
    text-decoration: none;
    background-image: none;
    transition: box-shadow 0.2s;
}

.related-post-card:hover {
    box-shadow: 0 1em 2em -.125em rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.04);
    background-image: none;
}

.related-post-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.related-post-img-placeholder {
    background: linear-gradient(135deg, #d0d0d0 0%, #ebebeb 100%);
}

.related-post-body {
    padding: 12px 16px 16px;
}

.related-post-cat {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--lime-green);
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 4px;
}

.related-post-title {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--very-dark-gray);
    line-height: 1.3;
    margin: 0;
}

div.has-background-primary.has-text-light {
    background-color: #0b4731!important;
    text-align: center;
}