.author-profile-hero .inner {
    text-align: center;
}

.author-profile-hero .inner h1 {
    margin-left: auto;
    margin-right: auto;
}

.blog-inner-sidebar-related .blog-sidebar-related-item span {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.blog-inner-sidebar-related .blog-sidebar-related-item strong {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: var(--ink);
}

.blog-inner-sidebar-related .blog-sidebar-related-item small {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(53, 52, 53, .6);
}

/* Author profile card (main column) */
.author-profile-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: inset 0 0 0 1px rgba(215, 204, 209, .4);
}

.author-profile-card__row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.author-profile-card__visual {
    position: relative;
    flex: 0 0 220px;
    min-width: 0;
}

.author-profile-card__dots {
    position: absolute;
    top: -12px;
    left: -12px;
    z-index: 0;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(229, 6, 135, .4) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    pointer-events: none;
}

.author-profile-card__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 5px;
    background: #dcd7da;
}

.author-profile-card__copy {
    flex: 1;
    min-width: 0;
}

.author-profile-card__name {
    margin: 0 0 6px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--maroon);
}

.author-profile-card__role {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(53, 52, 53, .62);
}

@media (max-width: 860px) {

    .author-profile-card {
        padding: 26px 22px;
    }

    .author-profile-card__row {
        gap: 24px;
    }

    .author-profile-card__visual {
        flex-basis: 180px;
    }

    .author-profile-card__name {
        font-size: 26px;
    }
}

@media (max-width: 640px) {

    .author-profile-card {
        padding: 24px 18px;
    }

    .author-profile-card__row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 22px;
    }

    .author-profile-card__visual {
        flex: none;
        width: 100%;
        max-width: 200px;
    }

    .author-profile-card__role {
        margin-bottom: 14px;
    }

    .author-profile-card .blog-inner-sidebar-author-socials {
        justify-content: center;
    }
}

