:root {
  --bg: #eef4ff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #001247;
  --muted: #38507c;
  --line: rgba(0, 18, 71, 0.12);
  --accent: #001247;
  --accent-deep: #000a28;
  --accent-bright: #008ed6;
  --accent-bright-soft: rgba(0, 142, 214, 0.12);
  --shadow: 0 10px 30px rgba(0, 18, 71, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfdff 0%, #f1f6ff 48%, #eaf1ff 100%);
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 16px));
  transition: transform 140ms ease, opacity 140ms ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(0, 18, 71, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  width: clamp(62px, 7vw, 82px);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 320px;
}

.brand-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 700;
}

.brand-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--accent);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.92rem;
  color: var(--accent);
  align-items: center;
}

.site-nav a {
  padding: 6px 0;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  color: var(--accent-bright);
  background: transparent;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
  background: transparent;
  border-color: var(--accent-bright);
}

.hero,
.browse-lead,
.home-copy,
.page-intro,
.controls,
.results-bar,
.gallery-section,
.catalog-section,
.about,
.stewardship,
.record-hero,
.record-detail-grid,
.record-metadata,
.home-story {
  margin-top: 24px;
}

.hero,
.gallery,
.context,
.record-detail-grid,
.browse-lead,
.home-copy {
  display: grid;
  gap: 14px;
}

.collection-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.collection-switcher-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.collection-switcher-link:hover,
.collection-switcher-link:focus-visible {
  background: rgba(0, 142, 214, 0.1);
  border-color: rgba(0, 142, 214, 0.32);
  outline: none;
}

.collection-switcher-link.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, #16398f 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 18, 71, 0.14);
}

.hero {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.page-intro,
.controls,
.results-bar,
.gallery-section,
.catalog-section,
.about,
.context-card,
.stewardship,
.site-footer,
.empty-state,
.pathway-card,
.feature-band,
.record-media-panel,
.record-intro,
.record-panel,
.record-metadata {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.hero-copy,
.record-intro {
  padding: clamp(24px, 3vw, 40px);
}

.hero-copy-wide {
  max-width: none;
  width: 100%;
}

.hero-panel,
.page-intro,
.controls,
.results-bar,
.gallery-section,
.catalog-section,
.about,
.context-card,
.stewardship,
.site-footer,
.empty-state,
.pathway-card,
.feature-band,
.record-panel,
.record-metadata {
  padding: 20px;
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(0, 18, 71, 0.98), rgba(0, 10, 40, 0.98)),
    var(--accent);
  color: #fff;
}

.hero-home .hero-copy {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 10px 0 6px;
}

.hero-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 52px;
  align-items: start;
}

.hero-main {
  display: grid;
  align-content: start;
  gap: 20px;
}

.hero-side {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 0;
}

.page-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.page-intro-plain {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 8px 0 0;
}

.browse-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 36px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 8px 0 0;
}

.browse-page-intro-copy {
  display: grid;
  gap: 10px;
}

.browse-page .page-intro-plain h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 4.8rem);
  line-height: 0.96;
}

.browse-page .page-intro-plain .hero-text {
  max-width: 34ch;
  font-size: 1.04rem;
  margin: 0;
  background: transparent;
}

.about-page .page-intro-plain {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  max-width: 56rem;
}

.about-page #about-main {
  background: transparent;
}

.eyebrow,
.section-label,
.panel-label,
.card-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent-bright);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 700;
}

.hero-home h1 {
  max-width: none;
  font-size: clamp(2.8rem, 4.6vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-page h1 {
  max-width: none;
  font-size: clamp(2.45rem, 3.8vw, 3.5rem);
  line-height: 0.98;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 600;
}

h3 {
  font-size: 1.18rem;
  font-weight: 600;
}

.hero-text,
.section-intro,
.about p,
.context-card p,
.stewardship p,
.site-footer p,
.card-description,
.card-creator,
.card-meta,
#results-count,
.results-note,
.record-description,
.record-panel p,
.record-meta-list dd,
.record-creator,
.pathway-card p {
  color: var(--muted);
}

.hero-text,
.section-intro,
.about p,
.context-card p,
.stewardship p,
.site-footer p,
.record-description,
.record-panel p,
.pathway-card p {
  line-height: 1.8;
}

.hero-text {
  max-width: 46ch;
  margin: 0;
  font-size: 0.98rem;
}

.hero-main .hero-text {
  max-width: 58ch;
}

.about-page .hero-text {
  max-width: 60ch;
  justify-self: start;
  margin-bottom: 0;
}

.featured-preview {
  display: grid;
  gap: 14px;
}

.featured-preview-frame {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.featured-preview-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: transparent;
}

.featured-preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  display: block;
}

.featured-preview-static {
  gap: 0;
}

.featured-preview-frame-static {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
}

.featured-preview-frame-static img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.featured-preview-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.slideshow-button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 142, 214, 0.08);
  color: var(--accent);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.slideshow-button:hover,
.slideshow-button:focus-visible {
  background: rgba(0, 142, 214, 0.16);
  border-color: rgba(0, 142, 214, 0.28);
  outline: none;
}

.section-intro,
.results-note {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #16398f 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 18, 71, 0.18);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent);
}

.inline-link,
.text-link,
.record-table-link {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stats {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.stats article {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.home-copy {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.home-copy-single {
  grid-template-columns: 1fr;
}

.home-copy-block {
  padding-top: 18px;
  border-top: 1px solid rgba(0, 18, 71, 0.16);
}

.home-copy-block p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 56ch;
}

#home-main .site-footer {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 10px 0 0;
}

.browse-lead {
  grid-template-columns: 1.2fr 0.8fr;
}

.browse-lead-card {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.browse-lead-card p {
  color: var(--muted);
  line-height: 1.8;
}

.browse-lead-card-dark {
  background:
    linear-gradient(180deg, rgba(0, 18, 71, 0.98), rgba(0, 10, 40, 0.98)),
    var(--accent);
}

.browse-lead-card-dark h2,
.browse-lead-card-dark p {
  color: #fff;
}

.toolbar {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.toolbar-wide {
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(220px, 1fr));
}

.search-field,
.filter-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.search-field input,
.filter-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  font: inherit;
  color: var(--ink);
}

.search-field input:focus,
.filter-field select:focus {
  outline: 2px solid rgba(0, 142, 214, 0.34);
  border-color: rgba(0, 142, 214, 0.55);
}

.results-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.sort-field {
  min-width: 250px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.section-heading .section-intro {
  max-width: 52ch;
}

.gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-records {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.browse-page .controls,
.browse-page .results-bar,
.browse-page .gallery-section {
  padding: 18px;
  border-radius: 14px;
}

.browse-page .controls h2,
.browse-page .gallery-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.browse-page .section-intro,
.browse-page .results-note {
  max-width: 58ch;
}

.browse-page .gallery-records {
  gap: 18px;
}

.card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
  position: relative;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 18, 71, 0.16);
}

.card-link {
  display: block;
  height: 100%;
}

.card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d6e6ff, #f5faff);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 18px 18px 20px;
  background: #fff;
}

.card h3 {
  font-size: 1.28rem;
  line-height: 1.16;
}

.browse-page .card {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 18, 71, 0.08);
}

.browse-page .card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: transparent;
}

.browse-page .card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.browse-page .card:hover,
.browse-page .card:focus-within {
  box-shadow: 0 20px 46px rgba(0, 18, 71, 0.12);
}

.browse-page .card-body {
  padding: 16px;
}

.browse-page .card h3 {
  font-size: 1.12rem;
  line-height: 1.14;
}

.browse-page .card-description {
  font-size: 0.92rem;
}

.browse-page-african .card-description {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  overflow: visible;
  font-size: 0.92rem;
  line-height: 1.6;
}

.browse-page .card-kicker {
  margin-bottom: 8px;
}

.browse-page .card-creator {
  margin-top: 8px;
  font-size: 0.94rem;
}

.browse-page .card-summary {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.card-creator,
.card-description {
  margin: 8px 0 0;
}

.card-kicker {
  margin-bottom: 10px;
}

.card-creator {
  font-weight: 600;
}

.card-description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.96rem;
  line-height: 1.55;
}

.card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 16px;
  font-size: 0.84rem;
}

.card-meta div {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.card-meta dt,
.record-meta-list dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-bright);
}

.card-meta dd {
  margin: 6px 0 0;
}

.browse-page-african .card-meta {
  grid-template-columns: 1fr;
  gap: 10px;
}

.browse-page-african .card-meta div {
  padding-top: 10px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.pagination-status {
  margin: 0;
  min-width: 120px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.pagination-button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 18px;
}

.about-copy-block {
  padding-top: 18px;
  border-top: 1px solid rgba(0, 18, 71, 0.16);
}

.about-copy-block p {
  max-width: none;
  color: var(--muted);
  line-height: 1.85;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 18, 71, 0.16);
}

.about-page .site-footer {
  margin-top: 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 12px 0 0;
}

.about-page .page-intro,
.about-page .page-intro-plain {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  max-width: 56rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 8px 0 0;
}

.context {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.context-card h3 {
  font-size: 1.9rem;
}

.context-card,
.about,
.stewardship,
.site-footer,
.record-panel,
.record-metadata,
.page-intro,
.gallery-section,
.catalog-section,
.controls,
.results-bar {
  background: #fff;
}

.stewardship {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.empty-state h2 {
  margin-bottom: 12px;
}

.record-page .page-shell {
  width: min(1280px, calc(100% - 32px));
}

.record-header {
  padding-bottom: 8px;
}

.record-shell {
  display: grid;
  gap: 24px;
}

.record-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.record-media-panel {
  width: 100%;
  max-width: 520px;
  justify-self: start;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.record-media-panel img {
  width: 100%;
  max-height: 680px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, #d6e6ff, #f5faff);
}

.record-creator {
  margin: 16px 0 0;
  font-size: 1.08rem;
}

.record-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.record-summary-grid article {
  padding: 14px;
  border-radius: 10px;
  background: rgba(0, 142, 214, 0.08);
  border: 1px solid var(--line);
}

.record-summary-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-bright);
}

.record-summary-value {
  display: block;
  font-weight: 700;
  color: var(--ink);
}

.record-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.record-panel h2 {
  margin-bottom: 16px;
}

.record-metadata {
  display: grid;
  gap: 22px;
}

.record-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
}

.record-meta-row {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.record-meta-list dd {
  margin: 8px 0 0;
  line-height: 1.7;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1320px) {
  .gallery-records {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero,
  .about,
  .about-copy,
  .stewardship,
  .toolbar-wide,
  .page-intro,
  .record-hero,
  .browse-lead,
  .home-copy {
    grid-template-columns: 1fr;
  }

  .hero-intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-page .page-intro-plain {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .browse-page-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-intro,
  .feature-band {
    display: grid;
  }

  .gallery,
  .gallery-records,
  .context,
  .record-detail-grid,
  .record-meta-list {
    grid-template-columns: 1fr 1fr;
  }

  .record-hero {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-home h1 {
    font-size: clamp(2.65rem, 6.2vw, 3.7rem);
  }

  .browse-page .page-intro-plain h1 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 6vw, 3.8rem);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(1240px, calc(100% - 20px));
    padding-top: 18px;
  }

  .site-header,
  .results-bar,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .toolbar-wide,
  .gallery,
  .gallery-records,
  .context,
  .record-detail-grid,
  .record-meta-list,
  .record-summary-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-title {
    font-size: 1.16rem;
  }

  .hero-copy,
  .record-intro,
  .page-intro,
  .gallery-section,
  .catalog-section,
  .controls,
  .results-bar {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .hero-home h1 {
    font-size: clamp(2.35rem, 10vw, 3.05rem);
    line-height: 0.98;
  }

  .about-page h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .browse-page .page-intro-plain h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .about-page .hero-text {
    max-width: 100%;
    justify-self: start;
    margin-bottom: 0;
  }

  h2 {
    line-height: 1;
  }

  .hero-actions,
  .about-links,
  .featured-preview-controls,
  .collection-switcher {
    flex-direction: column;
  }

  .button,
  .slideshow-button,
  .collection-switcher-link {
    width: 100%;
  }
}
