:root{--font-inter:Arial,Helvetica,sans-serif;--font-newsreader:Georgia,"Times New Roman",serif}


:root {
  --ivory: #f3f8fa;
  --paper: #ffffff;
  --white: #ffffff;
  --navy: #343e48;
  --terracotta: #2fa2d1;
  --terracotta-dark: #23799d;
  --sand: #a1c4d2;
  --slate: #5b6770;
  --line: rgba(47, 162, 209, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--font-inter), Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  padding: 0 clamp(24px, 5.2vw, 76px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(255px, 30vw, 390px);
  height: auto;
}

nav {
  display: flex;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}

nav a {
  position: relative;
  padding: 12px 0;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 162, 209, 0.2), rgba(75, 78, 90, 0.08)),
    url("/assets/technologyforall-hero.png");
  background-blend-mode: color, normal;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(243, 248, 250, 0.98) 0%,
    rgba(243, 248, 250, 0.9) 37%,
    rgba(243, 248, 250, 0.08) 64%,
    rgba(243, 248, 250, 0) 100%
  );
  content: "";
}

.hero-content {
  width: min(700px, 56vw);
  padding: 112px 0 96px clamp(24px, 5.2vw, 76px);
  animation: reveal 500ms ease-out both;
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--terracotta-dark);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-newsreader), Georgia, serif;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(52px, 5.2vw, 76px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 585px;
  margin-bottom: 32px;
  color: #4b5963;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 2px solid transparent;
  border-radius: 3px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--terracotta);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--terracotta-dark);
}

.button-secondary {
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.editions-preview {
  position: relative;
  padding: 108px clamp(24px, 5.2vw, 76px) 120px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  column-gap: 7vw;
  margin-bottom: 46px;
}

.section-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.section-heading h2,
.forum-intro h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 4.4vw, 66px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.section-heading > p:last-child,
.forum-intro > p:last-child {
  align-self: end;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

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

.edition-card {
  display: block;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--sand);
  background: var(--white);
  padding: clamp(28px, 3vw, 46px);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.edition-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 18px 50px rgba(35, 121, 157, 0.12);
  transform: translateY(-4px);
}

.edition-year {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 50px;
  font-family: var(--font-newsreader), Georgia, serif;
  font-size: clamp(52px, 4.6vw, 74px);
  font-weight: 600;
  line-height: 1;
}

.edition-year::after {
  display: block;
  width: 86px;
  height: 2px;
  margin-top: 18px;
  background: var(--terracotta);
  content: "";
}

.edition-lines {
  position: absolute;
  top: 24px;
  right: -25px;
  width: 52%;
  height: 150px;
  opacity: 0.45;
  transform: rotate(-7deg);
}

.edition-lines span {
  position: absolute;
  inset: 16% 0 auto;
  height: 18px;
  border-top: 1px solid var(--sand);
  border-radius: 50%;
}

.edition-lines span:nth-child(2) {
  top: 32%;
  transform: scaleX(0.92);
}

.edition-lines span:nth-child(3) {
  top: 48%;
  transform: scaleX(0.78);
}

.edition-lines span:nth-child(4) {
  top: 64%;
  transform: scaleX(0.64);
}

.edition-label {
  margin-bottom: 10px;
  color: var(--terracotta-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.edition-card > p:not(.edition-label) {
  max-width: 340px;
  margin-bottom: 24px;
  color: var(--slate);
  line-height: 1.6;
}

.edition-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.edition-status svg,
.archive-list svg,
.edition-pagination svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.edition-card:hover .edition-status svg,
.edition-card:focus-visible .edition-status svg,
.archive-list a:hover svg,
.archive-list a:focus-visible svg,
.edition-pagination a:hover svg,
.edition-pagination a:focus-visible svg {
  transform: translateX(5px);
}

.forum-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 8vw;
  padding: 124px clamp(24px, 5.2vw, 76px);
  background: var(--ivory);
}

.forum-intro .kicker {
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.forum-intro h2 {
  margin-bottom: 30px;
}

.theme-list {
  border-top: 1px solid var(--line);
}

.theme-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.theme-list article > span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
}

.theme-list h3 {
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 600;
}

.theme-list p {
  margin-bottom: 0;
  color: var(--slate);
  line-height: 1.65;
}

.archive-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(480px, 1.25fr);
  gap: 8vw;
  padding: 124px clamp(24px, 5.2vw, 76px);
  background: var(--navy);
  color: var(--white);
}

.archive-heading {
  position: sticky;
  top: 48px;
  align-self: start;
}

.archive-heading .kicker {
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.archive-heading h2,
.next-edition h2,
.materials-section h2 {
  margin-bottom: 28px;
  font-size: clamp(46px, 4.8vw, 70px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.archive-heading > p:not(.kicker) {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.archive-photo-link {
  margin-top: 30px;
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.archive-photo-link:hover,
.archive-photo-link:focus-visible {
  border-color: #57b3d6;
  color: #57b3d6;
}

.archive-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.archive-list a {
  display: grid;
  grid-template-columns: 110px 1fr 30px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 26px 0;
  transition: color 180ms ease;
}

.archive-list a:hover,
.archive-list a:focus-visible {
  color: #57b3d6;
}

.archive-year {
  font-family: var(--font-newsreader), Georgia, serif;
  font-size: 37px;
  font-weight: 600;
}

.archive-list strong,
.archive-list small {
  display: block;
}

.archive-list strong {
  margin-bottom: 7px;
  font-size: 15px;
}

.archive-list small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.next-edition {
  position: relative;
  overflow: hidden;
  padding: 124px clamp(24px, 5.2vw, 76px);
  background:
    linear-gradient(rgba(243, 248, 250, 0.94), rgba(243, 248, 250, 0.94)),
    url("/assets/technologyforall-hero.png") center 52% / cover;
}

.next-edition::after {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(47, 162, 209, 0.38);
  border-radius: 50%;
  content: "";
}

.next-edition .kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.next-edition h2 {
  max-width: 650px;
}

.next-edition > p:not(.kicker) {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 48px;
  align-items: end;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  padding: 72px clamp(24px, 5.2vw, 76px) 48px;
}

.edition-page {
  background: var(--paper);
}

.edition-header {
  background: var(--paper);
}

.edition-hero {
  position: relative;
  overflow: hidden;
  padding: 70px clamp(24px, 6.5vw, 96px) 86px;
  background: var(--ivory);
}

.back-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 82px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--terracotta-dark);
}

.edition-hero > .kicker {
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.edition-title-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(400px, 1.25fr);
  gap: 7vw;
  align-items: end;
}

.edition-title-row > h1 {
  margin-bottom: 0;
  color: var(--terracotta);
  font-size: clamp(110px, 14vw, 210px);
  font-weight: 580;
  letter-spacing: -0.07em;
  line-height: 0.72;
}

.edition-title-row h2 {
  max-width: 740px;
  margin-bottom: 0;
  font-size: clamp(50px, 5.3vw, 78px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.edition-title-row .edition-label {
  margin-bottom: 18px;
}

.edition-map-lines {
  position: absolute;
  top: 76px;
  right: -90px;
  width: 52%;
  height: 440px;
  opacity: 0.52;
  transform: rotate(-8deg);
}

.edition-map-lines span {
  position: absolute;
  inset: 10% 0 auto;
  height: 70px;
  border-top: 1px solid var(--sand);
  border-radius: 50%;
}

.edition-map-lines span:nth-child(2) {
  top: 23%;
  transform: scaleX(0.94);
}

.edition-map-lines span:nth-child(3) {
  top: 37%;
  transform: scaleX(0.84);
}

.edition-map-lines span:nth-child(4) {
  top: 51%;
  transform: scaleX(0.7);
}

.edition-map-lines span:nth-child(5) {
  top: 65%;
  transform: scaleX(0.52);
}

.edition-body {
  display: grid;
  grid-template-columns: minmax(430px, 1.25fr) minmax(300px, 0.75fr);
  gap: 10vw;
  padding: 110px clamp(24px, 6.5vw, 96px);
}

.edition-lead {
  margin-bottom: 64px;
  font-family: var(--font-newsreader), Georgia, serif;
  font-size: clamp(31px, 3.2vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.edition-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.edition-facts div {
  border-right: 1px solid var(--line);
  padding: 24px 22px 8px 0;
}

.edition-facts div + div {
  padding-left: 22px;
}

.edition-facts div:last-child {
  border-right: 0;
}

.edition-facts dt {
  margin-bottom: 9px;
  color: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.edition-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.edition-focus {
  border-top: 3px solid var(--terracotta);
  padding-top: 24px;
}

.edition-focus .kicker {
  margin-bottom: 28px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.edition-focus ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.edition-focus li {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  font-family: var(--font-newsreader), Georgia, serif;
  font-size: 26px;
  line-height: 1.2;
}

.materials-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 110px);
  padding: 110px clamp(24px, 6.5vw, 96px);
  background: var(--ivory);
}

.materials-section > * {
  min-width: 0;
}

.materials-section .kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.materials-section h2 {
  font-size: clamp(42px, 4vw, 60px);
}

.materials-section > div > p:last-child {
  color: var(--slate);
  line-height: 1.75;
}

.materials-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.material-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.edition-photo {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-sizing: border-box;
}

.edition-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.edition-photo figcaption {
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.materials-section-alt {
  padding-top: 0;
}

.programme-section {
  padding: 110px clamp(24px, 6.5vw, 96px);
  background: var(--paper);
}

.programme-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: end;
  margin-bottom: 56px;
}

.programme-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 60px);
}

.programme-days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.programme-days article {
  min-width: 0;
  padding: 32px clamp(20px, 2.5vw, 40px) 38px;
}

.programme-days article + article {
  border-left: 1px solid var(--line);
}

.programme-date {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.programme-days h3 {
  margin: 0 0 20px;
  font-family: var(--font-newsreader), Georgia, serif;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.12;
}

.programme-days ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--slate);
  line-height: 1.6;
}

.programme-days li + li {
  margin-top: 0.6rem;
}

.programme-days-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.programme-days article > p:not(.programme-date):not(.presentation-authors) {
  color: var(--slate);
  line-height: 1.7;
}

.presentation-authors {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.locations-section {
  padding: 110px clamp(24px, 6.5vw, 96px);
  background: var(--mist);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.location-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.location-card .edition-photo {
  border: 0;
  border-bottom: 1px solid var(--line);
}

.location-card .edition-photo img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.location-card > div {
  padding: clamp(24px, 3vw, 38px);
}

.location-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-newsreader), Georgia, serif;
  font-size: clamp(28px, 2.6vw, 38px);
}

.location-card > div > p:last-child {
  margin-bottom: 0;
  color: var(--slate);
  line-height: 1.7;
}

.materials-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  font-family: var(--font-newsreader), Georgia, serif;
  font-size: 27px;
}

.materials-list span {
  padding-top: 5px;
  color: var(--terracotta);
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.edition-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
}

.edition-pagination > a {
  display: grid;
  min-height: 190px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: end;
  border-right: 1px solid var(--line);
  padding: 42px clamp(24px, 6.5vw, 96px);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.edition-pagination > a:hover,
.edition-pagination > a:focus-visible {
  background: var(--terracotta);
  color: var(--white);
}

.edition-pagination span {
  grid-column: 1 / -1;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edition-pagination a:hover span,
.edition-pagination a:focus-visible span {
  color: rgba(255, 255, 255, 0.75);
}

.edition-pagination strong {
  font-family: var(--font-newsreader), Georgia, serif;
  font-size: 48px;
  font-weight: 600;
}

.edition-pagination svg {
  align-self: end;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-content: center;
  justify-items: start;
  background: var(--ivory);
  padding: 48px;
}

.not-found .brand-logo {
  margin-bottom: 72px;
}

.not-found h1 {
  max-width: 760px;
}

.footer-brand {
  margin-bottom: 18px;
  border-radius: 3px;
  background: var(--white);
  padding: 8px 12px;
}

.footer-brand .brand-logo {
  width: min(330px, 100%);
}

footer p {
  margin-bottom: 0;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a {
  width: fit-content;
  color: var(--white);
  font-weight: 600;
}

.footer-label {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.copyright {
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(243, 248, 250, 0.98) 0%,
      rgba(243, 248, 250, 0.95) 56%,
      rgba(243, 248, 250, 0.4) 100%
    );
  }

  .hero-content {
    width: min(670px, 86vw);
  }

  .section-heading,
  .forum-section,
  .archive-section,
  .edition-title-row,
  .edition-body,
  .materials-section,
  .programme-heading {
    grid-template-columns: 1fr;
  }

  .programme-days {
    grid-template-columns: 1fr;
  }

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

  .programme-days article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .archive-heading {
    position: static;
  }

  .edition-title-row {
    align-items: start;
  }

  .edition-title-row > h1 {
    font-size: 130px;
    line-height: 0.8;
  }

  .edition-body {
    gap: 72px;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

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

  .edition-card {
    min-height: 300px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 88px;
  }

  .brand-logo {
    width: clamp(190px, 54vw, 260px);
  }

  nav {
    gap: 18px;
    font-size: 13px;
  }

  nav a:first-child {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-media {
    background-position: 70% center;
    opacity: 0.52;
  }

  .hero::after {
    background: rgba(243, 248, 250, 0.86);
  }

  .hero-content {
    width: 100%;
    padding-top: 76px;
    padding-right: 24px;
  }

  .eyebrow {
    font-size: 15px;
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(45px, 13vw, 60px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .edition-photo {
    overflow: visible;
  }

  .edition-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .editions-preview,
  .forum-section,
  .archive-section,
  .next-edition,
  .edition-body,
  .materials-section,
  .programme-section,
  .locations-section {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .archive-list a {
    grid-template-columns: 74px 1fr 24px;
    gap: 16px;
  }

  .archive-year {
    font-size: 28px;
  }

  .archive-list small {
    display: none;
  }

  .back-link {
    margin-bottom: 56px;
  }

  .edition-title-row > h1 {
    font-size: 92px;
  }

  .edition-title-row h2 {
    font-size: 44px;
  }

  .edition-facts {
    grid-template-columns: 1fr;
  }

  .edition-facts div,
  .edition-facts div + div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .edition-pagination {
    grid-template-columns: 1fr;
  }

  .edition-pagination > span {
    display: none;
  }

  .edition-pagination > a {
    min-height: 150px;
  }

  .section-heading h2,
  .forum-intro h2 {
    font-size: 44px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
