.page-content {
  width: min(1280px, calc(100% - 2rem));
  max-width: 1280px;
  margin: 0 auto;
}
.page-title,
.entry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-2);
}
.entry-content h2,
.entry-content h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.entry-content p { margin-bottom: 1rem; }
.entry-meta {
  font-size: .85rem;
  color: var(--ink-3);
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.entry-meta a {
  color: var(--ocean-2);
  text-decoration: none;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
  width: min(1280px, calc(100% - 2rem));
  max-width: 1280px;
  margin: 0 auto;
}
.sidebar-left .single-layout {
  grid-template-columns: 320px 1fr;
}
.sidebar-left .single-layout .widget-area {
  order: -1;
}
.sidebar-none .single-layout {
  grid-template-columns: 1fr;
}
.single-content { min-width: 0; }

.post-navigation {
  margin: 2rem 0;
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: block;
  padding: 1rem;
  border: 1px solid var(--mist-3);
  border-radius: var(--r2);
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  transition: all .2s;
}
.post-navigation a:hover { border-color: var(--ocean-2); }
.post-navigation .nav-title {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.post-navigation .post-title {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
}

.related-posts {
  margin-top: 2.5rem;
}
.related-posts h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.related-post-card {
  background: white;
  border: 1px solid var(--mist-3);
  border-radius: var(--r2);
  overflow: hidden;
  transition: all .25s;
}
.related-post-card:hover {
  box-shadow: 0 8px 24px rgba(10,22,40,.08);
  transform: translateY(-2px);
}
.related-post-card-thumb img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.related-post-card-body {
  padding: 1rem 1rem 1.1rem;
}
.related-post-card-title {
  font-size: .98rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.related-post-card-title a {
  color: var(--ink);
  text-decoration: none;
}
.related-post-card-meta {
  font-size: .78rem;
  color: var(--ink-3);
}

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mist-3);
}
.comments-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-list .comment {
  margin-bottom: 2rem;
}
.comment-body {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  position: relative;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.comment-author .avatar {
  border-radius: 50%;
}
.comment-author .fn {
  font-weight: 600;
  font-style: normal;
}
.comment-meta,
.comment-metadata {
  font-size: .8rem;
  color: var(--ink-3);
}
.comment-content p {
  font-size: .9rem;
  line-height: 1.7;
}
.reply {
  margin-top: 1rem;
}
.reply .comment-reply-link {
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ocean-2);
}
.comment-respond {
  margin-top: 2rem;
}
.comment-reply-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.comment-form p {
  margin-bottom: 1rem;
}
.comment-form label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--mist-3);
  border-radius: 6px;
  font-size: .9rem;
}
.comment-form .form-submit .submit {
  background: var(--ocean-2);
  color: #fff;
  border: none;
  padding: .75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}
.no-comments {
  margin-top: 1rem;
  color: var(--ink-3);
}
