/* Highlights Section — scoped styles */
@font-face {
  font-family: "Arizona Flare";
  src: url("../fonts/arizona_flare_300_normal_headings_h1-h6.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Helveesti";
  src: url("../fonts/helveesti_400_normal_body_ui.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* Section tokens — aligned to base.css + course tabs palette */
.highlights{
  --hl-bg: var(--page-bg);      /* from :root */   /* matches site bg */
  --hl-ink: var(--page-ink);    /* from :root */   /* matches site text */
  --hl-accent: #1C1BAE;         /* course-tabs accent */
  --hl-soft: #BDCFFB;           /* soft surface used in other sections */
  --hl-border: 1px solid var(--hl-ink);

  background: var(--hl-bg);
  color: var(--hl-ink);
}

/* Header */
.highlights__header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(20px, 4vw, 32px);
}
.highlights__eyebrow{
  font-family: "Helveesti", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  font-size: 12px; margin: 0 0 6px; color: var(--hl-accent);
}
.highlights__title{
  font-family: "Arizona Flare", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.2; margin: 0 0 8px;
}
.highlights__sub{
  font-family: "Helveesti", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 15px; line-height: 1.45; margin: 0 auto;
  color: color-mix(in oklab, var(--hl-ink) 80%, transparent);
}

/* Grid */
.highlights__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(12px, 2.8vw, 22px);
}
@media (max-width: 980px){ .highlights__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px){ .highlights__grid{ grid-template-columns: 1fr; } }

/* Card */
.highlights__card{
  border: var(--hl-border);
  border-radius: 10px;
  background: var(--hl-bg);
  padding: clamp(14px, 3vw, 18px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.highlights__card:hover{
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--hl-accent) 40%, var(--hl-ink));
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

/* Icon + titles */
.highlights__icon{
  font-size: 24px; line-height: 1;
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: var(--hl-border);
  background: var(--hl-soft);
  margin-bottom: 8px;
}
.highlights__cardTitle{
  font-family: "Arizona Flare", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-weight: 300; font-size: 18px; margin: 6px 0 6px;
}
.highlights__cardText{
  font-family: "Helveesti", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 14px; line-height: 1.5; margin: 0;
}

/* Focus styles for a11y (if cards are linked later) */
.highlights__card:focus-within{
  outline: 2px solid var(--hl-accent);
  outline-offset: 2px;
}
