/* ============================================================================
   Single blog post — editorial reading layout (asdf-theme)
   Depends on style.css variables + blog.css (.blog-card reused for related).
   ========================================================================== */

/* ── Reading progress bar ─────────────────────────────────────────────── */
.asdf-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1200;
  background: transparent;
  pointer-events: none;
}
.asdf-read-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
  box-shadow: 0 0 12px rgba(125, 28, 130, 0.5);
  transition: width 0.08s linear;
}

/* ── Cover hero ───────────────────────────────────────────────────────── */
.single-hero {
  position: relative;
  margin-top: var(--asdf-header-offset);
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-purple) 0%, #3f0a43 100%);
  isolation: isolate;
}
.single-hero.no-cover {
  min-height: 46vh;
}
.single-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  z-index: -2;
}
/* Legibility gradient — dark at the bottom where the copy sits. */
.single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(20, 2, 22, 0.92) 0%, rgba(30, 4, 33, 0.45) 42%, rgba(94, 16, 98, 0.25) 100%);
}
.single-hero.no-cover::before {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(to top, rgba(20, 2, 22, 0.55), transparent 70%);
}

.single-hero-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 96px;
}

.single-breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.single-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.25s ease;
}
.single-breadcrumb a:hover { color: #fff; }
.single-breadcrumb span { margin: 0 9px; color: rgba(255, 255, 255, 0.4); }

.single-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.single-cat-pill:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.single-title {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.7px;
  color: #fff;
  max-width: 20ch;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 8px 40px rgba(0, 0, 0, 0.35);
}

.single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.single-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.single-meta-item i { opacity: 0.85; }
.single-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.single-author {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.single-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  object-fit: cover;
}
.single-author-by { display: flex; flex-direction: column; line-height: 1.25; }
.single-author-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.65);
}
.single-author-name { font-size: 15px; font-weight: 700; color: #fff; }

/* ── The overlapping content shell ────────────────────────────────────── */
.single-shell {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: -72px auto 0;
  padding: 0 24px 100px;
}

.single-sheet {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  background: #fff;
  border-radius: 22px;
  padding: 52px 56px;
  box-shadow: 0 30px 80px rgba(94, 16, 98, 0.14);
  border: 1px solid var(--border-lavender);
}

/* ── Share rail ───────────────────────────────────────────────────────── */
.single-share {
  grid-column: 1;
  grid-row: 1 / -1;
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.single-share-label {
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.single-share-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-lavender);
  background: #fff;
  color: var(--primary-purple);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.single-share-btn:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  color: #fff;
  transform: translateY(-2px);
}
.single-copied {
  position: absolute;
  left: 46px;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  white-space: nowrap;
  background: var(--text-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.single-copy-link.is-copied .single-copied {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ── Article body typography ──────────────────────────────────────────── */
.single-body {
  grid-column: 2;
  font-size: 17.5px;
  line-height: 1.85;
  color: #38313b;
}
.single-body > p { margin: 0 0 26px; }

/* Drop cap on the opening paragraph */
.single-body > p:first-of-type::first-letter {
  float: left;
  font-size: 68px;
  line-height: 0.82;
  font-weight: 800;
  color: var(--primary-purple);
  margin: 8px 14px 0 0;
}

.single-body h2,
.single-body h3,
.single-body h4 {
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.3;
  scroll-margin-top: 120px;
}
.single-body h2 {
  font-size: 28px;
  margin: 48px 0 18px;
  padding-left: 16px;
  border-left: 4px solid var(--primary-purple);
}
.single-body h3 { font-size: 22px; margin: 38px 0 14px; }
.single-body h4 { font-size: 18px; margin: 30px 0 12px; }

.single-body a {
  color: var(--primary-purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(94, 16, 98, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.single-body a:hover {
  color: var(--accent-purple);
  text-decoration-color: var(--accent-purple);
}

.single-body ul,
.single-body ol { margin: 0 0 26px; padding-left: 4px; }
.single-body li { margin-bottom: 10px; padding-left: 30px; position: relative; list-style: none; }
.single-body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-purple);
}
.single-body ol { counter-reset: asdf-ol; }
.single-body ol li { counter-increment: asdf-ol; }
.single-body ol li::before {
  content: counter(asdf-ol);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-purple-light);
  color: var(--primary-purple);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-body blockquote {
  position: relative;
  margin: 34px 0;
  padding: 28px 30px 28px 62px;
  background: var(--primary-purple-light);
  border-left: 4px solid var(--primary-purple);
  border-radius: 0 14px 14px 0;
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-dark);
}
.single-body blockquote::before {
  content: "\201C";
  position: absolute;
  left: 18px;
  top: 6px;
  font-size: 60px;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(94, 16, 98, 0.28);
  line-height: 1;
}
.single-body blockquote p:last-child { margin-bottom: 0; }
.single-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  color: var(--primary-purple);
}

.single-body img,
.single-body .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.single-body figure { margin: 32px 0; }
.single-body figcaption,
.single-body .wp-caption-text {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}
.single-body .alignleft { float: left; margin: 6px 30px 20px 0; max-width: 50%; }
.single-body .alignright { float: right; margin: 6px 0 20px 30px; max-width: 50%; }
.single-body .aligncenter { display: block; margin-left: auto; margin-right: auto; }

.single-body hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lavender), transparent);
  margin: 44px 0;
}

.single-body pre {
  background: #241127;
  color: #f3e9f5;
  padding: 20px 22px;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 26px;
}
.single-body :not(pre) > code {
  background: var(--primary-purple-light);
  color: var(--primary-purple);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.9em;
}

.single-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 26px;
  font-size: 15px;
}
.single-body th,
.single-body td { padding: 12px 14px; border-bottom: 1px solid var(--border-lavender); text-align: left; }
.single-body th { background: var(--primary-purple-light); color: var(--primary-purple); font-weight: 700; }

.single-pagelinks {
  grid-column: 2;
  margin-top: 20px;
  font-weight: 600;
  color: var(--text-light);
}
.single-pagelinks a { color: var(--primary-purple); }

/* ── Tags ─────────────────────────────────────────────────────────────── */
.single-tags {
  grid-column: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--border-lavender);
  color: var(--text-light);
}
.single-tags > i { color: var(--primary-purple); }
.single-tags a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-purple);
  text-decoration: none;
  background: var(--primary-purple-light);
  padding: 6px 15px;
  border-radius: 30px;
  transition: background 0.2s ease, color 0.2s ease;
}
.single-tags a:hover { background: var(--primary-purple); color: #fff; }

/* ── Author card ──────────────────────────────────────────────────────── */
.single-authorbox {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
  padding: 30px 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-purple-light), var(--bg-lavender));
  border: 1px solid var(--border-lavender);
}
.single-authorbox-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.single-authorbox-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-purple);
}
.single-authorbox-name { font-size: 20px; font-weight: 800; color: var(--text-dark); margin: 3px 0 8px; }
.single-authorbox-bio { font-size: 14.5px; line-height: 1.7; color: var(--text-light); margin: 0; }

/* ── Prev / Next ──────────────────────────────────────────────────────── */
.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.single-nav-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border-lavender);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.single-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-purple);
}
.single-nav-empty { visibility: hidden; }
.single-nav-next { text-align: right; }
.single-nav-dir {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-purple);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.single-nav-next .single-nav-dir { justify-content: flex-end; }
.single-nav-ttl { font-size: 16px; font-weight: 700; color: var(--text-dark); line-height: 1.4; }

/* ── Related ──────────────────────────────────────────────────────────── */
.single-related { margin-top: 64px; }
.single-related-head { margin-bottom: 26px; }
.single-related-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-purple);
}
.single-related-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-top: 6px;
}

/* ── Back link ────────────────────────────────────────────────────────── */
.single-backrow { margin-top: 48px; text-align: center; }
.single-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-purple);
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 30px;
  border: 1.5px solid var(--border-lavender);
  transition: gap 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.single-back:hover {
  gap: 14px;
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  color: #fff;
}

/* ── Comments container ───────────────────────────────────────────────── */
.single-comments {
  margin-top: 56px;
  padding-top: 8px;
}

.asdf-comments-head { margin-bottom: 30px; }
.asdf-comments-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-purple);
}
.asdf-comments-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-top: 6px;
}
.asdf-comments-title span { color: var(--primary-purple); }

/* ── Comment list ─────────────────────────────────────────────────────── */
.asdf-comment-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.asdf-comment-list .children {
  list-style: none;
  margin: 18px 0 0;
  padding: 18px 0 0 0;
  border-top: 1px dashed var(--border-lavender);
}
/* Indent nested replies, with a hairline connecting them. */
.asdf-comment-list .children .asdf-comment {
  margin-left: 26px;
  padding-left: 22px;
  border-left: 2px solid var(--border-lavender);
}
.asdf-comment { margin-bottom: 18px; }
.asdf-comment:last-child { margin-bottom: 0; }

.asdf-comment-body {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border-lavender);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.asdf-comment-body:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(94, 16, 98, 0.28);
}
.asdf-comment-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid var(--primary-purple-light);
}
.asdf-comment-main { flex: 1; min-width: 0; }
.asdf-comment-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 8px;
}
.asdf-comment-author,
.asdf-comment-author a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}
.asdf-comment-author a:hover { color: var(--primary-purple); }
.asdf-comment-date {
  font-size: 12.5px;
  color: var(--text-light);
  text-decoration: none;
}
.asdf-comment-date:hover { color: var(--primary-purple); }
.asdf-comment-pending {
  font-size: 11px;
  font-weight: 700;
  color: #9a5b00;
  background: #fff4e0;
  padding: 2px 9px;
  border-radius: 20px;
}
.asdf-comment-text {
  font-size: 15px;
  line-height: 1.75;
  color: #38313b;
}
.asdf-comment-text p { margin: 0 0 12px; }
.asdf-comment-text p:last-child { margin-bottom: 0; }

.asdf-comment-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.asdf-comment-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-purple);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.asdf-comment-actions a:hover { gap: 8px; color: var(--accent-purple); }

/* Comment pagination reuses the tone of the nav cards. */
.comment-navigation .nav-links,
.comments-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 40px;
}
.comment-navigation a,
.comments-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-purple);
  text-decoration: none;
  padding: 9px 18px;
  border: 1.5px solid var(--border-lavender);
  border-radius: 30px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.comment-navigation a:hover,
.comments-navigation a:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  color: #fff;
}

.asdf-comments-closed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  background: var(--primary-purple-light);
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

/* ── Comment form ─────────────────────────────────────────────────────── */
.asdf-comment-respond {
  padding: 34px 36px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-purple-light), var(--bg-lavender));
  border: 1px solid var(--border-lavender);
}
.asdf-respond-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}
.asdf-respond-title small { font-weight: 500; }
.asdf-respond-title small a { color: var(--primary-purple); }
.asdf-form-note,
.comment-notes {
  font-size: 13px;
  color: var(--text-light);
  margin: 6px 0 20px;
}
.logged-in-as { font-size: 13.5px; color: var(--text-light); margin: 6px 0 20px; }
.logged-in-as a { color: var(--primary-purple); font-weight: 600; text-decoration: none; }

.asdf-comment-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.asdf-form-row { display: flex; flex-direction: column; gap: 7px; flex: 1 1 190px; }
.asdf-form-message,
.asdf-comment-form .form-submit,
.asdf-comment-form .comment-form-cookies-consent,
.asdf-comment-form .comment-notes,
.asdf-comment-form .logged-in-as { flex-basis: 100%; }
.asdf-form-row label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-dark);
}
.asdf-req { color: var(--primary-purple); }
.asdf-comment-form input[type="text"],
.asdf-comment-form input[type="email"],
.asdf-comment-form input[type="url"],
.asdf-comment-form textarea {
  width: 100%;
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  border: 1.5px solid var(--border-lavender);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.asdf-comment-form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.asdf-comment-form input:focus,
.asdf-comment-form textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 4px rgba(94, 16, 98, 0.1);
}
.asdf-comment-form input::placeholder,
.asdf-comment-form textarea::placeholder { color: #b3a8b8; }

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-light);
}
.comment-form-cookies-consent input { width: 17px; height: 17px; accent-color: var(--primary-purple); }
.comment-form-cookies-consent label { margin: 0; }

.asdf-comment-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
  background: var(--primary-purple);
  border: none;
  border-radius: 30px;
  padding: 14px 30px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(94, 16, 98, 0.22);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.asdf-comment-submit:hover {
  background: var(--primary-purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(94, 16, 98, 0.28);
}
.asdf-comment-submit:active { transform: translateY(0); }

/* ── Scroll reveal (progressive enhancement) ──────────────────────────── */
.single-shell [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.single-shell [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .single-sheet {
    display: block;
    padding: 34px 26px;
    border-radius: 18px;
  }
  .single-body,
  .single-tags,
  .single-pagelinks { grid-column: auto; }

  /* Share rail becomes a horizontal strip above the article */
  .single-share {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-lavender);
  }
  .single-share-label { writing-mode: horizontal-tb; margin: 0 6px 0 0; align-self: center; }
  .single-copied { left: 50%; top: -34px; transform: translateX(-50%) scale(0.9); }
  .single-copy-link.is-copied .single-copied { transform: translateX(-50%) scale(1); }

  .single-body { font-size: 16.5px; }
  .single-nav { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .single-hero { min-height: 56vh; }
  .single-hero-inner { padding: 30px 20px 84px; }
  .single-shell { padding: 0 16px 70px; margin-top: -56px; }
  .single-sheet { padding: 26px 20px; }
  .single-body > p:first-of-type::first-letter { font-size: 54px; margin-right: 10px; }
  .single-body h2 { font-size: 23px; }
  .single-authorbox { flex-direction: column; text-align: center; }
  .single-meta { gap: 10px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .single-shell [data-reveal] { opacity: 1; transform: none; transition: none; }
  .asdf-read-progress-bar { transition: none; }
}
