.page ul {
  margin-top: 16px;
  margin-bottom: 32px;
}
.page ul li {
  line-height: 1.75rem;
}

.sidebar {
  width: 100%;
}

.sidebar ul {
  margin-top: 16px;
  margin-bottom: 32px;
}
.sidebar ul li {
  line-height: 1.75rem;
}

.single ul {
  margin-top: 16px;
  margin-bottom: 32px;
}
.single ul li {
  line-height: 1.75rem;
}

.wp-block-latest-posts__post-title {
  font-size: 1.75rem;
  font-weight: lighter;
}

.accordion-menu-wrapper .sub-menu {
    display: none;
    margin-left: 20px;
}


.accordion-menu-wrapper .menu-item-has-children > a {
    cursor: pointer;
}

.expand-btn, .collapse-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1em;
  margin-left: 5px;
  color: inherit;
}

.menu-item-has-children .sub-menu {
  display: none;
}

.comments-area {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.comments-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-list .comment {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
}

.comment-author {
  font-weight: bold;
}

.comment-meta {
  font-size: 14px;
  color: #999;
}

.comment-content {
  margin-top: 10px;
}

.no-comments {
  margin-top: 20px;
  font-style: italic;
}

.comment-author.vcard {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.comment-author .fn {
  color: orange;
}

.comment-author .says {
  font-weight: lighter;
}

.comment-author.vcard * {
  display: inline-block;
}

.comment-meta a {
  display: block;
  color: white;
  pointer-events: none;
  margin: 12px 0 -16px 0;;
  opacity: 0.2;
}
.comment-meta a.comment-edit-link {
  display: none;
}

.reply {
  display: none;
}

/* Variables */
:root {
  --primary-color-dark: #bb86fc;
  --secondary-color-dark: #03dac6;
  --accent-color-dark: #cf6679;
  --body-bg-dark: #121212;
  --text-color-dark: #ffffff;
  --link-color-dark: #bb86fc;
  --link-hover-color-dark: #d5a1ff;
  --paragraph-margin-bottom: 1.25rem;
  --font-family: 'Roboto', sans-serif;
}

#respond.comment-respond {
  max-width: 480px;
  margin: 8px auto;
  padding: 8px 16px;
  background-color: #333;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#respond.comment-respond h3#reply-title.comment-reply-title {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--text-color-dark);
  margin-bottom: 8px;
  text-align: center;
}

#respond.comment-respond .comment-notes,
#respond.comment-respond .comment-notes span,
#respond.comment-respond .required-field-message,
#respond.comment-respond .required-field-message .required {
  font-size: 0.875rem;
  color: var(--text-color-dark);
}

#respond.comment-respond form.comment-form {
  display: flex;
  flex-direction: column;
}

#respond.comment-respond label {
  margin-bottom: 8px;
  font-weight: 700;
}

#respond.comment-respond input[type="text"],
#respond.comment-respond input[type="email"],
#respond.comment-respond input[type="url"],
#respond.comment-respond textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #555;
  border-radius: 5px;
  background-color: #222;
  color: var(--text-color-dark);
  font-family: var(--font-family);
  transition: background-color 0.3s, color 0.3s;
}

#respond.comment-respond input[type="text"]:focus,
#respond.comment-respond input[type="email"]:focus,
#respond.comment-respond input[type="url"]:focus,
#respond.comment-respond textarea:focus {
  outline: none;
  background-color: #555;
}

/* Submit Button */
#respond.comment-respond input[type="submit"] {
  padding: 10px 20px;
  border: none;
  background-color: var(--primary-color-dark);
  color: var(--text-color-dark);
  font-size: 16px;
  font-family: var(--font-family);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

#respond.comment-respond input[type="submit"]:hover {
  background-color: darken(var(--primary-color-dark), 10%);
}

/* Cancel Reply Link */
#respond.comment-respond #cancel-comment-reply-link {
  color: var(--link-color-dark);
  text-decoration: none;
}

#respond.comment-respond #cancel-comment-reply-link:hover {
  color: var(--link-hover-color-dark);
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 576px) {
  #respond.comment-respond {
    padding: 15px;
  }

  #respond.comment-respond h3#reply-title.comment-reply-title {
    font-size: 1.5rem;
  }
}

.comment-form-comment {
  margin-bottom: 0;
}

.comment-form-url {
  display: none;
}

.comment-awaiting-moderation {
  display: block;
  margin: 16px 0 -16px 0;
  font-weight: lighter;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 899px) {
  .mobile-reverse {
    flex-direction: column-reverse;
  }
}