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

html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

/* Tokens */
:root {
  --bg: #f7f6f5;
  --ink: #17181c;
  --ink-2: #4b4f5c;
  --tint: #efeae7;
  --accent: #1e40ff;
  --highlight: #ffe9a3;
  --highlight-underline-gradient: linear-gradient(transparent 65%, var(--highlight) 65%);
  --highlight-underline-size: 100% 1em;
  --highlight-underline-position: 0 100%;
  --radius-lg: 24px;
  --container: 1200px;
  --black: rgb(35, 35, 35);
  --space-16: 1rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
}

/* Base */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

@media (min-width: 430px) { body { font-size: 17px; } }
@media (min-width: 768px) { body { font-size: 18px; } }
@media (min-width: 1024px) { body { font-size: 19px; } }
@media (min-width: 1366px) { body { font-size: 20px; } }

h1 { font-size: clamp(32px, 4vw, 64px); line-height: 1.15; margin: 0.5em 0 0.25em; }
h2 { font-size: clamp(24px, 2.5vw, 36px); line-height: 1.25; margin: 0 0 0.25em; }
h3 { font-size: clamp(18px, 2vw, 24px); line-height: 1.3; margin: 0 0 0.25em; }

.lead {
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--ink-2);
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-16);
}

@media (min-width: 1024px) {
  .container { padding-left: var(--space-24); padding-right: var(--space-24); }
}

.section { padding: 56px 0; }

.section.hero + .section { padding-top: 0; }

.section.hero:has(+ .section) { padding-bottom: 32px; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.25rem;
}

.section-head .lead { max-width: 70ch; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .hero .grid-2 { grid-template-columns: 1.6fr 1fr; gap: 2rem; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .two-col { grid-template-columns: 1.2fr 1fr; }
}

/* Navigation */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px var(--space-16) 0;
}

@media (min-width: 1024px) {
  #navbar { padding-left: var(--space-24); padding-right: var(--space-24); }
}

.brand { text-decoration: none; }

.brand img {
  display: block;
  height: 28px;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  flex-shrink: 0;
}

.nav-link {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: none;
  background-image: var(--highlight-underline-gradient);
  background-size: var(--highlight-underline-size);
  background-repeat: no-repeat;
  background-position: var(--highlight-underline-position);
}

.nav-link[aria-current="page"] {
  font-weight: 600;
  background-image: var(--highlight-underline-gradient);
  background-size: var(--highlight-underline-size);
  background-repeat: no-repeat;
  background-position: var(--highlight-underline-position);
}

#navbar .nav-actions .cta-contact { flex-shrink: 0; }

/* Hero */
.hero-title { font-size: clamp(40px, 4vw, 64px); }

.u-underline {
  background-image: var(--highlight-underline-gradient);
  background-size: var(--highlight-underline-size);
  background-repeat: no-repeat;
  background-position: var(--highlight-underline-position);
}

.quote {
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 1.5rem 0;
  padding: 0.5rem;
  color: var(--ink);
  background: var(--tint);
  border-left: 4px solid var(--ink);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  border: 1px solid rgba(23, 24, 28, 0.15);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
}

.tick-list {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 18px;
}

.tick-list li { margin: 0.5rem 0; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: #fff;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #111;
}

.card-body { padding: 1rem; }

.meta { color: var(--ink-2); }

.feature-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-media { display: block; }
.feature-body { padding: 1rem; }

@media (min-width: 900px) {
  .feature-card { grid-template-columns: 1.4fr 1fr; }
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.pill-list li {
  border: 1px solid rgba(23, 24, 28, 0.15);
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-2);
}

.card-locked { position: relative; }

.card-locked .card-media img {
  filter: blur(6px) saturate(0.6) brightness(0.9);
}

.card-locked::after {
  content: "🔒 Available on request";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 1rem;
  background: rgba(11, 13, 20, 0.88);
  color: #fff;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}

.card-locked:hover::after { transform: translateY(0); }

figure figcaption {
  color: var(--ink-2);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.inline-cta {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--black);
  text-underline-offset: 0.12em;
}

.inline-cta:hover {
  text-decoration: none;
  color: var(--black);
  background-image: var(--highlight-underline-gradient);
  background-size: var(--highlight-underline-size);
  background-repeat: no-repeat;
  background-position: var(--highlight-underline-position);
}

/* Article filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.chip {
  border: 1px solid rgba(23, 24, 28, 0.2);
  border-radius: 999px;
  background: #fff;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
}

.chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* CTAs */
.cta-contact,
.yt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--space-24) * 44 / 48);
  min-width: 44px;
  min-height: 44px;
  width: calc(200px * 44 / 48);
  padding: 0 calc(var(--space-16) * 44 / 48);
  border-radius: 9999px;
  font-size: calc(1rem * 44 / 48);
  font-weight: 400;
  text-decoration: none;
}

.cta-contact {
  background-color: var(--black);
  color: #fff;
  border: 2px solid var(--black);
}

.cta-contact:hover {
  text-decoration: none;
  background-color: transparent;
  color: var(--black);
  border-color: var(--black);
  filter: none;
}

.cta-contact:hover .cta-icon {
  filter: brightness(0);
}

.cta-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  background-color: var(--black);
  color: #fff;
  flex-shrink: 0;
}

.cta-back:hover {
  text-decoration: none;
  filter: brightness(0.95);
}

.yt-cta {
  box-shadow: inset 0 0 0 2px var(--black);
  color: var(--black);
}

.yt-cta:hover { text-decoration: none; }

.yt-cta:hover .cta-icon { content: url(../assets/yt-icon-color.png); }

.cta-icon {
  height: calc(var(--space-32) * 44 / 48);
  width: auto;
  flex-shrink: 0;
}

#navbar .cta-contact { flex-shrink: 0; }

#navbar .cta-back { flex-shrink: 0; }

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

@media (min-width: 600px) {
  .footer-cta { flex-direction: row; gap: var(--space-16); }
}

/* Footer */
.site-footer {
  background: #f9f9f9;
  padding: var(--space-24) var(--space-16);
}

.site-footer p,
.footer-links a {
  font-size: 14px;
}

.site-footer p {
  margin: var(--space-24) 0 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: var(--space-24) 0 0;
  padding-left: 1rem;
}

.footer-links a {
  font-weight: 500;
}

@media (min-width: 1024px) {
  .site-footer { padding: var(--space-24); }
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: var(--space-16);
  top: 8px;
  width: auto;
  height: auto;
  padding: 0.5rem;
  background: var(--black);
  color: #fff;
  border-radius: 6px;
}

:focus-visible {
  outline: 3px solid #9bb1ff;
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  .card-locked::after { transition: none; }
}

/* App Store layout (apps index) */
.app-hero-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.app-hero-heading .hero-title {
  margin-top: 0;
}

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(23, 24, 28, 0.12);
  background: #fff;
  flex-shrink: 0;
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-product-tagline {
  margin: 0;
  font-size: 18px;
  color: var(--ink-2);
}

.app-product-meta {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--ink-2);
}

.app-product-actions {
  margin-top: 8px;
}

.app-hero-more {
  margin: 16px 0 0;
  font-size: 16px;
}

/* Apps subdomain — teal brand highlights */
.apps-site {
  --highlight: #03C4BF;
  --highlight-underline-gradient: linear-gradient(transparent 65%, var(--highlight) 65%);
}

/* Product page (Apple-inspired layout) */
.product-page {
  scroll-padding-top: 72px;
}

.product-hero {
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
}

.product-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.product-hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
}

.product-hero-title {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  margin: 0;
}

.product-hero-lead {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink-2);
  max-width: 28ch;
}

.product-subnav {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(247, 246, 245, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(23, 24, 28, 0.08);
  border-bottom: 1px solid rgba(23, 24, 28, 0.08);
}

.product-subnav-inner {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 16px 0;
  -webkit-overflow-scrolling: touch;
}

.product-subnav-link {
  flex-shrink: 0;
  color: var(--black);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.product-subnav-link:hover {
  text-decoration: none;
  background-image: var(--highlight-underline-gradient);
  background-size: var(--highlight-underline-size);
  background-repeat: no-repeat;
  background-position: var(--highlight-underline-position);
}

.spotlight {
  padding: 64px 0;
}

.spotlight--tint {
  background: #fff;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .spotlight-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .spotlight--reverse .spotlight-copy {
    order: 2;
  }

  .spotlight--reverse .spotlight-media {
    order: 1;
  }
}

.spotlight-eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}

.spotlight-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.spotlight-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 42ch;
}

.spotlight-media {
  display: flex;
  justify-content: center;
}

.device-frame--hero.device-frame--iphone {
  width: min(280px, 78vw);
}

.device-frame--hero.device-frame--ipad {
  width: min(480px, 92vw);
}

.product-gallery {
  background: var(--tint);
}

.product-gallery-head {
  margin-bottom: 32px;
  text-align: center;
}

.product-gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product-gallery-track:focus-visible {
  outline: 3px solid #9bb1ff;
  outline-offset: 4px;
  border-radius: 8px;
}

.product-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .product-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-feature-card {
  padding: 24px;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: 16px;
  background: #fff;
}

.product-feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.product-feature-card p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
}

#iphone,
#ipad,
#features,
#information {
  scroll-margin-top: 72px;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 9999px;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.app-store-badge:hover {
  text-decoration: none;
  filter: brightness(0.95);
}

.apps-site .app-store-badge {
  background-color: var(--highlight);
  color: var(--black);
  border: 2px solid var(--highlight);
  font-weight: 600;
}

.apps-site .app-store-badge:hover {
  background-color: transparent;
  color: var(--black);
  border-color: var(--black);
  filter: none;
}

.app-section-head {
  margin-bottom: 24px;
}

.app-section-title {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.app-section-lead {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
}

.app-subtitle {
  font-size: 20px;
  margin: 32px 0 8px;
}

.app-version {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--ink-2);
}

.app-feature-list { font-size: 16px; }

.screenshot-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screenshot-track:focus-visible {
  outline: 3px solid #9bb1ff;
  outline-offset: 4px;
  border-radius: 8px;
}

.device-frame {
  flex: 0 0 auto;
  margin: 0;
  scroll-snap-align: start;
}

.device-frame figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
}

.device-frame--iphone {
  width: min(220px, 70vw);
}

.device-frame--ipad {
  width: min(360px, 85vw);
}

.device-screen {
  border: 1px solid rgba(23, 24, 28, 0.12);
  background: linear-gradient(160deg, #fff 0%, var(--tint) 100%);
  overflow: hidden;
}

.device-frame--iphone .device-screen {
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(23, 24, 28, 0.12);
}

.device-frame--ipad .device-screen {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(23, 24, 28, 0.12);
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-screenshots--ipad {
  background: #fff;
  border-top: 1px solid rgba(23, 24, 28, 0.08);
  border-bottom: 1px solid rgba(23, 24, 28, 0.08);
}

.app-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .app-details-grid {
    grid-template-columns: 1.4fr 0.9fr;
    gap: 48px;
    align-items: start;
  }
}

.app-details-copy {
  font-size: 16px;
}

.app-details-copy p {
  margin: 0 0 16px;
}

.app-info-card {
  padding: 24px;
  border: 1px solid rgba(23, 24, 28, 0.1);
  border-radius: 16px;
  background: #fff;
}

.app-info-title {
  font-size: 20px;
  margin: 0 0 16px;
}

.app-info-list {
  margin: 0;
}

.app-info-list div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(23, 24, 28, 0.08);
  font-size: 14px;
}

.app-info-list div:first-child { border-top: 0; padding-top: 0; }

.app-info-list dt {
  margin: 0;
  color: var(--ink-2);
  font-weight: 500;
}

.app-info-list dd {
  margin: 0;
  color: var(--ink);
}

/* 404 page */
.error-hero {
  padding-top: 64px;
  padding-bottom: 32px;
}

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

.error-title {
  margin: 0 0 16px;
  font-size: clamp(72px, 14vw, 160px);
  line-height: 1;
}

.error-subtitle {
  margin: 0;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 700;
}

.site-tree-section {
  padding-top: 0;
}

.site-tree {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(23, 24, 28, 0.1);
  border-radius: 16px;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.site-tree > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-tree li {
  margin: 0;
  padding: 0;
}

.site-tree ul {
  margin: 8px 0 16px;
  padding-left: 24px;
  border-left: 2px solid rgba(23, 24, 28, 0.08);
}

.site-tree ul:last-child {
  margin-bottom: 0;
}

.site-tree > li > a {
  font-size: 18px;
  font-weight: 700;
}

.site-tree a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-tree a:hover {
  background-image: var(--highlight-underline-gradient);
  background-size: var(--highlight-underline-size);
  background-repeat: no-repeat;
  background-position: var(--highlight-underline-position);
  text-decoration: none;
}

/* Articles */
body.article-page { font-size: 16px; }

.article-page .hero-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
}

.article-page .lead { font-size: 16px; }

.article-content {
  max-width: 72ch;
  font-size: 16px;
}

.article-content h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-top: 32px;
}

.article-content h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 24px;
}

.article-content p,
.article-content li,
.article-content figcaption,
.article-content td,
.article-content th {
  font-size: 16px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25rem;
}

.article-content li { margin: 8px 0; }

.article-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  background: var(--tint);
  padding: 0.15em 0.35em;
  border-radius: 4px;
}

.article-content figure { margin: 24px 0; }

.article-content figure code {
  display: block;
  padding: 16px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.article-hero-media {
  margin: 24px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.article-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 600px) {
  .article-meta-grid { grid-template-columns: repeat(4, 1fr); }
}

.article-meta-grid li {
  padding: 16px;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: 12px;
  background: #fff;
}

.article-meta-grid strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  margin-bottom: 4px;
}

.article-meta-grid p { margin: 0; font-size: 14px; }

.num-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  counter-reset: article-step;
}

.num-list > li {
  counter-increment: article-step;
  margin: 0 0 16px;
  padding: 24px;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: 16px;
  background: #fff;
}

.num-list > li::before {
  content: counter(article-step, decimal-leading-zero);
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.num-list h2 {
  font-size: 20px;
  margin: 0 0 8px;
}

.num-list p { margin: 0; }

.article-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-card-link:hover { text-decoration: none; }

.article-card-link:hover .card-body h3 {
  background-image: var(--highlight-underline-gradient);
  background-size: var(--highlight-underline-size);
  background-repeat: no-repeat;
  background-position: var(--highlight-underline-position);
}

.article-card-media {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.article-card .card-body h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.article-card .card-body p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
}

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

@media (min-width: 900px) {
  .card-grid--featured {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: stretch;
  }
}

.high-light {
  background-image: var(--highlight-underline-gradient);
  background-size: var(--highlight-underline-size);
  background-repeat: no-repeat;
  background-position: var(--highlight-underline-position);
}

/* Privacy policy pages */
body.privacy-page { font-size: 16px; }

.privacy-page .hero-title {
  font-size: 40px;
  line-height: 1.2;
}

.privacy-page .lead,
.privacy-page .privacy-meta {
  font-size: 16px;
}

.privacy-content {
  max-width: 72ch;
  font-size: 16px;
}

.privacy-content h2 {
  font-size: 32px;
  line-height: 1.25;
  margin-top: 32px;
}

.privacy-content h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-top: 24px;
}

.privacy-content p,
.privacy-content li,
.privacy-content th,
.privacy-content td {
  font-size: 16px;
}

.privacy-content ul { padding-left: 1.25rem; }
.privacy-content li { margin: 8px 0; }

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.privacy-content th,
.privacy-content td {
  border: 1px solid rgba(23, 24, 28, 0.15);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.privacy-content th { background: var(--tint); }

.privacy-summary {
  background: var(--tint);
  border-left: 4px solid var(--ink);
  padding: 16px 24px;
  margin: 24px 0;
}

.privacy-summary h2 {
  font-size: 32px;
  margin-top: 0;
}

.privacy-meta { color: var(--ink-2); margin-bottom: 24px; }

.privacy-related {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 24, 28, 0.08);
}
