.comment-section {
    background-color: var(--default-gray);
    padding: 20px;
    border-radius: 8px;
}
.profile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
}
.profile-name {
    font-weight: bold;
    margin-top: 10px;
}
.profile-title {
    color: gray;
}
.comment-box {
    background-color: var(--default-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.comment-title {
    font-weight: bold;
}
.comment-date {
    text-align: right;
    color: gray;
}