/*
 * 852 Picks — Custom Theme CSS
 * Merged from all 6 article template mockups.
 * Source: theme-reference/template-comparison.html (base + comparison, pick-badge, why-picked, bottom-line)
 *         theme-reference/template-single-review.html (+ hero-specs, score-breakdown)
 *         theme-reference/template-guide.html (+ key-takeaways, decision-helper)
 *         theme-reference/template-listicle.html (+ quick-list, info-block, image-placeholder, entry-number, entries-remaining)
 *         theme-reference/template-versus.html (+ winner-box, h2h-table, mini-verdict, scorecard-versus, buy-recommendation)
 *         theme-reference/template-seasonal.html (+ urgency-badge, order-deadline, freshness-note; info-block variant)
 */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --harbour-deep: #1B4965;
  --harbour-mid: #2E6A8E;
  --harbour-light: #E8F1F5;
  --harbour-wash: #F4F9FB;
  --gold: #D4A03C;
  --gold-light: #F5EBD3;
  --white: #FFFFFF;
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --grey-bg: #F7F7F8;
  --grey-border: #E5E7EB;
  --grey-muted: #4B5563;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-heading: 'DM Sans', -apple-system, sans-serif;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== BASE ===== */
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--harbour-wash);
}

/* ===== BILINGUAL TOGGLE ===== */
.lang-content { display: none; }
.lang-content.active { display: block; }

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.logo .eight52 { color: var(--harbour-mid); }
.logo .picks { color: var(--dark); }
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
}
nav a {
  color: var(--dark-soft);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover { color: var(--harbour-mid); }
.lang-toggle {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--grey-muted);
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
  user-select: none;
}
.lang-toggle span {
  cursor: pointer;
  transition: color 0.2s;
}
.lang-toggle span.active { color: var(--harbour-mid); font-weight: 600; }

/* ===== ARTICLE WRAPPER ===== */
.article-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ===== CATEGORY TAG ===== */
.category-tag {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--harbour-mid);
  margin-bottom: 12px;
}

/* ===== TITLE ===== */
h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--harbour-deep);
  margin-bottom: 16px;
}

/* ===== BYLINE ===== */
.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-border);
}
.byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--harbour-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--harbour-mid);
  font-size: 16px;
}
.byline-text {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--dark-soft);
  line-height: 1.4;
}
.byline-name {
  font-weight: 600;
  color: var(--harbour-deep);
}
.byline-date { color: var(--grey-muted); }

/* ===== BOTTOM LINE BOX (Critical GEO element — used by comparison, single-review, guide, listicle, seasonal) ===== */
.bottom-line {
  background: var(--harbour-light);
  border-left: 4px solid var(--harbour-mid);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.bottom-line-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--harbour-mid);
  margin-bottom: 8px;
}
.bottom-line h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--harbour-deep);
  margin-bottom: 8px;
}
.bottom-line p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-soft);
  margin-bottom: 10px;
}
.bottom-line p:last-child { margin-bottom: 0; }
.bottom-line .pick-name {
  font-weight: 700;
  color: var(--harbour-deep);
}
/* Seasonal: deadline note inside bottom-line */
.bottom-line .deadline-note {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #DC2626;
  font-weight: 600;
  margin-top: 10px;
}

/* ===== KEY TAKEAWAYS (Guide-specific — extends bottom-line) ===== */
.key-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.key-takeaways li {
  padding: 6px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-soft);
}
.key-takeaways li::before {
  content: "✓ ";
  color: var(--harbour-mid);
  font-weight: 700;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrapper {
  margin: 36px 0;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-heading);
  font-size: 14px;
}
.comparison-table thead th {
  background: var(--harbour-deep);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--grey-border);
  transition: background 0.15s;
}
.comparison-table tbody tr:hover {
  background: var(--harbour-wash);
}
.comparison-table tbody tr:nth-child(even) {
  background: var(--grey-bg);
}
.comparison-table tbody tr:nth-child(even):hover {
  background: var(--harbour-wash);
}
.comparison-table td {
  padding: 14px 16px;
  color: var(--dark-soft);
  vertical-align: top;
}
.comparison-table .product-name {
  font-weight: 600;
  color: var(--dark);
}
/* Our Pick row highlight */
.comparison-table tr.our-pick {
  background: var(--gold-light) !important;
}
.comparison-table tr.our-pick td {
  color: var(--dark);
}

/* ===== OUR PICK BADGE ===== */
.pick-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ===== ARTICLE BODY TEXT ===== */
.article-body h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--harbour-deep);
  margin: 48px 0 16px;
  padding-top: 12px;
}
.article-body p {
  margin-bottom: 18px;
  color: var(--dark);
}

/* ===== WHY WE PICKED IT BOX ===== */
.why-picked {
  background: var(--harbour-wash);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}
.why-picked-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--harbour-mid);
  margin-bottom: 6px;
}
.why-picked p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-soft);
  margin: 0;
}

/* ===== PROS / CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.pros, .cons {
  padding: 20px;
  border-radius: 8px;
}
.pros { background: #F0FAF0; }
.cons { background: #FEF2F2; }
.pros h4, .cons h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.pros h4 { color: #16A34A; }
.cons h4 { color: #DC2626; }
.pros ul, .cons ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
}
.pros li::before {
  content: "✓ ";
  color: #16A34A;
  font-weight: 700;
}
.cons li::before {
  content: "✗ ";
  color: #DC2626;
  font-weight: 700;
}

/* ===== SPECS TABLE ===== */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-heading);
  font-size: 14px;
  margin: 20px 0;
}
.specs-table tr {
  border-bottom: 1px solid var(--grey-border);
}
.specs-table td {
  padding: 8px 0;
}
.specs-table td:first-child {
  color: var(--grey-muted);
  font-weight: 500;
  width: 140px;
}
.specs-table td:last-child {
  color: var(--dark);
  font-weight: 400;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  margin: 48px 0 36px;
  padding-top: 12px;
}
.faq-section h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--harbour-deep);
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid var(--grey-border);
  padding: 16px 0;
}
.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 16px;
  color: var(--dark-soft);
  line-height: 1.6;
  margin: 0;
}

/* ===== AUTHOR BOX ===== */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 12px;
  padding: 28px;
  margin: 48px 0 36px;
}
.author-box-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--harbour-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--harbour-mid);
  font-size: 24px;
  flex-shrink: 0;
}
.author-box-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--harbour-deep);
  margin-bottom: 2px;
}
.author-box-info .author-role {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--harbour-mid);
  font-weight: 500;
  margin-bottom: 8px;
}
.author-box-info p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark-soft);
  margin: 0;
}

/* ===== FOOTER ===== */
footer {
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  padding: 32px 24px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--grey-muted);
}
footer a {
  color: var(--grey-muted);
  text-decoration: none;
  margin: 0 12px;
}
footer a:hover { color: var(--harbour-mid); }

/* ===== HERO SPECS BAR (Single Review) ===== */
.hero-specs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 36px;
}
.hero-spec { text-align: center; }
.hero-spec-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--harbour-deep);
}
.hero-spec-label {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--grey-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== SCORE BREAKDOWN (Single Review) ===== */
.score-breakdown {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 24px;
  margin: 36px 0;
}
.score-breakdown h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--harbour-deep);
  margin-bottom: 16px;
}
.score-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-border);
  font-family: var(--font-heading);
  font-size: 14px;
}
.score-category:last-child { border-bottom: none; }
.score-label { color: var(--dark-soft); }
.score-bar-container {
  flex: 1;
  margin: 0 16px;
  height: 8px;
  background: var(--grey-bg);
  border-radius: 4px;
  overflow: hidden;
}
.score-bar {
  height: 100%;
  background: var(--harbour-mid);
  border-radius: 4px;
}
.score-value {
  font-weight: 700;
  color: var(--harbour-deep);
  min-width: 36px;
  text-align: right;
}
.score-overall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--harbour-deep);
  font-family: var(--font-heading);
}
.score-overall .score-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--harbour-deep);
}
.score-overall .score-value {
  font-size: 22px;
  color: var(--gold);
}

/* ===== DECISION HELPER BOX (Guide) ===== */
.decision-helper {
  background: var(--gold-light);
  border-radius: 8px;
  padding: 24px;
  margin: 28px 0;
}
.decision-helper h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.decision-helper-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 160, 60, 0.2);
  font-size: 15px;
}
.decision-helper-row:last-child { border-bottom: none; }
.decision-if {
  font-weight: 600;
  color: var(--dark);
  min-width: 180px;
}
.decision-then {
  color: var(--dark-soft);
}

/* ===== QUICK LIST BOX (Listicle) ===== */
.quick-list {
  background: var(--harbour-light);
  border-left: 4px solid var(--harbour-mid);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.quick-list-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--harbour-mid);
  margin-bottom: 12px;
}
.quick-list ol {
  padding-left: 24px;
  margin: 0;
}
.quick-list li {
  padding: 4px 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark-soft);
  font-family: var(--font-heading);
}
.quick-list li strong {
  color: var(--dark);
}

/* ===== IMAGE PLACEHOLDER ===== */
/* Listicle variant: 16/10 ratio, grey-bg fill */
.image-placeholder {
  background: var(--grey-bg);
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-muted);
  font-family: var(--font-heading);
  font-size: 14px;
  margin: 16px 0;
}
/* Seasonal variant: 16/9 ratio, harbour-light fill with dashed border */
.image-placeholder.seasonal {
  aspect-ratio: 16/9;
  background: var(--harbour-light);
  color: var(--harbour-mid);
  margin: 20px 0;
  border: 1px dashed var(--harbour-mid);
}

/* ===== INFO BLOCK ===== */
/* Listicle variant: grey-bg, no title, label/value columns */
.info-block {
  background: var(--grey-bg);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0 36px;
  font-family: var(--font-heading);
  font-size: 14px;
}
.info-block-row {
  display: flex;
  gap: 8px;
  padding: 4px 0;
}
.info-block-label {
  color: var(--grey-muted);
  font-weight: 500;
  min-width: 100px;
}
.info-block-value {
  color: var(--dark);
}
/* Seasonal variant: white bg, border, title row, key/val naming */
.info-block.order-info {
  background: var(--white);
  border: 1px solid var(--grey-border);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-block.order-info .info-block-row {
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--grey-border);
  align-items: baseline;
}
.info-block.order-info .info-block-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-block-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grey-muted);
  margin-bottom: 12px;
}
.info-block-key {
  color: var(--grey-muted);
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
}
.info-block-val {
  color: var(--dark);
  font-weight: 400;
}

/* ===== ENTRY NUMBER BADGE (Listicle) ===== */
.entry-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--harbour-deep);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ===== ENTRIES REMAINING DIVIDER (Listicle) ===== */
.entries-remaining {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--grey-muted);
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  margin: 16px 0 8px;
  font-style: italic;
}

/* ===== WINNER BOX (Versus — gold accent variant of bottom-line) ===== */
.winner-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.winner-box .bottom-line-label {
  color: var(--gold);
}
.winner-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--harbour-deep);
  margin-bottom: 8px;
}
.winner-box p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-soft);
}
.winner-box .pick-name {
  font-weight: 700;
  color: var(--harbour-deep);
}

/* ===== HEAD-TO-HEAD TABLE (Versus) ===== */
.h2h-table-wrapper {
  margin: 36px 0;
  overflow-x: auto;
}
.h2h-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-heading);
  font-size: 14px;
  margin: 28px 0;
}
.h2h-table thead th {
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
.h2h-table thead th:first-child {
  text-align: left;
  color: var(--grey-muted);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
}
.h2h-table thead th:nth-child(2) {
  background: var(--harbour-light);
  color: var(--harbour-deep);
}
.h2h-table thead th:nth-child(3) {
  background: var(--grey-bg);
  color: var(--dark);
}
.h2h-table tbody td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--grey-border);
}
.h2h-table tbody td:first-child {
  text-align: left;
  color: var(--grey-muted);
  font-weight: 500;
}
.h2h-winner {
  font-weight: 700;
  color: var(--harbour-deep);
}

/* ===== MINI VERDICT (Versus) ===== */
.mini-verdict {
  background: var(--harbour-wash);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark-soft);
}
.mini-verdict strong {
  color: var(--harbour-deep);
}

/* ===== SCORECARD VERSUS (Versus) ===== */
.scorecard-versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.scorecard-product {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.scorecard-product h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--harbour-deep);
  margin-bottom: 4px;
}
.scorecard-score {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin: 8px 0;
}
.scorecard-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--grey-muted);
}
.scorecard-winner-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 3px;
  margin-top: 8px;
}

/* ===== BUY RECOMMENDATION (Versus) ===== */
.buy-recommendation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.buy-rec-card {
  background: var(--harbour-wash);
  border-radius: 8px;
  padding: 24px;
}
.buy-rec-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--harbour-deep);
  margin-bottom: 8px;
}
.buy-rec-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark-soft);
  margin: 0;
}

/* ===== URGENCY BADGE (Seasonal) ===== */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF2F2;
  color: #DC2626;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.urgency-badge::before {
  content: "⏰";
}

/* ===== ORDER DEADLINE (Seasonal — inline modifier class) ===== */
.order-deadline {
  color: #DC2626;
  font-weight: 600;
}

/* ===== FRESHNESS NOTE (Seasonal) ===== */
.freshness-note {
  background: var(--harbour-wash);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 28px 0;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--grey-muted);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  h1 { font-size: 28px; }
  .article-body h2 { font-size: 22px; }
  .pros-cons { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .hero-specs { gap: 16px; }
  .decision-helper-row { flex-direction: column; gap: 4px; }
  .decision-if { min-width: unset; }
  .scorecard-versus { grid-template-columns: 1fr; }
  .buy-recommendation { grid-template-columns: 1fr; }
  .info-block-row { flex-direction: column; gap: 2px; }
  .info-block-key, .info-block-label { min-width: unset; }
}

/* ===== GHOST KOENIG EDITOR CARD WIDTHS ===== */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 42.5vw);
}

.kg-width-full {
  position: relative;
  width: 100vw;
  min-width: 100%;
  margin: auto calc(50% - 50vw);
}

.kg-width-full img,
.kg-width-wide img {
  max-width: 100%;
}

/* ===== GHOST CUSTOM FONT VARIABLES ===== */
:root {
  --gh-font-heading: var(--font-heading);
  --gh-font-body: var(--font-body);
}
