/* ============================================
   TARAWIH — style.css
   Page canonique scannerlesens.com/tarawih
   ============================================ */

/* --- Design Tokens --- */
:root {
  --bg-main: #F7F5F0;
  --bg-white: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --accent-proof: #B7410E;
  --accent-proof-light: rgba(183, 65, 14, 0.08);
  --accent-proof-hover: #9A360B;
  --ref-green: #2F4F4F;
  --badge-gold: #C9B037;
  --badge-gold-bg: rgba(201, 176, 55, 0.12);
  --border-light: #CCCCCC;
  --green-light: rgba(47, 79, 79, 0.06);
  --red-light: rgba(183, 65, 14, 0.05);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-arabic: 'Amiri', serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --h1: clamp(32px, 5vw, 48px);
  --h2: clamp(24px, 4vw, 32px);
  --h3: clamp(20px, 3vw, 24px);
  --body: clamp(16px, 2vw, 18px);
  --small: 14px;
  --arabic: clamp(18px, 2.5vw, 20px);

  --section-gap: clamp(48px, 8vw, 80px);
  --content-max: 800px;
  --content-wide: 1000px;

  --radius: 12px;
  --border: 2px solid var(--border-light);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent-proof);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-proof-hover);
}

a:focus-visible {
  outline: 2px solid var(--accent-proof);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --- Site Header (harmonisation scannerlesens.com) --- */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid #dedede;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.site-logo {
  flex-shrink: 0;
  margin: 0 20px;
}

.site-logo img {
  height: 42px;
  width: auto;
}

/* Nav links shared styles */
.site-nav--left,
.site-nav--right {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav--left {
  justify-content: flex-end;
}

.site-nav--right {
  justify-content: flex-start;
}

.site-nav--left a,
.site-nav--right a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #313131;
  text-decoration: none;
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  white-space: nowrap;
}

.site-nav--left a:hover,
.site-nav--right a:hover {
  color: #818181;
}

/* Header social icons */
.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex-shrink: 0;
}

.header-social a {
  color: #313131;
  transition: color 0.2s;
}

.header-social a:hover {
  color: var(--accent-proof);
}

.header-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Mobile nav (hidden on desktop) */
.site-nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  flex-direction: column;
  border-bottom: 1px solid #dedede;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 99;
}

.site-nav-mobile.open {
  display: flex;
}

.site-nav-mobile a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #313131;
  text-decoration: none;
  padding: 12px 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
}

.site-nav-mobile a:hover {
  color: #818181;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #313131;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* --- Content Container --- */
.content-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.content-container--wide {
  max-width: var(--content-wide);
}

.hero-layout {
  max-width: var(--content-wide);
}

/* --- Section Spacing --- */
.section {
  padding: var(--section-gap) 0;
}

.section + .section {
  border-top: 1px solid var(--border-light);
}

.section h2 {
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section h3 {
  font-size: var(--h3);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section p {
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.7;
}

.section p:last-child {
  margin-bottom: 0;
}

/* Section Intro — aligned with hero text */
.section--intro {
  text-align: left;
}

.section--intro .content-container {
  max-width: var(--content-wide);
}

/* --- Hero --- */
.hero {
  background-color: var(--bg-main);
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero-layout {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-text {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.hero-mockup {
  flex: 0 0 33%;
}

.hero-mockup img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: scale(1.2) rotate(-2deg);
  transform-origin: center center;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.3));
}

.hero h1 {
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: var(--h3);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 640px;
  margin-bottom: 24px;
}

.hero-author {
  font-size: var(--small);
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-proof);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent-proof);
  color: var(--bg-white);
  border-color: var(--accent-proof);
}

.btn--primary:hover {
  background: var(--accent-proof-hover);
  border-color: var(--accent-proof-hover);
  color: var(--bg-white);
}

.btn--secondary {
  background: transparent;
  color: var(--accent-proof);
  border-color: var(--accent-proof);
}

.btn--secondary:hover {
  background: var(--accent-proof-light);
}

.hero-notice {
  font-size: var(--small);
  color: var(--text-secondary);
}

.hero-downloads {
  font-size: var(--small);
  color: var(--text-secondary);
  margin-top: 8px;
}

.hero-downloads strong {
  color: var(--accent-proof);
  font-weight: 700;
}

/* --- Proof Image (Section 2) --- */
.proof-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- Proof Table (Section 2) --- */
.proof-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}

.proof-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border);
}

.proof-table thead th {
  font-size: var(--small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  text-align: left;
}

.proof-table thead th:first-child {
  background: var(--accent-proof-light);
  color: var(--accent-proof);
}

.proof-table thead th:last-child {
  background: #f0f0f0;
  color: var(--text-secondary);
}

.proof-table td {
  padding: 20px;
  vertical-align: top;
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
}

.proof-table td:first-child {
  background: var(--accent-proof-light);
}

.proof-table td:last-child {
  background: #fafafa;
  color: var(--text-secondary);
}

.proof-highlight {
  background: var(--accent-proof);
  color: var(--bg-white);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.truncation-mark {
  display: inline-block;
  background: #e0e0e0;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- Download Cards (Section 3) --- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.download-card {
  background: var(--bg-white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-card:hover {
  border-color: var(--accent-proof);
  box-shadow: 0 2px 12px rgba(183, 65, 14, 0.08);
  color: var(--text-primary);
}

.download-card .card-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.download-card .card-title {
  font-weight: 600;
  font-size: 16px;
}

.download-card .card-desc {
  font-size: var(--small);
  color: var(--text-secondary);
}

/* Integrity Block */
.integrity-block {
  background: var(--bg-white);
  border-left: 4px solid var(--ref-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.integrity-block h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ref-green);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.integrity-block dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: var(--small);
}

.integrity-block dt {
  color: var(--text-secondary);
  font-weight: 500;
}

.integrity-block dd {
  font-family: var(--font-mono);
  word-break: break-all;
}

.integrity-block code {
  display: block;
  margin-top: 12px;
  background: var(--bg-main);
  padding: 10px 14px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ref-green);
  overflow-x: auto;
}

/* Mirrors */
.mirrors {
  margin-top: 16px;
  font-size: var(--small);
  color: var(--text-secondary);
}

.mirrors strong {
  display: block;
  margin-bottom: 6px;
}

.mirrors ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.mirrors a {
  color: var(--ref-green);
}

/* --- Table of Contents (Section 4) --- */
.toc-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}

.toc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--small);
}

.toc-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border-light);
}

.toc-table tbody tr {
  border-bottom: 1px solid #eee;
}

.toc-table tbody tr:nth-child(even) {
  background: rgba(247, 245, 240, 0.5);
}

.toc-table td {
  padding: 12px 16px;
  vertical-align: top;
}

.toc-table td:first-child {
  font-family: var(--font-mono);
  color: var(--ref-green);
  font-weight: 500;
  white-space: nowrap;
}

.toc-table td:nth-child(3) {
  font-family: var(--font-mono);
  color: var(--text-secondary);
  white-space: nowrap;
}

.toc-table td:last-child {
  color: var(--text-secondary);
  font-style: italic;
}

/* --- Reading Levels (Section 5) --- */
.reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.reading-card {
  border: var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.reading-card--quick {
  background: var(--badge-gold-bg);
}

.reading-card--legal {
  background: var(--accent-proof-light);
}

.reading-card--full {
  background: var(--bg-white);
}

.reading-card .card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.reading-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.reading-card .card-duration {
  font-size: var(--small);
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.reading-card ul {
  list-style: none;
  font-size: var(--small);
}

.reading-card li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  color: var(--text-secondary);
}

.reading-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--ref-green);
}

/* --- Video (Section 6) --- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 24px 0;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-points {
  margin: 16px 0;
  list-style: none;
}

.video-points li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-secondary);
}

.video-points li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-proof);
}

/* --- Kit Table (Section 7) --- */
.kit-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.kit-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border-light);
}

.kit-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.kit-table td:first-child {
  font-weight: 600;
}

/* --- Press (Section 8) --- */
.press-angles {
  list-style: none;
  margin: 16px 0;
}

.press-angles li {
  padding: 8px 0 8px 20px;
  position: relative;
}

.press-angles li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ref-green);
  font-weight: 700;
}

.press-angles strong {
  color: var(--ref-green);
}

/* --- Debate Charter (Section 9) --- */
.charter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.charter-block {
  border-radius: var(--radius);
  padding: 24px;
}

.charter-block--accept {
  background: var(--green-light);
  border: 1px solid rgba(47, 79, 79, 0.15);
}

.charter-block--reject {
  background: var(--red-light);
  border: 1px solid rgba(183, 65, 14, 0.1);
}

.charter-block h3 {
  font-size: 16px;
  margin-bottom: 16px;
}

.charter-block--accept h3 {
  color: var(--ref-green);
}

.charter-block--reject h3 {
  color: var(--accent-proof);
}

.charter-block ul {
  list-style: none;
}

.charter-block li {
  padding: 6px 0;
  font-size: 15px;
  line-height: 1.5;
}

/* --- Author (Section 10) --- */
.author-section .author-role {
  font-size: var(--body);
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.author-section .author-positions {
  list-style: none;
  margin: 16px 0;
}

.author-section .author-positions li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.author-section .author-positions li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ref-green);
}

.author-section .author-stance {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--bg-white);
  border-left: 3px solid var(--ref-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
}

/* --- Arabic Text --- */
.arabic {
  font-family: var(--font-arabic);
  font-size: var(--arabic);
  direction: rtl;
  text-align: right;
  line-height: 1.8;
}

/* --- Reference Note --- */
.ref-note {
  font-size: var(--small);
  color: var(--ref-green);
  font-style: italic;
  margin-top: 8px;
}

/* --- Site Footer (harmonisation scannerlesens.com) --- */
.site-footer {
  background: var(--bg-white);
  border-top: 1px solid #dedede;
  padding: 40px 24px 24px;
  margin-top: var(--section-gap);
}

.site-footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-social a {
  color: #313131;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent-proof);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-license {
  font-size: var(--small);
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-license a {
  color: var(--ref-green);
}

.footer-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links {
  font-size: 13px;
}

.footer-links a {
  color: #313131;
}

.footer-links span {
  color: var(--border-light);
  margin: 0 8px;
}

/* --- FAQ Accordion (Section FAQ) --- */
.faq-intro {
  color: var(--text-secondary);
  font-size: var(--body);
  margin-bottom: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid rgba(183, 65, 14, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(183, 65, 14, 0.25);
  box-shadow: 0 4px 20px rgba(183, 65, 14, 0.06);
}

.faq-item[open] {
  border-color: var(--accent-proof);
  box-shadow: 0 6px 28px rgba(183, 65, 14, 0.1);
  background: linear-gradient(180deg, #fff 0%, #fdf8f5 100%);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  font-size: var(--body);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: "";
}

/* Numéro circulaire terracotta */
.faq-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(183, 65, 14, 0.08);
  color: var(--accent-proof);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.faq-item[open] .faq-num {
  background: var(--accent-proof);
  color: #fff;
}

.faq-question {
  flex: 1;
  line-height: 1.4;
}

/* Chevron animé */
.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(183, 65, 14, 0.06);
  transition: background 0.3s, transform 0.3s;
}

.faq-chevron::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent-proof);
  border-bottom: 2px solid var(--accent-proof);
  transform: rotate(-45deg);
  margin-left: -2px;
  transition: transform 0.3s;
}

.faq-item[open] .faq-chevron {
  background: rgba(183, 65, 14, 0.12);
}

.faq-item[open] .faq-chevron::before {
  transform: rotate(45deg);
  margin-top: -3px;
  margin-left: 0;
}

.faq-item summary:hover {
  background: rgba(183, 65, 14, 0.02);
}

.faq-item[open] summary {
  padding-bottom: 20px;
}

/* Contenu de la réponse */
.faq-answer {
  padding: 0 28px 28px;
  padding-left: 86px; /* aligné avec le texte après le numéro */
}

.faq-short {
  background: rgba(183, 65, 14, 0.05);
  border-left: 3px solid var(--accent-proof);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 18px;
  line-height: 1.6;
}

.faq-short strong {
  color: var(--accent-proof);
}

.faq-answer p {
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.75;
  color: var(--text-primary);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-source {
  display: inline-block;
  font-size: 13px;
  font-style: italic;
  color: var(--ref-green);
  background: rgba(47, 79, 79, 0.06);
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 4px;
}

/* --- Responsive --- */

/* Mobile */
@media (max-width: 767px) {
  .site-header-inner {
    padding: 10px 16px;
    justify-content: center;
  }

  .site-nav--left,
  .site-nav--right,
  .header-social {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .site-logo img {
    height: 32px;
  }

  .content-container {
    padding: 0 16px;
  }

  .hero-layout {
    flex-direction: column;
    gap: 32px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-mockup {
    flex: none;
    width: 60%;
    margin: 0 auto;
  }

  .hero-mockup img {
    max-height: none;
    transform: scale(1.1) rotate(-2deg);
  }

  .section--intro {
    text-align: left;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .reading-grid {
    grid-template-columns: 1fr;
  }

  .charter-grid {
    grid-template-columns: 1fr;
  }

  .proof-table-wrapper {
    margin: 24px -16px;
    padding: 0 16px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
    gap: 14px;
  }

  .faq-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 13px;
  }

  .faq-chevron {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .faq-answer {
    padding: 0 20px 22px;
    padding-left: 20px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .content-container {
    padding: 0 24px;
  }

  .reading-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Print --- */
@media print {
  .site-header,
  .site-footer,
  .hero-cta,
  .btn,
  .video-wrapper,
  .mobile-menu-btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .section {
    page-break-inside: avoid;
  }

  a {
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #555;
  }
}
