:root {
  --ink: #101521;
  --muted: #667085;
  --line: #e7eaf0;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --navy: #061a46;
  --blue: #175cd3;
  --gold: #d8aa42;
  --gold-dark: #9c7425;
  --green: #157347;
  --shadow: 0 18px 55px rgba(16, 21, 33, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(216, 170, 66, 0.45);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  color: #344054;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a:hover {
  background: #eef4ff;
  color: var(--blue);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 9px 12px;
  font-weight: 700;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: calc(100vh - 75px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: linear-gradient(118deg, #030a1a, #07183d 54%, #161208);
  color: #fff;
}

.home-hero {
  position: relative;
  overflow: hidden;
}

.home-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 44vw;
  height: 44vw;
  min-width: 420px;
  min-height: 420px;
  content: "";
  border: 1px solid rgba(216, 170, 66, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 66, 0.18), rgba(216, 170, 66, 0) 64%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

.hero-section h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  color: #f6d26f;
  text-wrap: balance;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.34);
}

.hero-lede {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.hero-actions,
.stats-row,
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #111;
  background: linear-gradient(135deg, #ffe08a, var(--gold));
  box-shadow: 0 12px 28px rgba(216, 170, 66, 0.28);
}

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.content-band .btn.secondary,
.chapter-intro .btn.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.stats-row {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.84);
}

.stats-row span,
.course-meta span {
  padding: 9px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-media {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-media img {
  border-radius: 6px;
}

.brand-visual {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    #080b13;
}

.brand-visual-top {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.brand-visual-top img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(216, 170, 66, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.brand-visual-top strong {
  display: block;
  color: #f6d26f;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
}

.brand-visual-top span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.learning-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.learning-board span,
.visual-note {
  border: 1px solid rgba(216, 170, 66, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.learning-board span {
  padding: 16px;
  color: #fff;
  font-weight: 800;
}

.visual-note {
  padding: 18px;
}

.visual-note strong {
  color: #f6d26f;
  font-size: 1.18rem;
}

.visual-note p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.content-band {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.about-band {
  background: #fff;
}

.definitions-band,
.syllabus-band {
  background: #f8fbff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.course-promo h2,
.subscribe-card h2,
.chapter-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
}

.section-heading p,
.course-promo p,
.subscribe-card p,
.chapter-intro p {
  color: var(--muted);
}

.about-grid,
.definition-grid,
.chapter-grid {
  display: grid;
  gap: 16px;
}

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

.about-grid article,
.definition-grid article,
.chapter-card,
.note-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 21, 33, 0.06);
}

.about-grid article,
.definition-grid article {
  padding: 22px;
}

.definition-grid article {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.definition-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.definition-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 92, 211, 0.28);
  box-shadow: 0 20px 48px rgba(16, 21, 33, 0.12);
}

.about-grid h3,
.definition-grid h3,
.note-copy h3 {
  color: var(--navy);
  font-size: 1.12rem;
}

.about-grid p,
.definition-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.definition-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.definition-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.definition-grid.compact article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 18px;
}

.definition-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 6px;
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 170, 66, 0.18), transparent 34%),
    linear-gradient(135deg, #f8fbff, #eef4ff);
  border: 1px solid #e3ebf7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.definition-grid.compact h3 {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--navy);
  background: #eef4ff;
}

.definition-grid.compact p {
  margin-top: 0;
  font-size: 0.98rem;
}

.course-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(38px, 5vw, 64px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(135deg, #061a46, #092d74);
}

.course-promo h2,
.course-promo p {
  color: #fff;
}

.course-promo div {
  max-width: 780px;
}

.subscribe-section {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.subscribe-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(216, 170, 66, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0b0b0b, #17130a);
  color: #fff;
  box-shadow: var(--shadow);
}

.subscribe-card img {
  border-radius: 50%;
  border: 1px solid rgba(216, 170, 66, 0.44);
}

.subscribe-card h2,
.subscribe-card p {
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #070a12;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #f6d26f;
  font-weight: 800;
}

.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(38px, 6vw, 78px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #051432, #0e3b85);
  color: #fff;
}

.course-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  text-wrap: balance;
}

.course-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.course-hero img {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.chapter-hero img {
  background: #fff;
}

.course-meta {
  margin-top: 22px;
}

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

.chapter-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 4px 12px;
  align-items: center;
  padding: 18px;
}

.chapter-card strong {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--navy);
  background: #eef4ff;
}

.chapter-card span {
  font-weight: 800;
  color: var(--navy);
}

.chapter-card small {
  color: var(--muted);
}

.chapter-card.active {
  border-color: rgba(23, 92, 211, 0.4);
}

.chapter-card.active strong {
  color: #fff;
  background: var(--blue);
}

.chapter-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: clamp(38px, 5vw, 80px) clamp(18px, 5vw, 72px);
  background: transparent;
}

.chapter-intro h2 {
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #2b60a8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0px rgba(43, 96, 168, 0.2);
  margin-top: 10px;
}
.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 20px;
}

.topic-menu {
  position: sticky;
  top: 90px;
  width: 320px;
  flex-shrink: 0;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(16, 21, 33, 0.08);
  border: 1px solid #e7eaf0;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.topic-menu::-webkit-scrollbar {
  width: 6px;
}
.topic-menu::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}

.topic-menu h3 {
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
  color: #2b60a8;
  margin: 0 0 16px 0;
  font-size: 1.4rem;
  border-bottom: 2px dashed #e2e8f0;
  padding-bottom: 12px;
}

.topic-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.topic-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #f8fafc;
  border: 1px solid transparent;
}

.topic-menu a:hover {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
  }
  .topic-menu {
    position: relative;
    top: 0;
    width: 100%;
    max-height: 250px;
    margin-bottom: 20px;
  }
}

.slides-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: transparent;
  perspective: 1500px;
}

@media (max-width: 960px) {
  .slides-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.note-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fdfaf6; /* Soft paper color */
  padding: clamp(24px, 4vw, 50px);
  min-height: 600px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Left Page (Odd) */
.note-card:nth-child(odd) {
  border-radius: 12px 0 0 12px;
  border-right: 1px solid #e8e1d5;
  box-shadow: 
    inset -20px 0 40px -20px rgba(0,0,0,0.15),
    -10px 20px 40px rgba(0,0,0,0.1);
}

/* Right Page (Even) */
.note-card:nth-child(even) {
  border-radius: 0 12px 12px 0;
  border-left: 1px solid #fff;
  box-shadow: 
    inset 20px 0 40px -20px rgba(0,0,0,0.15),
    10px 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 960px) {
  .note-card:nth-child(odd),
  .note-card:nth-child(even) {
    border-radius: 12px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }
}

/* Alternating Image Placement */
.note-card:nth-child(odd) figure {
  order: 1;
  margin-bottom: 30px;
}
.note-card:nth-child(odd) .note-copy {
  order: 2;
}

.note-card:nth-child(even) .note-copy {
  order: 1;
  margin-bottom: 30px;
}
.note-card:nth-child(even) figure {
  order: 2;
  margin-top: auto;
}

.note-card figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.note-card button {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.note-card button:hover {
  transform: scale(1.03);
}

.note-card img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border: 6px solid #fff;
}

.note-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: none;
  background: transparent;
}

.slide-number {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--gold-dark);
  background: #fff7df;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.note-copy h3 {
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #2a2a2a;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.note-copy p {
  color: #444;
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}

.point-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.point-list li {
  position: relative;
  padding: 0 0 0 24px;
  color: #333;
  font-family: 'Georgia', serif;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-style: italic;
  line-height: 1.6;
  border: none;
  background: transparent;
}

.point-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "•";
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  font-style: normal;
}

.slide-dialog {
  width: min(96vw, 1180px);
  border: 0;
  border-radius: var(--radius);
  padding: 12px;
  background: #101521;
}

.slide-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-close {
  float: right;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.slide-dialog img {
  clear: both;
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 980px) {
  .hero-section,
  .course-hero,
  .note-card {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .definition-grid,
  .definition-grid.compact,
  .chapter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .note-card figure {
    border-bottom: 1px solid var(--line);
  }

  .note-card,
  .note-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .note-card::before {
    display: none;
  }

  .note-card:nth-child(even) figure,
  .note-card:nth-child(even) .note-copy {
    order: initial;
  }

  .note-card:nth-child(even) figure {
    border-bottom: 1px solid var(--line);
  }

  .note-card:not(:nth-child(even)) figure,
  .note-card:nth-child(even) figure {
    padding: 16px;
  }

  .note-card img {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .hero-section h1 {
    font-size: 2.8rem;
  }

  .hero-media {
    padding: 6px;
  }

  .course-promo,
  .chapter-intro,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .definition-grid,
  .definition-grid.compact,
  .chapter-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-card {
    grid-template-columns: 1fr;
  }

  .subscribe-card img {
    width: 150px;
  }

  .brand-visual-top {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .brand-visual-top img {
    width: 86px;
    height: 86px;
  }

  .learning-board {
    grid-template-columns: 1fr;
  }
}


.print-only {
  display: none;
}

/* Print Styles */
@media print {
  @page {
    size: A4;
    margin: 15mm;
  }

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

  .print-only {
    display: block !important;
  }

  .site-header,
  .course-hero,
  .chapter-intro,
  .topic-menu,
  .site-footer,
  .btn,
  .dialog-close,
  #slideDialog {
    display: none !important;
  }

  .content-wrapper {
    display: block;
    margin: 0;
    padding: 0;
  }

  .slides-section {
    display: block;
    margin: 0;
    padding: 0;
  }

  /* Cover Page */
  .print-cover-page {
    height: 100vh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    page-break-after: always;
    break-after: page;
  }

  .print-cover-page h1 {
    font-family: "Georgia", serif;
    font-size: 48pt;
    color: #2b60a8;
    margin-bottom: 20pt;
  }

  .print-cover-page h2 {
    font-family: "Arial", sans-serif;
    font-size: 24pt;
    color: #555;
    margin-bottom: 40pt;
  }

  /* TOC Page */
  .print-toc-page {
    page-break-after: always;
    break-after: page;
  }

  .print-toc-page h2 {
    font-size: 28pt;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10pt;
    margin-bottom: 20pt;
  }

  #print-topic-list {
    list-style: none;
    padding: 0;
    column-count: 2;
    column-gap: 40pt;
  }

  #print-topic-list li {
    margin-bottom: 8pt;
    font-size: 12pt;
    border-bottom: 1px dotted #ccc;
  }

  /* Note Cards */
  .note-card {
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 30pt;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    min-height: auto;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20pt !important;
  }

  .note-card:nth-child(odd),
  .note-card:nth-child(even) {
     flex-direction: row !important;
     box-shadow: none !important;
     border: none !important;
  }

  .note-card figure,
  .note-card:nth-child(odd) figure,
  .note-card:nth-child(even) figure {
    order: 1 !important;
    margin: 0 !important;
    flex: 0 0 35% !important;
    border: none !important;
  }

  .note-card img {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    max-height: 250px !important;
    object-fit: contain !important;
  }

  .note-card .note-copy,
  .note-card:nth-child(odd) .note-copy,
  .note-card:nth-child(even) .note-copy {
    order: 2 !important;
    flex: 1 !important;
    padding: 0 !important;
  }

  .note-copy h3 {
    font-size: 18pt !important;
    margin-bottom: 8pt !important;
  }

  .note-copy p {
    font-size: 11pt !important;
    line-height: 1.4 !important;
  }

  .point-list {
    margin-top: 12pt !important;
  }

  .point-list li {
    font-size: 10pt !important;
    padding-left: 15pt !important;
  }

  .point-list li::before {
    font-size: 14pt !important;
    top: -2pt !important;
  }

  .slide-number {
    font-size: 9pt !important;
    padding: 2pt 6pt !important;
    border: 1px solid #aaa !important;
    background: transparent !important;
    margin-bottom: 5pt !important;
  }
}
