/* Детальная запись блога: аватар комментария буквой, отступ ответов */
.comments-item__row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comments-item__img--avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
}

.comments-item__replies {
    width: 100%;
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.comments-item__replies > .comments-item {
    margin-top: 0.75rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.comments-item__replies > .comments-item:first-child {
    margin-top: 0;
}

.main__related.related .related__inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.main__related.related .related__card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main__related.related .related__card .card__inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.main__related.related .related__card .card__description {
    flex: 1 1 auto;
}

.main__related.related .related__card .card__list.card-list {
    margin-top: auto;
}
