/*
 * Modern Dark-Themed Single Page/Post Styles for WordPress
 * Author: [Your Name]
 * Description: Styles for single post/page layouts with a modern, minimal, dark UI/UX.
 */

.site-content, .entry-content {
  margin: 0 auto;
  padding: 48px 16px 64px 16px;
  background: none;
}

/* Navigation (next/prev post) */
.post-navigation, .nav-links {
  display: flex;
  justify-content: space-between;
  margin: 48px 0 0 0;
  gap: 16px;
}

.nav-previous a, .nav-next a {
  color: #fff;
  background: #a78bfa;
  border-radius: 24px;
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.nav-previous a:hover, .nav-next a:hover {
  background: #fff;
  color: #a78bfa;
}

/* Comments */
.comments-area {
  margin-top: 48px;
  background: #23234a;
  border-radius: 12px;
  padding: 32px 24px;
  color: #fff;
}

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

.comment {
  margin-bottom: 24px;
  border-bottom: 1px solid #2d2d4d;
  padding-bottom: 18px;
}

.comment-author {
  font-weight: 600;
  color: #a78bfa;
}

.comment-meta {
  font-size: 0.95em;
  color: #c7c7e6;
}

@media (max-width: 900px) {
  .site-content, .entry-content {
    padding: 32px 8px 48px 8px;
  }
}

@media (max-width: 600px) {
  .site-content, .entry-content {
    padding: 16px 2px 32px 2px;
  }
  .entry-title, .page-title, h1 {
    font-size: 1.5rem;
  }
}