/* Author Box Shortcode — стили подключаются только на страницах с шорткодом [author_box] */

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 28px 0;
    padding: 24px 0 0;
    border-top: 1px solid #e5e5e5;
}

.author-box__ava img {
    border-radius: 50%;
    display: block;
    object-fit: cover;
}

.author-box__body {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.author-box__author {
    font-weight: 700;
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.author-box__author em {
    font-weight: 400;
    font-style: italic;
    color: #8a8a8a;
    font-size: 15px;
    margin-left: 4px;
}

.author-box__description p {
    margin: 0;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.5;
}

.author-box__description a {
    color: #3b82f6;
    text-decoration: none;
}

.author-box__description a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .author-box {
        gap: 14px;
    }
}
