﻿.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.profile-avatar {
    width: 256px;
    height: 256px;
    border-style: none;
    background: #ffffff00;
    padding: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-header-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    
}

    .profile-header-info h1 {
        margin: 0;
        font-size: 1.4rem;
        color: white;
        font-weight: 600;
    }

.profile-quote {
    margin: 0;
    color: #d0eeff;
    font-style: italic;
    font-size: 0.85rem;
}

.profile-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.8rem;
    color: #78cdf3;
    font-style: italic;
    margin-bottom: 1rem;
}

    .profile-meta span {
        display: flex;
        align-items: center;
        font-family: SubHeader;
        font-size: 0.9rem;
        gap: 0.4rem;
    }

.profile-sack{
    width: 128px;
    height: 128px;
}

.PHearts{
    font-size: 2rem !important;
    color:rgb(255, 0, 64);
}


.comments-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.comment-card {
    background-color: #2b2b51;
    border-radius: 2.3rem;
    corner-shape: squircle;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: Title;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 0%;
    border: 0px solid #dddddd00;
    background: #eeeeee00;
    flex-shrink: 0;
}

.comment-author-info {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0.2rem;
}

    .comment-author-info strong {
        /* color: #39f70a; */
        margin-top: 50%;
    }

.comment-date {
    font-size: 0.85rem;
    color: #777;
}

.comment-body {
    color: #ffffff;
    line-height: 1.5;
    white-space: pre-wrap;
    font-size: larger;
    font-family: SubHeader;
}

.comment-stats {
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 0.5rem;

}

.comment-tags {
    font-style: italic;
}


@media (max-width: 600px) {
    .profile-avatar {
        width: 64px;
        height: 64px;
        border-style: none;
        background: #ffffff00;
        padding: 2px;
        object-fit: cover;
        flex-shrink: 0;
    }
    .profile-sack{
        width: 64px;
        height: 64px;
    }
}