/* QuickAtWork Blog — blog.css
   Typography: Fraunces (editorial h1–h4, blockquotes) · DM Sans (UI/body) · Inter (meta)
   Palette: #FAF8F5 bg | #1C1917 ink | #C17F3A accent | #34312A body | #C8A878 gold | #F6EFE2 tint
*/

/* ── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'DM Sans', 'Inter', sans-serif;
  background: #FAF8F5;
  color: #34312A;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: #C17F3A; text-decoration: none; }
a:hover { text-decoration: underline; color: #8B5E1A; }

img { max-width: 100%; height: auto; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Top nav ───────────────────────────────────────────────── */
.blog-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

.blog-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1C1917;
  text-decoration: none;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.blog-nav-logo .accent { color: #C17F3A; }
.blog-nav-logo:hover { text-decoration: none; color: #1C1917; }

.blog-nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(28, 25, 23, 0.12);
  flex-shrink: 0;
}

.blog-nav-blog-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1C1917;
  text-decoration: none;
}

.blog-nav-blog-link:hover { color: #C17F3A; text-decoration: none; }

.blog-nav-spacer { flex: 1; }

.blog-nav-tools {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6B5E52;
  padding: 6px 14px;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.15s;
  flex-shrink: 0;
}

.blog-nav-tools:hover {
  background: rgba(28, 25, 23, 0.04);
  color: #1C1917;
  text-decoration: none;
}

/* ── Footer ────────────────────────────────────────────────── */
.blog-footer {
  background: #1C1917;
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 24px;
  margin-top: 80px;
}

.blog-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.blog-footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.blog-footer-logo span { color: #C17F3A; }
.blog-footer-logo:hover { text-decoration: none; color: #fff; }

.blog-footer-copy {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.blog-footer-nav {
  display: flex;
  gap: 24px;
}

.blog-footer-nav a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.blog-footer-nav a:hover { color: #fff; text-decoration: none; }

/* ── Topic chip ────────────────────────────────────────────── */
.blog-topic-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  background: #F6EFE2;
  color: #8B5E1A;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid rgba(193, 127, 58, 0.18);
  transition: background 0.15s;
  white-space: nowrap;
}

.blog-topic-chip:hover {
  background: rgba(193, 127, 58, 0.14);
  text-decoration: none;
  color: #8B5E1A;
}

/* ── Blog index page ───────────────────────────────────────── */
.blog-index-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.blog-index-header {
  padding: 56px 0 40px;
  text-align: center;
}

.blog-index-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #1C1917;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.blog-index-sub {
  font-size: 17px;
  color: #6B5E52;
  margin: 0 0 28px;
  font-family: 'Inter', sans-serif;
}

/* Topic filter buttons */
.blog-topic-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.topic-filter-btn {
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(28, 25, 23, 0.14);
  background: transparent;
  color: #6B5E52;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.topic-filter-btn:hover {
  border-color: #C17F3A;
  color: #C17F3A;
}

.topic-filter-btn.active {
  background: #1C1917;
  border-color: #1C1917;
  color: #fff;
}

/* Post grid */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.blog-grid-item.is-hidden { display: none; }

/* ── Post card ─────────────────────────────────────────────── */
.post-card {
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.15s, transform 0.15s;
  height: 100%;
}

.post-card:hover {
  box-shadow: 0 6px 24px rgba(28, 25, 23, 0.08);
  transform: translateY(-2px);
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.post-card-readtime {
  font-size: 11px;
  color: #8B7E74;
  font-family: 'Inter', sans-serif;
}

.post-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #1C1917;
  margin: 0;
  line-height: 1.25;
  flex: 1;
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
}

.post-card-title a:hover { color: #C17F3A; text-decoration: none; }

.post-card-excerpt {
  font-size: 14px;
  color: #6B5E52;
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(28, 25, 23, 0.07);
}

.post-card-author {
  display: flex;
  align-items: center;
  gap: 7px;
}

.author-avatar-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1C1917;
  color: #C17F3A;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name-sm {
  font-size: 12px;
  color: #6B5E52;
  font-family: 'Inter', sans-serif;
}

.post-card-date {
  font-size: 12px;
  color: #8B7E74;
  font-family: 'Inter', sans-serif;
}

/* ── Article / post page ───────────────────────────────────── */
.post-main {
  padding: 0 24px 80px;
}

.post-container {
  max-width: 960px;
  margin: 0 auto;
}

.post-header {
  padding: 48px 0 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.post-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.post-readtime {
  font-size: 12px;
  color: #8B7E74;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.post-readtime .ph { font-size: 13px; color: #C17F3A; }

.post-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  color: #1C1917;
  margin: 0 0 22px;
  line-height: 1.14;
  letter-spacing: -0.3px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1C1917;
  color: #C17F3A;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: #1C1917;
  font-family: 'DM Sans', sans-serif;
}

.author-bio-short {
  font-size: 11px;
  color: #8B7E74;
  font-family: 'Inter', sans-serif;
}

.post-date {
  font-size: 13px;
  color: #8B7E74;
  font-family: 'Inter', sans-serif;
}

/* ── Post layout: single centered reading column ───────────── */
/* No TOC sidebar — current posts have no H2 subheadings.
   When posts gain ≥3 H2s a two-column layout can be re-enabled. */
.post-layout {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

/* Table of contents */
.toc {
  position: sticky;
  top: 72px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 0 0 16px;
}

.toc-header {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #8B7E74;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-link {
  display: block;
  font-size: 13px;
  color: #6B5E52;
  font-family: 'Inter', sans-serif;
  padding: 4px 8px 4px 10px;
  border-left: 2px solid rgba(28, 25, 23, 0.1);
  text-decoration: none;
  transition: all 0.15s;
  border-radius: 0 4px 4px 0;
  line-height: 1.4;
}

.toc-link:hover {
  color: #1C1917;
  border-left-color: #C17F3A;
  background: rgba(193, 127, 58, 0.06);
  text-decoration: none;
}

.toc-link.is-active {
  color: #C17F3A;
  border-left-color: #C17F3A;
  font-weight: 500;
  background: rgba(193, 127, 58, 0.06);
}

/* ── Article body ──────────────────────────────────────────── */
.post-body {
  max-width: none; /* parent .post-layout caps to 720px */
  min-width: 0;
}

.post-body > :first-child { margin-top: 0; }

.post-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(21px, 2.5vw, 27px);
  font-weight: 600;
  color: #1C1917;
  margin: 2.2em 0 0.55em;
  line-height: 1.2;
  letter-spacing: -0.2px;
  scroll-margin-top: 80px;
}

.post-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #1C1917;
  margin: 1.8em 0 0.45em;
  scroll-margin-top: 80px;
}

.post-body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1C1917;
  margin: 1.4em 0 0.35em;
}

.post-body p {
  margin: 0 0 1.25em;
  color: #34312A;
  line-height: 1.75;
  font-size: 16.5px;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.25em 1.4em;
  padding: 0;
  color: #34312A;
}

.post-body li {
  margin-bottom: 0.45em;
  line-height: 1.65;
  font-size: 16.5px;
}

.post-body a {
  color: #C17F3A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.post-body a:hover { color: #8B5E1A; }

.post-body strong { color: #1C1917; font-weight: 600; }

.post-body blockquote {
  margin: 1.6em 0;
  padding: 16px 22px;
  border-left: 3px solid #C17F3A;
  background: #F6EFE2;
  border-radius: 0 10px 10px 0;
}

.post-body blockquote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: #1C1917;
  margin: 0;
  line-height: 1.55;
}

.post-body code {
  font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
  font-size: 13.5px;
  background: #EDE9E2;
  padding: 2px 6px;
  border-radius: 4px;
  color: #1C1917;
}

.post-body pre {
  background: #1C1917;
  color: #E8E2DA;
  padding: 20px 24px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 0 0 1.5em;
}

.post-body pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: 13px;
}

.post-body hr {
  border: none;
  border-top: 1px solid rgba(28, 25, 23, 0.1);
  margin: 2.5em 0;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5em;
  font-size: 14.5px;
}

.post-body th {
  background: #F0EDE8;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: #1C1917;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid rgba(28, 25, 23, 0.12);
}

.post-body td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(28, 25, 23, 0.07);
  color: #34312A;
}

.post-body tr:last-child td { border-bottom: none; }

/* ── Share bar ─────────────────────────────────────────────── */
.post-share {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 25, 23, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.post-share-label {
  font-size: 13px;
  font-weight: 600;
  color: #6B5E52;
  font-family: 'DM Sans', sans-serif;
}

.post-share-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(28, 25, 23, 0.14);
  background: transparent;
  color: #6B5E52;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.share-btn:hover {
  border-color: #C17F3A;
  color: #C17F3A;
  background: rgba(193, 127, 58, 0.06);
}

.share-btn.is-copied {
  border-color: #2D8B4E;
  color: #2D8B4E;
  background: rgba(45, 139, 78, 0.06);
}

/* ── Author card ───────────────────────────────────────────── */
.author-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-top: 52px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  max-width: 720px;
}

.author-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1C1917;
  color: #C17F3A;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-card-info { flex: 1; }

.author-card-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 6px;
}

.author-card-bio {
  font-size: 13.5px;
  color: #6B5E52;
  margin: 0 0 10px;
  line-height: 1.55;
}

.author-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: #C17F3A;
  text-decoration: none;
  margin-right: 12px;
}

.author-card-link:hover { text-decoration: underline; color: #8B5E1A; }

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-section {
  background: #1C1917;
  border-radius: 20px;
  padding: 44px 36px;
  margin-top: 52px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 720px;
}

.blog-index-page .newsletter-section,
.blog-topic-page .newsletter-section {
  max-width: none;
  margin-top: 0;
}

.newsletter-inner {
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-section .ph {
  font-size: 28px;
  color: #C17F3A;
  display: block;
  margin-bottom: 14px;
}

.newsletter-h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.newsletter-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
  font-family: 'Inter', sans-serif;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}

.newsletter-input::placeholder { color: rgba(255, 255, 255, 0.4); }

.newsletter-input:focus {
  border-color: rgba(193, 127, 58, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  background: #C17F3A;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-btn:hover { background: #A66C2A; }
.newsletter-btn:disabled { opacity: 0.6; cursor: default; }

.newsletter-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 12px 0 0;
  min-height: 18px;
  font-family: 'Inter', sans-serif;
}

.newsletter-note.is-success { color: #6DC98B; }
.newsletter-note.is-error   { color: #F08080; }

/* ── Related posts ─────────────────────────────────────────── */
.related-posts { margin-top: 64px; }

.related-posts-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #1C1917;
  margin: 0 0 24px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.blog-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #8B7E74;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.blog-breadcrumb a {
  color: #8B7E74;
  text-decoration: none;
}

.blog-breadcrumb a:hover { color: #1C1917; text-decoration: none; }
.blog-breadcrumb .ph { font-size: 10px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 880px) {
  /* .post-layout is already display:block — no grid to override */
  .post-layout,
  .post-body,
  .author-card,
  .comment-section,
  .newsletter-section { max-width: none; }

  /* TOC — if present (future posts with H2s), render inline */
  .toc {
    position: static;
    max-height: none;
    background: #F6EFE2;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 36px;
  }
}

@media (max-width: 640px) {
  .blog-nav-inner { padding: 0 16px; }

  .post-main       { padding: 0 16px 64px; }
  .blog-index-main { padding: 0 16px 64px; }

  .post-header     { padding: 32px 0 24px; }
  .blog-index-header { padding: 36px 0 28px; }

  .blog-index-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }
  .newsletter-section { padding: 32px 20px; border-radius: 16px; }

  .author-card { flex-direction: column; }

  .post-share { gap: 12px; }
  .share-btn  { padding: 6px 12px; font-size: 12px; }

  .related-posts-grid { grid-template-columns: 1fr; }
}

/* ── Editor's Pick badge ───────────────────────────────────── */
.post-card--featured {
  border-color: rgba(193, 127, 58, 0.3);
  background: linear-gradient(135deg, #fff 0%, #FEFAF4 100%);
}

.post-card-featured {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 100px;
  background: #C17F3A;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Engagement bar (like + comment-count) ─────────────────── */
.engagement-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 16px 0;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  min-height: 56px; /* reserve space — prevents layout shift */
}

.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(28, 25, 23, 0.14);
  background: transparent;
  color: #6B5E52;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1;
}

.like-btn .ph { font-size: 16px; transition: color 0.15s; }

.like-btn:hover {
  border-color: #e8536a;
  color: #e8536a;
}

.like-btn.is-liked {
  border-color: #e8536a;
  color: #e8536a;
  background: rgba(232, 83, 106, 0.07);
}

.like-btn.is-liked .ph { color: #e8536a; }

.like-count { min-width: 16px; }

.comment-jump {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(28, 25, 23, 0.12);
  color: #6B5E52;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}

.comment-jump .ph { font-size: 16px; }

.comment-jump:hover {
  border-color: #C17F3A;
  color: #C17F3A;
  text-decoration: none;
}

.comment-count { min-width: 16px; }

/* ── Comment section ───────────────────────────────────────── */
.comment-section {
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.comments-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1C1917;
  margin: 0 0 20px;
}

.comments-list {
  min-height: 48px; /* reserve space */
  margin-bottom: 36px;
}

.comments-loading {
  font-size: 13px;
  color: #8B7E74;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.no-comments {
  font-size: 14px;
  color: #8B7E74;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.comment-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

.comment-item:last-child { border-bottom: none; }

.comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.comment-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1C1917;
}

.comment-date {
  font-size: 12px;
  color: #8B7E74;
  font-family: 'Inter', sans-serif;
}

.comment-body {
  font-size: 15px;
  color: #34312A;
  margin: 0;
  line-height: 1.6;
}

/* Comment form */
.comment-form-wrap {
  background: #F6EFE2;
  border-radius: 14px;
  padding: 24px;
}

.comment-form-h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1C1917;
  margin: 0 0 16px;
}

.comment-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #6B5E52;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.comment-optional {
  font-weight: 400;
  color: #8B7E74;
}

.comment-input,
.comment-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(28, 25, 23, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #1C1917;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 14px;
}

.comment-input:focus,
.comment-textarea:focus {
  border-color: #C17F3A;
  box-shadow: 0 0 0 3px rgba(193, 127, 58, 0.1);
}

.comment-textarea {
  resize: vertical;
  min-height: 100px;
}

.comment-submit-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  background: #1C1917;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.comment-submit-btn:hover { background: #2E2A27; }
.comment-submit-btn:disabled { opacity: 0.6; cursor: default; }

.comment-status {
  font-size: 13px;
  margin: 12px 0 0;
  font-family: 'Inter', sans-serif;
  min-height: 18px;
  color: #6B5E52;
}

.comment-status.is-success { color: #2D8B4E; }
.comment-status.is-error   { color: #C0392B; }

/* comment-section max-width:none at 880px is handled in the block above */
