/**
 * AJL40 Digital Series
 * © 2026 sultanmuzaffar. Hak cipta terpelihara / All rights reserved.
 * Penggunaan, penyalinan atau pengedaran tanpa kebenaran bertulis adalah dilarang.
 * Unauthorized use, copying or distribution is prohibited.
 */

/* AJL 40 — Essay Detail Page styles
   Shared across all 15 essay pages.
   Requires colors_and_type.css to be loaded first. */

html, body { margin: 0; padding: 0; background: var(--ink); color: var(--ivory); }
.ajl-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (min-width: 1024px) { .ajl-container { padding: 0 64px; } }

.ajl-section__head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 64px; max-width: 760px; }
.ajl-section__title {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0; letter-spacing: -0.03em; margin: 0; color: var(--ivory);
}
.ajl-section__title-em { font-style: italic; font-weight: 500; color: var(--gold); letter-spacing: -0.02em; }
.ajl-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
[data-surface="bone"] .ajl-eyebrow { color: var(--gold-deep); }

/* Buttons */
.ajl-btn {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 24px; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ivory);
  transition: all var(--d-fast) var(--ease-settle);
  position: relative;
}
.ajl-btn--primary { background: var(--gold); color: var(--ink); }
.ajl-btn--primary:hover { background: var(--gold-bright); }
.ajl-btn--ghost { color: var(--ivory); padding: 16px 0 18px; gap: 8px; }
.ajl-btn--ghost .ajl-btn__ul {
  position: absolute; left: 0; bottom: 8px; height: 2px; width: 100%;
  background: var(--gold); transform-origin: left; transform: scaleX(0);
  transition: transform 320ms var(--ease-settle);
}
.ajl-btn--ghost:hover { color: var(--gold-bright); }
.ajl-btn--ghost:hover .ajl-btn__ul { transform: scaleX(1); }

/* ===================== TOP BAR ===================== */
.ajl-topbar {
  padding: 20px 0; padding-top: calc(20px + env(safe-area-inset-top));
  border-bottom: 1px solid rgba(184,151,80,0.12);
  background: rgba(14,13,11,0.45); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  position: -webkit-sticky; position: sticky; top: 0; z-index: 900;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
.ajl-topbar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.ajl-topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ajl-topbar__back {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory-80);
  display: inline-flex; align-items: center; gap: 10px; background: none; padding: 0;
  cursor: pointer; border: 0;
}
.ajl-topbar__back:hover { color: var(--gold); }
.ajl-topbar__wordmark { display: flex; align-items: center; gap: 10px; }
.ajl-topbar__wordmark img { height: 34px; filter: brightness(0) invert(1); }
.ajl-topbar__wordmark .r { width: 1px; height: 18px; background: var(--gold); }
.ajl-topbar__wordmark .n {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--gold); letter-spacing: -0.04em; line-height: 1;
}
.ajl-topbar__essay {
  font-family: var(--font-mono); font-size: 10px; color: var(--ivory-60);
  letter-spacing: 0.08em;
}

/* ===================== Reading Progress ===================== */
.ajl-progress {
  position: fixed; left: 0; right: 0; top: 0; height: 2px;
  background: transparent; z-index: 901;
}
.ajl-progress__fill {
  height: 100%; width: 100%; background: var(--gold);
  transform-origin: left; transform: scaleX(0);
  transition: transform 80ms linear;
}

/* ===================== Share Rail ===================== */
.ajl-share {
  position: fixed; left: 24px; top: 50%; transform: translateY(-50%);
  z-index: 30; display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.ajl-share__label {
  font-size: 9px; color: var(--ivory-40); letter-spacing: 0.24em;
  writing-mode: vertical-rl; transform: rotate(180deg); margin-bottom: 6px;
}
.ajl-share__btn {
  width: 38px; height: 38px; background: transparent; border: 1px solid var(--ivory-20);
  color: var(--ivory-60); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--d-fast) var(--ease-settle);
}
.ajl-share__btn:hover { border-color: var(--gold); color: var(--gold); }
.ajl-share__btn.is-saved {
  border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.12);
}

/* Toast notification */
.ajl-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink-raised, #1a1917); color: var(--ivory, #f5f0e8);
  border: 1px solid var(--gold-wash, rgba(212,175,55,0.15));
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.03em; padding: 14px 28px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.5);
  z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ajl-toast.is-visible {
  opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto;
}

@media (max-width: 1100px) { .ajl-share { display: none; } }

/* Mobile share bar */
.ajl-mshare {
  display: none; /* hidden on desktop */
  padding: 24px 0; justify-content: center; gap: 8px;
}
.ajl-mshare__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--ivory-20);
  color: var(--ivory-60); cursor: pointer;
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 18px;
  transition: all var(--d-fast) var(--ease-settle);
}
.ajl-mshare__btn:hover, .ajl-mshare__btn:active { border-color: var(--gold); color: var(--gold); }
.ajl-mshare__btn.is-saved { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.12); }
@media (max-width: 1100px) { .ajl-mshare { display: flex; } }

/* ===================== Article Hero ===================== */
.ajl-ahero { position: relative; padding: 96px 0 80px; overflow: hidden; min-height: 600px; }
.ajl-ahero__photo { position: absolute; top: 0; right: 0; bottom: 0; width: 45%; overflow: hidden; }
.ajl-ahero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: contrast(1.05) brightness(0.92) saturate(0.95);
}
.ajl-ahero__grain {
  position: absolute; inset: 0; opacity: 0.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
}
.ajl-ahero__protect {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 35%, rgba(14,13,11,0.6) 60%, transparent 100%);
}
.ajl-ahero__inner { position: relative; max-width: 760px; }
.ajl-ahero__eyebrow { margin-bottom: 16px; }
.ajl-ahero__cluster {
  font-family: var(--font-sans); font-size: 16px; font-weight: 500;
  color: var(--ivory-60); margin-bottom: 32px; max-width: 56ch;
}
.ajl-ahero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5.5vw, 80px); line-height: 1.0; letter-spacing: -0.035em;
  margin: 0 0 36px; color: var(--ivory); max-width: 18ch;
}
.ajl-ahero__standfirst {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5;
  color: var(--ivory-80); margin: 0 0 40px; max-width: 56ch;
  letter-spacing: -0.005em;
}
.ajl-ahero__meta {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  font-size: 11px; color: var(--ivory-60); padding-bottom: 32px;
  border-bottom: 1px solid var(--gold-wash);
  letter-spacing: 0.06em;
}
.ajl-ahero__sep { color: var(--ivory-40); }
.ajl-ahero__provocation {
  margin-top: 32px; padding-left: 24px;
  border-left: 3px solid var(--gold);
  max-width: 640px;
}
.ajl-ahero__prov-body {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.35;
  color: var(--gold-bright); margin: 8px 0 0;
  letter-spacing: -0.01em;
}

/* ===================== Article Body (bone, long-form) ===================== */
.ajl-article { background: var(--bone); color: var(--charcoal); padding: 144px 0; }
.ajl-article__inner { max-width: 680px; margin: 0 auto; padding: 0 32px; }
.ajl-article__h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.1; letter-spacing: -0.025em;
  color: var(--charcoal); margin: 80px 0 28px;
  padding-top: 40px; border-top: 1px solid var(--bone-line);
}
.ajl-article__h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.ajl-article__p {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 18px; line-height: 1.75; color: var(--charcoal); margin: 0 0 24px;
}
.ajl-article__p--dropcap::first-letter {
  font-family: var(--font-display); font-weight: 800;
  font-size: 96px; line-height: 0.85; float: left;
  margin: 6px 14px 0 0; color: var(--gold-deep);
  letter-spacing: -0.04em;
}

/* Inline pull quote inside body */
.ajl-pullquote {
  margin: 56px -64px; padding: 40px 64px;
  border-top: 1px solid var(--bone-line); border-bottom: 1px solid var(--bone-line);
  display: grid; grid-template-columns: 56px 1fr; gap: 16px;
  background: rgba(184,148,90,0.06);
}
.ajl-pullquote__mark {
  font-family: var(--font-display); font-weight: 800; font-size: 80px;
  line-height: 0.5; color: var(--gold-deep); letter-spacing: -0.05em;
}
.ajl-pullquote__body {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.3;
  color: var(--charcoal); margin: 0; letter-spacing: -0.015em;
}
@media (max-width: 800px) {
  .ajl-pullquote { margin: 40px 0; padding: 32px 24px; }
}

/* ===================== 5 Pull Quotes Strip ===================== */
.ajl-quotes5 { background: var(--bone-raised); color: var(--charcoal); padding: 128px 0; }
.ajl-quotes5__eyebrow { margin-bottom: 56px; }
.ajl-quotes5__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; }
.ajl-quotes5__item {
  display: grid; grid-template-columns: 96px 1fr; gap: 32px;
  padding: 36px 0; border-top: 1px solid var(--bone-line); align-items: baseline;
}
.ajl-quotes5__item:last-child { border-bottom: 1px solid var(--bone-line); }
.ajl-quotes5__no {
  font-family: var(--font-display); font-weight: 800; font-size: 56px;
  line-height: 0.9; letter-spacing: -0.04em; color: var(--gold-deep);
}
.ajl-quotes5__body {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px); line-height: 1.25;
  color: var(--charcoal); margin: 0; letter-spacing: -0.015em;
}

/* ===================== 10 Principles ===================== */
.ajl-prinsip { padding: 128px 0; }
.ajl-prinsip__head { margin-bottom: 64px; }
.ajl-prinsip__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 64px; }
.ajl-prinsip__item {
  display: grid; grid-template-columns: 72px 1fr; gap: 20px;
  padding: 28px 0; border-top: 1px solid var(--gold-wash);
}
.ajl-prinsip__no {
  font-family: var(--font-display); font-weight: 800; font-size: 36px;
  line-height: 1; letter-spacing: -0.03em; color: var(--gold);
}
.ajl-prinsip__t {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; line-height: 1.25; letter-spacing: -0.015em;
  color: var(--ivory); margin: 0 0 8px;
}
.ajl-prinsip__b { font-size: 14px; line-height: 1.55; color: var(--ivory-60); margin: 0; }
@media (max-width: 900px) {
  .ajl-prinsip__list { grid-template-columns: 1fr; gap: 0; }
}

/* ===================== CTA Block ===================== */
.ajl-cta { padding: 128px 0; }
.ajl-cta__inner { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.ajl-cta__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.03em;
  color: var(--ivory); margin: 16px 0 32px;
}
.ajl-cta__lead {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; letter-spacing: -0.025em;
  color: var(--ivory); margin: 24px 0 24px;
}
.ajl-cta__intro {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin: 32px 0 16px;
}
.ajl-cta__prompts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.ajl-cta__prompt {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.35;
  color: var(--gold-bright); margin: 0;
  padding: 24px 28px; border-left: 3px solid var(--gold);
  background: rgba(184,148,90,0.06);
  letter-spacing: -0.01em;
}
.ajl-cta__body { font-size: 17px; line-height: 1.65; color: var(--ivory-80); margin: 0 0 40px; max-width: 60ch; }
.ajl-cta__tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.ajl-cta__tag {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  padding: 10px 16px; background: transparent; border: 1px solid var(--gold);
  color: var(--gold);
  transition: background var(--d-fast) var(--ease-settle), color var(--d-fast) var(--ease-settle);
  cursor: pointer;
}
.ajl-cta__tag:hover { background: var(--gold); color: var(--ink); }
.ajl-cta__closer {
  padding-top: 40px; border-top: 1px solid var(--gold-wash);
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: 22px; line-height: 1.45; color: var(--ivory-80); margin-bottom: 40px;
  max-width: 60ch;
}
.ajl-cta__textarea {
  width: 100%; max-width: 60ch; min-height: 100px; padding: 16px; margin: 0 0 12px;
  font-family: inherit; font-size: 16px; line-height: 1.6;
  color: var(--bone); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  resize: vertical; outline: none; transition: border-color .2s;
}
.ajl-cta__textarea:focus { border-color: var(--gold); }
.ajl-cta__textarea::placeholder { color: rgba(255,255,255,0.35); }
.ajl-cta__success {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; margin: 0 0 24px;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px; color: #86efac; font-size: 15px;
}
.ajl-cta__error {
  color: #fca5a5; font-size: 14px; margin: -4px 0 12px;
}
.ajl-cta__ctas { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.ajl-cta__ctas .ajl-btn--primary:disabled {
  opacity: 0.6; cursor: wait;
}

/* ===================== Related Rail ===================== */
.ajl-related { padding: 128px 0; background: var(--ink-raised); }
.ajl-related__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ajl-related__card {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: flex-start;
  padding: 28px; background: var(--ink); border: 1px solid var(--gold-wash);
  color: inherit; background-image: none; text-decoration: none;
  transition: all var(--d-fast) var(--ease-settle);
}
.ajl-related__card:hover { border-color: var(--gold); transform: translateY(-2px); background: var(--ink); }
.ajl-related__no {
  font-family: var(--font-display); font-weight: 800; font-size: 44px;
  line-height: 1; letter-spacing: -0.04em; color: var(--gold);
}
.ajl-related__cluster {
  font-family: var(--font-sans); font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-60);
  margin-bottom: 8px;
}
.ajl-related__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; line-height: 1.25; letter-spacing: -0.015em;
  color: var(--ivory); margin: 0 0 12px;
}
.ajl-related__meta { font-size: 10px; color: var(--ivory-60); letter-spacing: 0.12em; }
@media (max-width: 900px) { .ajl-related__list { grid-template-columns: 1fr; } }

/* ===================== Footer ===================== */
.ajl-pagefoot { padding: 48px 0; border-top: 1px solid var(--gold-wash); }
.ajl-pagefoot__row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.ajl-pagefoot__legal { font-family: var(--font-mono); font-size: 10px; color: var(--ivory-40); letter-spacing: 0.12em; }
.ajl-pagefoot__next {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
  background: none; padding: 0; cursor: pointer; border: 0;
}
.ajl-pagefoot__next:hover { color: var(--gold-bright); }

/* Mobile */
@media (max-width: 800px) {
  .ajl-ahero__photo { width: 100%; opacity: 0.35; }
  .ajl-ahero__protect { background: linear-gradient(180deg, rgba(14,13,11,0.6) 0%, var(--ink) 100%); }
  .ajl-quotes5__item { grid-template-columns: 1fr; gap: 8px; }
  .ajl-quotes5__no { font-size: 36px; }
}

/* ===================== Back to Top ===================== */
.ajl-btt {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 48px; height: 48px;
  background: var(--ink-raised, #1a1917); color: var(--gold);
  border: 1px solid var(--gold-wash);
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px -4px rgba(0,0,0,0.5);
  transition: border-color var(--d-fast), color var(--d-fast), transform 0.2s ease, opacity 0.3s ease;
  animation: ajl-btt-in 0.3s ease forwards;
}
.ajl-btt:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-2px); }
@keyframes ajl-btt-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Long Malay title overflow safety */
.ajl-topbar__essay,
.ajl-ahero__title,
.ajl-related__title,
.ajl-pagefoot__next {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ============== NOTA EDITORIAL (intro note on bone) ============== */
.ajl-nota {
  max-width: 720px; margin: 0 auto 8px; padding: 18px 22px;
  border-left: 3px solid var(--gold-deep); background: var(--gold-tint);
  border-radius: 0 6px 6px 0;
}
.ajl-nota__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px;
}
.ajl-nota__body {
  font-size: 14px; line-height: 1.6; color: var(--charcoal-80);
  font-style: italic; margin: 0; white-space: pre-line;
}

/* ============== QUIZ ============== */
.ajl-quiz { padding: 112px 0; border-top: 1px solid var(--gold-wash); }
.ajl-quiz__head { margin-bottom: 48px; }
.ajl-quiz__list { display: flex; flex-direction: column; gap: 40px; }
.ajl-quiz__q {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
}
.ajl-quiz__qno {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  line-height: 1; letter-spacing: -0.03em; color: var(--gold);
}
.ajl-quiz__qtext {
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  line-height: 1.35; letter-spacing: -0.01em; color: var(--ivory); margin: 4px 0 18px;
}
.ajl-quiz__opts { display: flex; flex-direction: column; gap: 10px; }
.ajl-quiz__opt {
  display: flex; align-items: flex-start; gap: 12px; width: 100%;
  text-align: left; padding: 14px 16px; cursor: pointer;
  background: var(--ink-raised); border: 1px solid var(--gold-wash);
  border-radius: 8px; color: var(--ivory-80); font-size: 15px; line-height: 1.4;
  font-family: var(--font-body); transition: border-color .18s, background .18s, color .18s;
}
.ajl-quiz__opt:hover:not(:disabled) { border-color: var(--gold); color: var(--ivory); }
.ajl-quiz__opt.is-selected { border-color: var(--gold); background: var(--gold-tint); color: var(--ivory); }
.ajl-quiz__opt.is-correct { border-color: #5E8C61; background: rgba(94,140,97,0.16); color: var(--ivory); }
.ajl-quiz__opt.is-wrong { border-color: var(--ruby-bright); background: var(--ruby-wash); color: var(--ivory); }
.ajl-quiz__opt:disabled { cursor: default; }
.ajl-quiz__optmark {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--gold-wash); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--gold); margin-top: 1px;
}
.ajl-quiz__opt.is-correct .ajl-quiz__optmark { border-color: #5E8C61; color: #7FB183; }
.ajl-quiz__opt.is-wrong .ajl-quiz__optmark { border-color: var(--ruby-bright); color: var(--ruby-bright); }
.ajl-quiz__actions { margin-top: 44px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ajl-quiz__score {
  font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--gold-bright);
}
.ajl-quiz__score span { color: var(--ivory-60); font-size: 14px; font-weight: 500; }
@media (max-width: 700px) {
  .ajl-quiz { padding: 72px 0; }
  .ajl-quiz__q { grid-template-columns: 1fr; gap: 6px; }
  .ajl-quiz__qno { font-size: 22px; }
}

/* ===================== Unified site footer (ported from site-pages.css) ===================== */
.ajl-footer { padding-top: 96px; border-top: 1px solid var(--gold-wash); }
.ajl-footer__inner { display: grid; grid-template-columns: 1.5fr 1.8fr 0.9fr 0.7fr; gap: 40px; padding-bottom: 80px; }
.ajl-footer__col { display: flex; flex-direction: column; gap: 18px; }
.ajl-footer__mark { margin-bottom: 8px; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.ajl-footer__brand {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 22px; line-height: 1.2; color: var(--ivory); margin: 0; letter-spacing: -0.01em;
}
.ajl-footer__credits { font-size: 10px; color: var(--ivory-40); line-height: 1.7; letter-spacing: 0.12em; }
.ajl-footer__body { font-family: var(--font-sans); color: var(--ivory-80); margin: 0; }
.ajl-footer__link { font-family: var(--font-sans); color: var(--ivory-80); text-decoration: none; background-image: none; padding: 0; }
.ajl-footer__link:hover { color: var(--gold); }
.ajl-footer__bar { border-top: 1px solid var(--gold-wash); padding: 28px 0; }
.ajl-footer__legal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: var(--ivory-40); letter-spacing: 0.12em;
}
.ajl-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin: 0;
}
@media (max-width: 900px) {
  .ajl-footer__inner { grid-template-columns: 1fr 1fr; }
}

/* Footer wordmark (ported from site-pages.css) */
.ajl-footer .ajl-wordmark { display: inline-flex; align-items: center; gap: 12px; background: none; padding: 0; color: var(--ivory); text-decoration: none; }
.ajl-footer .ajl-wordmark__logo { height: 44px; width: auto; display: block; filter: brightness(0) invert(1); }
.ajl-footer .ajl-wordmark__rule { width: 1px; height: 24px; background: var(--gold); }
.ajl-footer .ajl-wordmark__n { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1; color: var(--gold); letter-spacing: -0.04em; }

/* ===================== Social Share Buttons ===================== */
.ajl-socshare {
  display: inline-flex; align-items: center; gap: 6px; margin-left: 12px;
}
.ajl-socshare__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid transparent;
  background: transparent; cursor: pointer; transition: all 0.2s ease;
  padding: 0; line-height: 1;
}
/* Hero variant — light icons on dark bg */
.ajl-socshare--hero .ajl-socshare__btn {
  color: var(--ivory-60); border-color: var(--ivory-20);
}
.ajl-socshare--hero .ajl-socshare__btn:hover {
  color: var(--gold); border-color: var(--gold); background: rgba(184,151,80,0.1);
}
/* Bone variant — dark icons on bone bg */
.ajl-socshare--bone .ajl-socshare__btn {
  color: var(--charcoal-60, rgba(30,28,24,0.5)); border-color: var(--bone-line);
}
.ajl-socshare--bone .ajl-socshare__btn:hover {
  color: var(--charcoal); border-color: var(--charcoal); background: rgba(30,28,24,0.06);
}
/* Instagram copy button — subtle dashed border */
.ajl-socshare__btn--ig { border-style: dashed; }

/* Pull quote share row */
.ajl-pullquote .ajl-socshare,
.ajl-quotes5__item .ajl-socshare {
  margin-left: 0; margin-top: 16px;
}

@media (max-width: 800px) {
  .ajl-socshare { margin-left: 0; margin-top: 10px; width: 100%; justify-content: flex-start; }
  .ajl-socshare__btn { width: 30px; height: 30px; }
}
