/* ==========================================================================
   TruZillah Brand — single.css  v1.0.0
   Rich editorial styles for single blog posts / articles
   ========================================================================== */

/* ── Reading-progress bar — JS-driven via --tzn-scroll-pct custom property ── */
body.single-post::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: var(--tzn-scroll-pct, 0%);
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--wp--preset--color--gold, #c9933a) 0%,
    var(--wp--preset--color--gold-pale, #e8b96a) 100%
  );
  z-index: 9999;
  will-change: width;
  pointer-events: none;
}

/* ── Article wrapper ── */
.tzn-article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

/* ── Hero header ── */
.tzn-article-header {
  padding-top: 7rem;
  padding-bottom: 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 3.5rem;
}

/* Category eyebrow */
.tzn-article-header .wp-block-post-terms a,
.tzn-article-header .tzn-post-cat a,
.entry-header .wp-block-post-terms a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gold, #c9933a);
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.tzn-article-header .wp-block-post-terms a::before,
.entry-header .wp-block-post-terms a::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--wp--preset--color--gold, #c9933a);
  vertical-align: middle;
}

/* Post title */
.tzn-article-header .wp-block-post-title,
.entry-header .wp-block-post-title,
body.single .entry-title,
body.single h1.wp-block-post-title {
  font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', Georgia, serif) !important;
  font-weight: 900 !important;
  font-size: clamp(2.2rem, 5.5vw, 4rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  color: var(--wp--preset--color--text, #ede9e3) !important;
  margin: 1rem 0 1.75rem !important;
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Byline / meta row */
.tzn-article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.tzn-article-meta .wp-block-post-author-name,
.tzn-article-meta .wp-block-post-date,
.tzn-article-meta .tzn-read-time {
  font-size: 0.82rem;
  color: var(--wp--preset--color--muted, #7a7896);
}

.tzn-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  flex-shrink: 0;
}

/* Shared meta via WP core blocks */
body.single .entry-meta,
body.single .wp-block-post-date {
  font-size: 0.82rem;
  color: var(--wp--preset--color--muted, #7a7896);
}

/* ── Featured image ── */
body.single .wp-block-post-featured-image,
body.single .post-thumbnail,
.tzn-article-featured-img {
  margin: 0 0 3.5rem !important;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

body.single .wp-block-post-featured-image img,
body.single .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Gold shimmer overlay on featured image */
body.single .wp-block-post-featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(201, 147, 58, 0.18);
  pointer-events: none;
}

/* ── Entry content — the main article body ── */

/* Constrain reading width */
body.single .entry-content,
body.single .wp-block-post-content {
  font-size: 1.08rem;
  line-height: 1.82;
  color: rgba(237, 233, 227, 0.9);
  max-width: 760px;
  margin: 0 auto;
}

/* ── Drop cap on first paragraph ── */
body.single .entry-content > p:first-of-type::first-letter,
body.single .wp-block-post-content > p:first-child::first-letter {
  font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', serif);
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 0.78;
  float: left;
  margin-right: 0.1em;
  margin-top: 0.08em;
  color: var(--wp--preset--color--gold, #c9933a);
}

/* ── Paragraphs ── */
body.single .entry-content p,
body.single .wp-block-post-content p {
  margin-bottom: 1.6rem;
  font-size: 1.08rem;
  line-height: 1.82;
  color: rgba(237, 233, 227, 0.88);
}

/* First paragraph slightly larger */
body.single .entry-content > p:first-of-type,
body.single .wp-block-post-content > p:first-child {
  font-size: 1.18rem;
  line-height: 1.8;
  color: rgba(237, 233, 227, 0.96);
}

/* ── Headings inside article ── */
body.single .entry-content h2,
body.single .wp-block-post-content h2 {
  font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', serif) !important;
  font-weight: 900;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--text, #ede9e3);
  margin-top: 3.5rem;
  margin-bottom: 1.1rem;
  padding-top: 0.5rem;
  /* Gold left border accent */
  padding-left: 1.2rem;
  border-left: 2px solid var(--wp--preset--color--gold, #c9933a);
}

body.single .entry-content h3,
body.single .wp-block-post-content h3 {
  font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', sans-serif) !important;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--wp--preset--color--text, #ede9e3);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

body.single .entry-content h4,
body.single .wp-block-post-content h4 {
  font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', sans-serif) !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--muted, #7a7896);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

/* ── Links in content ── */
body.single .entry-content a,
body.single .wp-block-post-content a {
  color: var(--wp--preset--color--gold, #c9933a);
  text-decoration: underline;
  text-decoration-color: rgba(201, 147, 58, 0.35);
  text-underline-offset: 3px;
  transition: color 150ms ease, text-decoration-color 150ms ease;
}

body.single .entry-content a:hover,
body.single .wp-block-post-content a:hover {
  color: var(--wp--preset--color--gold-pale, #e8b96a);
  text-decoration-color: rgba(232, 185, 106, 0.6);
}

/* ── Lists ── */
body.single .entry-content ul,
body.single .wp-block-post-content ul,
body.single .entry-content ol,
body.single .wp-block-post-content ol {
  padding-left: 0;
  margin: 1.5rem 0 2rem;
  list-style: none;
}

body.single .entry-content ul li,
body.single .wp-block-post-content ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(237, 233, 227, 0.86);
}

body.single .entry-content ul li::before,
body.single .wp-block-post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wp--preset--color--gold, #c9933a);
  opacity: 0.7;
}

/* Nested lists */
body.single .entry-content ul ul li::before {
  background: var(--wp--preset--color--muted, #7a7896);
  width: 4px;
  height: 4px;
}

/* Bold list items (like **Full Content Syndication:** ...) */
body.single .entry-content ul li strong,
body.single .wp-block-post-content ul li strong {
  color: var(--wp--preset--color--text, #ede9e3);
  font-weight: 600;
}

/* Ordered lists */
body.single .entry-content ol,
body.single .wp-block-post-content ol {
  counter-reset: tzn-ol;
}

body.single .entry-content ol li,
body.single .wp-block-post-content ol li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  line-height: 1.72;
  counter-increment: tzn-ol;
  color: rgba(237, 233, 227, 0.86);
}

body.single .entry-content ol li::before,
body.single .wp-block-post-content ol li::before {
  content: counter(tzn-ol);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(201, 147, 58, 0.12);
  border: 1px solid rgba(201, 147, 58, 0.25);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--wp--preset--color--gold, #c9933a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', monospace);
  margin-top: 0.15em;
}

/* ── Blockquote ── */
body.single .entry-content blockquote,
body.single .wp-block-post-content blockquote,
body.single .entry-content .wp-block-quote {
  margin: 3rem -1.5rem;
  padding: 2.5rem 3rem 2.5rem 3.5rem;
  background: var(--wp--preset--color--surface, #111120);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--wp--preset--color--gold, #c9933a);
  border-radius: 0 14px 14px 0;
  position: relative;
}

body.single .entry-content blockquote::before,
body.single .wp-block-post-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -0.4rem;
  left: 1.25rem;
  font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--wp--preset--color--gold, #c9933a);
  opacity: 0.2;
}

body.single .entry-content blockquote p,
body.single .wp-block-post-content blockquote p,
body.single .entry-content .wp-block-quote p {
  font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--wp--preset--color--text, #ede9e3);
  margin-bottom: 0;
}

body.single .entry-content blockquote cite,
body.single .wp-block-post-content blockquote cite,
body.single .entry-content .wp-block-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-style: normal;
  color: var(--wp--preset--color--muted, #7a7896);
  font-family: var(--wp--preset--font-family--dm-sans, 'DM Sans', sans-serif);
}

/* ── Horizontal rule ── */
body.single .entry-content hr,
body.single .wp-block-post-content hr,
body.single .entry-content .wp-block-separator {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 4rem auto;
  max-width: 200px;
  position: relative;
}

body.single .entry-content hr::before,
body.single .wp-block-post-content hr::before,
body.single .entry-content .wp-block-separator::before {
  content: '⋯';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--wp--preset--color--bg, #09090f);
  padding: 0 1rem;
  color: var(--wp--preset--color--muted, #7a7896);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

/* ── Images inside content ── */
body.single .entry-content img,
body.single .wp-block-post-content img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body.single .entry-content figure,
body.single .wp-block-post-content figure {
  margin: 2.5rem 0;
}

body.single .entry-content figcaption,
body.single .wp-block-post-content figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--wp--preset--color--muted, #7a7896);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ── Code blocks ── */
body.single .entry-content pre,
body.single .wp-block-post-content pre,
body.single .entry-content .wp-block-code {
  background: var(--wp--preset--color--surface, #111120);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  overflow-x: auto;
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', monospace);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--wp--preset--color--text, #ede9e3);
  margin: 2rem 0;
}

body.single .entry-content code,
body.single .wp-block-post-content code {
  font-family: var(--wp--preset--font-family--dm-mono, 'DM Mono', monospace);
  font-size: 0.88em;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 0.15em 0.4em;
  color: var(--wp--preset--color--gold-pale, #e8b96a);
}

/* ── Tables ── */
body.single .entry-content table,
body.single .wp-block-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
}

body.single .entry-content th,
body.single .wp-block-post-content th {
  background: var(--wp--preset--color--surface, #111120);
  color: var(--wp--preset--color--text, #ede9e3);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(201, 147, 58, 0.3);
}

body.single .entry-content td,
body.single .wp-block-post-content td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(237, 233, 227, 0.82);
  vertical-align: top;
}

body.single .entry-content tr:last-child td {
  border-bottom: none;
}

body.single .entry-content tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

/* ── Strong & em ── */
body.single .entry-content strong,
body.single .wp-block-post-content strong {
  color: var(--wp--preset--color--text, #ede9e3);
  font-weight: 600;
}

body.single .entry-content em,
body.single .wp-block-post-content em {
  color: rgba(237, 233, 227, 0.82);
  font-style: italic;
}

/* ── Checklist items (wp-block-list style) ── */
body.single .entry-content .is-style-checked ul li::before {
  content: '✓';
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: var(--wp--preset--color--gold, #c9933a);
  font-size: 0.9rem;
  font-weight: 700;
  top: 0.05em;
}

/* ── Article footer / author card ── */
.tzn-article-footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.tzn-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--wp--preset--color--surface, #111120);
  border: 2px solid rgba(201, 147, 58, 0.3);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', serif);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--wp--preset--color--gold, #c9933a);
}

.tzn-author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wp--preset--color--text, #ede9e3);
  margin-bottom: 0.25rem;
}

.tzn-author-info p {
  font-size: 0.82rem;
  color: var(--wp--preset--color--muted, #7a7896);
  line-height: 1.55;
  margin: 0;
}

/* ── Back to updates / breadcrumb ── */
.tzn-article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.8rem;
  color: var(--wp--preset--color--muted, #7a7896);
}

.tzn-article-breadcrumb a {
  color: var(--wp--preset--color--muted, #7a7896);
  text-decoration: none;
  transition: color 150ms ease;
}

.tzn-article-breadcrumb a:hover { color: var(--wp--preset--color--gold, #c9933a); }

.tzn-article-breadcrumb span { opacity: 0.4; }

/* ── Single post page-level layout ── */

/* Pad the main area so the sticky header doesn't overlap */
body.single-post main.wp-block-group {
  padding-top: 0 !important;
}

/* The post-content block itself gets a clean constrained width */
body.single .wp-block-post-content {
  max-width: 760px !important;
  margin-inline: auto !important;
  padding-inline: 1.5rem !important;
  margin-top: 0 !important;
}

/* Post title block outside content */
body.single .wp-block-post-title {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}

/* Date block */
body.single .wp-block-post-date {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--wp--preset--color--muted, #7a7896);
  margin-bottom: 1rem;
}

/* Category terms */
body.single .wp-block-post-terms {
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
}

/* Author block */
body.single .wp-block-post-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--wp--preset--color--muted, #7a7896);
  margin-bottom: 0.5rem;
}

body.single .wp-block-post-author__avatar img {
  border-radius: 50%;
  width: 28px !important;
  height: 28px !important;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none !important;
  margin: 0 !important;
}

/* ── Featured image — full-bleed cinematic ── */
body.single .wp-block-post-featured-image {
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 3.5rem !important;
}

/* Neutralize theme/global wide/full offsets on featured image */
body.single .wp-block-post-featured-image.alignwide,
body.single .wp-block-post-featured-image.alignfull {
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.single .wp-block-post-featured-image img {
  width: 100%;
  height: clamp(260px, 52vw, 560px);
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 147, 58, 0.12);
  display: block;
  margin: 0 !important;
}

/* ── Images INSIDE content ── natural sizing + alignment aware ── */
body.single .wp-block-post-content::after {
  content: '';
  display: block;
  clear: both;
}

body.single .wp-block-post-content .wp-block-image {
  margin: 2rem auto;
}

/* Keep standard images aligned with the paragraph measure */
body.single .wp-block-post-content .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

body.single .wp-block-post-content .wp-block-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

body.single .wp-block-post-content .wp-block-image.aligncenter {
  text-align: center;
}

body.single .wp-block-post-content .wp-block-image.alignleft {
  float: left;
  max-width: min(42%, 300px);
  margin: 0.45rem 1.4rem 1rem 0;
  overflow: hidden;
}

body.single .wp-block-post-content .wp-block-image.alignright {
  float: right;
  max-width: min(42%, 300px);
  margin: 0.45rem 0 1rem 1.4rem;
  overflow: hidden;
}

/* Consecutive images with no text between them — prevent merging */
body.single .wp-block-post-content .wp-block-image + .wp-block-image {
  clear: both;
  margin-top: 2rem;
}

body.single .wp-block-post-content .wp-block-image.alignwide {
  width: min(100%, 880px);
  margin: 2.5rem auto;
}

body.single .wp-block-post-content .wp-block-image.alignfull {
  width: min(100%, 980px);
  margin: 2.75rem auto;
}

/* Avoid duplicate title block when post body starts with an H1 */
body.single .wp-block-post-content > h1:first-child {
  display: none;
}

/* ── Key takeaway / callout box ── */
body.single .entry-content .tzn-callout,
body.single .wp-block-post-content .wp-block-pullquote {
  background: rgba(201, 147, 58, 0.06);
  border: 1px solid rgba(201, 147, 58, 0.2);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}

body.single .wp-block-pullquote blockquote p {
  font-size: 1.35rem !important;
  line-height: 1.5 !important;
}

/* ── Separator between sections (the --- markdown) ── */
body.single .entry-content .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 180px;
  background: none;
  border: none;
  position: relative;
}

/* ── Related / back nav ── */
.tzn-post-nav {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.tzn-back-to-updates {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wp--preset--color--muted, #7a7896);
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.tzn-back-to-updates:hover {
  border-color: rgba(201, 147, 58, 0.4);
  color: var(--wp--preset--color--gold, #c9933a);
  background: rgba(201, 147, 58, 0.05);
}

/* ── Post prev/next navigation ── */
.tzn-post-nav-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.tzn-post-nav-block .wp-block-post-navigation-link {
  max-width: 45%;
}
.tzn-post-nav-block .wp-block-post-navigation-link a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--wp--preset--color--muted, #7a7896);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 150ms ease;
}
.tzn-post-nav-block .wp-block-post-navigation-link a:hover {
  color: var(--wp--preset--color--gold, #c9933a);
}
.tzn-post-nav-block .wp-block-post-navigation-link .wp-block-post-navigation-link__arrow {
  font-size: 1rem;
  opacity: 0.4;
}
.tzn-post-nav-block .wp-block-post-navigation-link .wp-block-post-navigation-link__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wp--preset--color--text, #ede9e3);
  font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', serif);
  line-height: 1.3;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-top: 0.15rem;
}
.tzn-post-nav-block .wp-block-post-navigation-link--next {
  text-align: right;
  margin-left: auto;
}

/* ── Social share row ── */
.tzn-share-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.tzn-share-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--muted, #7a7896);
}
.tzn-share-row .tzn-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--wp--preset--color--muted, #7a7896);
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}
.tzn-share-row .tzn-social-btn:hover {
  border-color: rgba(201, 147, 58, 0.5);
  color: var(--wp--preset--color--gold, #c9933a);
  background: rgba(201, 147, 58, 0.06);
}

/* ── Reduced motion (single post) ── */
@media (prefers-reduced-motion: reduce) {
  body.single-post::before {
    width: 100% !important;
    opacity: 0.15 !important;
    will-change: auto !important;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  body.single .wp-block-post-featured-image img {
    height: clamp(220px, 58vw, 320px);
    border-radius: 10px;
  }

  body.single .entry-content blockquote,
  body.single .wp-block-post-content blockquote {
    margin: 2rem 0;
    padding: 1.75rem 1.5rem 1.75rem 2rem;
    border-radius: 0 10px 10px 0;
  }

  body.single .entry-content blockquote p,
  body.single .wp-block-post-content blockquote p {
    font-size: 1.15rem;
  }

  body.single .entry-content > p:first-of-type::first-letter,
  body.single .wp-block-post-content > p:first-child::first-letter {
    font-size: 3.2rem;
  }

  body.single .wp-block-post-content {
    padding-inline: 1rem !important;
  }

  body.single .wp-block-post-content .wp-block-image.alignleft,
  body.single .wp-block-post-content .wp-block-image.alignright {
    float: none;
    max-width: 100%;
    margin: 1.25rem auto;
  }

  .tzn-post-nav-block {
    flex-direction: column;
    gap: 1.5rem;
  }
  .tzn-post-nav-block .wp-block-post-navigation-link,
  .tzn-post-nav-block .wp-block-post-navigation-link--next {
    max-width: 100%;
    text-align: left;
  }
}
