/* Blog Comments Section Styles */
.comments-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.comments-section h3 {
  color: #222;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 22px;
}

.comment-form {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.comment-form h4 {
  color: #222;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  color: #555;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #555;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f22728;
  box-shadow: 0 0 0 3px rgba(242, 39, 40, 0.1);
}

.btn-submit {
  background-color: #f22728;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #d91f20;
}

.alert {
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Comments List */
.comments-list {
  margin-top: 30px;
}

.comment {
  background: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #f22728;
  border-radius: 4px;
  margin-bottom: 20px;
}

.comment-author {
  font-weight: 600;
  color: #222;
  font-size: 15px;
  margin-bottom: 5px;
}

.comment-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.comment-text {
  color: #555;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 10px;
}

.reply-btn {
  background-color: #f22728;
  color: white;
  padding: 6px 15px;
  border: none;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.reply-btn:hover {
  background-color: #d91f20;
}

.reply-form {
  display: none;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 10px;
}

.reply-form.show {
  display: block;
}

.replies {
  margin-left: 30px;
  margin-top: 20px;
}

.reply {
  background: #ffffff;
  border-left: 3px solid #ddd;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.no-comments {
  color: #999;
  text-align: center;
  padding: 30px;
  font-style: italic;
}

