/* SteelLand 2.0.11 — review form and author pages */
.author-profile {
    margin-bottom: 28px;
}

.author-profile__card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 22px;
    border: 1px solid #dce5eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(28, 52, 70, .07);
}

.author-profile__photo img {
    display: block;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #eef4f7;
}

.author-profile__main h1 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.15;
}

.author-profile__main p {
    margin: 8px 0;
}

.author-profile__muted {
    color: #6e7f8b;
}

.author-profile__bio {
    margin-top: 16px;
    padding: 18px 22px;
    border: 1px solid #dce5eb;
    border-radius: 14px;
    background: #fff;
    line-height: 1.65;
}

.author-materials {
    margin-bottom: 12px;
}

#CommentForm .sl-comment-form__identity {
    grid-column: 1 / -1;
    padding: 12px 14px;
    border-radius: 10px;
    background: #eef7fc;
    color: #354b5b;
    font: 14px/1.45 Arial, sans-serif;
}

#CommentForm .honeypot-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 760px) {
    .author-profile__card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
        text-align: center;
    }

    .author-profile__photo {
        display: flex;
        justify-content: center;
    }

    .author-profile__photo img {
        width: 112px;
        height: 112px;
    }

    .author-profile__main h1 {
        font-size: 24px;
    }

    .author-profile__bio {
        padding: 16px;
    }

    .author-materials .top_side_news {
        min-width: 0;
    }
}
