/**
 * Estilos para avatares en comentarios del blog
 * Avatares: círculos con iniciales + color único por usuario
 */

.comment-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #999;
    color: white;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    user-select: none;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.comment-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comment-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 0;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.comment-author {
    font-weight: 600;
    color: #333;
}

.comment-date {
    color: #666;
    font-size: 12px;
}

.comment-text {
    color: #444;
    line-height: 1.6;
    word-break: break-word;
}

@media (max-width: 768px) {
    .comment-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .comment-wrapper {
        gap: 10px;
        margin-bottom: 16px;
    }
}
