/* --- Обёртка блока комментариев и формы --- */
.comment-respond, .commentlist, .comment {
    width: 100%;
    background: #EEEFF1;
    border-radius: 16px;
    padding: 30px;
    margin: 2rem 0;
    font-family: 'Hind Madurai', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #252935;
}
@media (min-width: 600px) {
.comment-respond, .commentlist, .comment {
    padding: 50px;
}
}

/* --- Заголовки --- */
#comments h3,
#reply-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 1.2 !important;
  color: #252935;
  margin-bottom: 24px;
}

/* --- Список комментариев --- */
.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  padding-top: 24px;
  margin-top: 24px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #252935;
}

.comment-author img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.comment-meta {
  font-size: 13px;
  color: #029775;
  margin-bottom: 8px;
  margin-top: 8px;
}

.comment-body p {
  margin: 0;
  padding-top: 8px;
  line-height: 1.6;
}

/* --- Ссылка "Ответить" --- */
.comment-reply-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #02B68D;
  text-decoration: none !important;
  font-weight: 500;
  border-radius: 16px;
}

.comment-reply-link:hover {
  text-decoration: underline !important;
}

/* --- Форма --- */
.comment-form label {
  display: block;
  margin-bottom: 8px;
  color: #252935;
  font-weight: 500;
}

.comment-form textarea {
  width: 100%;
  border: 1px solid #CED4DA;
  border-radius: 16px;
  padding: 24px;
  font-size: 14px !important;
  font-family: 'Hind Madurai', sans-serif !important;
  background: #fff;
  resize: vertical;
  color: #252935;
}

.comment-form .form-submit {
  margin-top: 24px;
}

.comment-form .submit {
  background-color: #02B68D;
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px !important;
  font-family: 'Hind Madurai', sans-serif !important;
  transition: background-color 0.2s ease;
}

.comment-form .submit:hover {
  background-color: #029775;
}

/* --- Logged-in notice --- */
.logged-in-as {
  font-size: 13px;
  color: #252935;
  margin-bottom: 24px;
}

.required-field-message {
  font-size: 12px;
  color: #CED4DA;
}