
/* COMMENT SECTION CONTAINER */
.description__comments {
    margin-top: 40px;
}

/* TITLE */

.right-sidebar__title::before {
    content: '💬'; /* Comment icon */
    margin-right: 10px; /* Spacing */
}

.right-sidebar__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-main);
    align-items: center;
}

.right-sidebar__title::before {
    content: '💬'; /* Comment icon */
    margin: 0px 0px 0px 10px; /* Spacing */
}

.right-sidebar__titles {
    font-size: 24px;
    font-weight:bold;
    margin-bottom: 20px;
    color: var(--text-main);
    align-items: center;
}
/* COMMENT LIST */


.comment-list>.comment {
    padding: 0.9rem;
    list-style: none;
  border-top: 1px solid var(--border-color);
}

.comment-list:not(:last-child) {
    margin-bottom: 2rem;
}


.comment-list ul {
    list-style: none;
    border-bottom: 2px solid var(--border-color);
}

.comment-body {
    margin-bottom: 1rem;
    font-size: 14px !important;
  color: var(--text-main);
}

.comment-body img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: 1rem;
}


.comment-body cite {
    margin-right: 0.7rem;
}

.comment-list li>ul {
    margin-left: 3rem;
}

.comment-author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  color: var(--primary);
}

.commentmetadata {
    display: flex;
    justify-content: flex-end;
    margin-top: -3rem;
  font-size: 12px; /* Smaller font for date */
    color: #999; /* Lighter color for date */

}


.comment-body p {
    margin-top: 1.5rem;
    margin-right: 5rem;
    text-align: justify;
}


.comment-reply-link {
    display: flex;
    justify-content: flex-end;
    margin-top: -1.5rem;
    text-transform: uppercase;
    font-weight: 600;
}


.reply a {
    color: var(--button);
    font-weight: bold;
}


.comment-list .children {
    background-color: #f0f2f5;
    padding: 1rem;
    border-radius: 2rem;
}

.comment-list ol:not(:last-child) {
    margin-bottom: 2rem;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-navigation a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
}

/* COMMENT FORM */
.comment-respond {
    margin-top: 25px;
    padding: 20px;
    background-color: var(--bg-card);
    border: 1px solid #ddd;
    border-radius: 10px;
   
}

/* FORM GROUP */
.form__group {
    margin-bottom: 15px;
  
 
}

/* INPUT FIELDS */
.form__input {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #f5f5f5;
}

.form__input:focus {
    border-color: #1877f2;
    background: #fff;
}

/* LABEL */
.form__label {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* CHECKBOX */
.comment-cookies {
    font-size: 13px;
    color: #555;
}

/* SUBMIT BUTTON */
.btn--primary {margin-top: 20px;
    background: #222222;
    border: none;
    padding: 12px 22px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn--primary:hover {
    background: #0056b3;
}



