/* Аватар из карточки эксперта */
.rc-expert-avatar {
    --rc-avatar-size: 72px;
    display: inline-block;
    width: var(--rc-avatar-size);
    height: var(--rc-avatar-size);
    min-width: var(--rc-avatar-size);
    overflow: hidden;
    border-radius: 50%;
    vertical-align: middle;
}

.rc-expert-avatar__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

/* Картинка, созданная кнопкой «Круглое фото эксперта» в редакторе записи */
img.rc-round-expert-photo {
    border-radius: 50% !important;
    object-fit: cover;
}


span.rc-round-expert-photo-wrap {
    display: inline-block;
    overflow: hidden;
    border-radius: 50% !important;
    line-height: 0;
    vertical-align: top;
}

span.rc-round-expert-photo-wrap > img.rc-round-expert-photo {
    display: block;
    max-width: none !important;
}


/* v1.7: устойчивое круглое фото без дополнительной обертки */
img.rc-round-expert-photo {
    display: inline-block !important;
    width: 150px;
    height: 150px;
    max-width: none !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    vertical-align: top;
}


/* v1.8: тема сайта не должна превращать круг в овал */
img.rc-round-expert-photo {
    display: inline-block !important;
    width: 150px !important;
    height: 150px !important;
    min-width: 150px !important;
    min-height: 150px !important;
    max-width: 150px !important;
    max-height: 150px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    clip-path: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
    object-fit: cover !important;
    box-sizing: border-box !important;
}
