:root {
  --paper: #ffffff;
  --ink: #050505;
  --sans: Arial, Helvetica, sans-serif;
  --serif: "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 8px 10px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  font: 12px/1 var(--sans);
}

.skip-link:focus {
  transform: translateY(0);
}

.home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100svh;
  align-items: center;
  padding: clamp(28px, 5vw, 78px);
}

.home-copy {
  justify-self: center;
  width: min(100%, 520px);
  padding: 36px;
  text-align: center;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.12;
}

.home-copy h1,
.home-copy p {
  margin: 0;
  font: inherit;
  font-weight: 400;
}

.article-list {
  display: grid;
  gap: 24px;
  margin: 22px 0 0;
  padding: 0;
  list-style-position: inside;
}

.article-list li {
  padding-left: 0;
}

.article-list a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 160ms ease;
}

.article-list a:hover,
.article-list a:focus-visible {
  text-decoration-color: currentColor;
}

.byline {
  display: block;
  margin-top: 2px;
}

.cover-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cover {
  width: min(35vw, 540px);
  height: auto;
}

.site-logo {
  position: fixed;
  z-index: 10;
  top: 24px;
  left: 28px;
  width: 94px;
  height: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.site-logo img {
  position: absolute;
  top: -53.3px;
  left: -16.3px;
  width: 126.5px;
  height: 126.5px;
  max-width: none;
}

.site-logo:hover,
.site-logo:focus-visible {
  opacity: 0.62;
}

.article-header {
  text-align: center;
}

.article-header h1,
.article-header p {
  margin: 0;
  font-weight: 400;
}

.article-header .author,
.article-header .date {
  font-family: var(--serif);
}

.manifesto {
  min-height: 100svh;
  padding: clamp(92px, 12vh, 142px) 24px 120px;
}

.manifesto .article-header h1 {
  font: 400 clamp(26px, 2.55vw, 40px)/1.03 var(--sans);
  text-transform: uppercase;
}

.manifesto .article-header .author,
.manifesto .article-header .date {
  font-size: clamp(17px, 1.42vw, 22px);
  line-height: 1.02;
}

.manifesto-body {
  width: min(100%, 900px);
  margin: clamp(72px, 10vh, 112px) auto 0;
  font: 400 clamp(16px, 1.18vw, 18px)/1.06 var(--sans);
}

.manifesto-body p {
  margin: 0 0 1.05em;
}

.history {
  width: min(100%, 1180px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 62px 32px 130px;
}

.history .article-header {
  margin-bottom: 54px;
}

.history .article-header h1 {
  font: 400 clamp(20px, 1.75vw, 27px)/1.05 var(--sans);
  text-transform: uppercase;
}

.history .article-header .author,
.history .article-header .date {
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.02;
}

.history-body {
  font: 400 13px/1.16 var(--sans);
}

.article-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.88fr) minmax(250px, 1fr);
  gap: 38px;
  align-items: start;
  margin-bottom: 30px;
}

.article-spread.has-wide {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
}

.spread-copy p {
  margin: 0 0 0.92em;
}

.spread-copy {
  grid-column: 1;
  grid-row: 1;
}

.spread-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  grid-column: 2;
  grid-row: 1;
}

.spread-media.media-count-2,
.spread-media.media-count-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.history-body figure {
  width: 100%;
  margin: 0;
}

.spread-media.media-count-1 figure.portrait {
  width: 72%;
  margin-inline: auto;
}

.history-body figure.wide {
  grid-column: 1 / -1;
}

.history-body figcaption {
  margin: 0 0 8px;
  font-size: 10.5px;
  font-style: italic;
  line-height: 1.15;
}

.history-body figure img {
  width: 100%;
  height: auto;
}

@media (max-width: 820px) {
  .home {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 72px 24px 48px;
  }

  .home-copy {
    padding: 0;
    font-size: 16px;
  }

  .cover {
    width: min(78vw, 440px);
  }

  .site-logo {
    top: 18px;
    left: 18px;
  }

  .manifesto {
    padding: 96px 22px 80px;
  }

  .manifesto .article-header h1 {
    font-size: clamp(25px, 8vw, 36px);
  }

  .manifesto-body {
    margin-top: 62px;
    font-size: 17px;
    line-height: 1.22;
  }

  .history {
    padding: 86px 20px 90px;
  }

  .history .article-header {
    margin-bottom: 58px;
  }

  .history .article-header h1 {
    font-size: 25px;
  }

  .history .article-header .author,
  .history .article-header .date {
    font-size: 16px;
  }

  .history-body {
    font-size: 16px;
    line-height: 1.25;
  }

  .article-spread,
  .article-spread.has-wide {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 46px;
  }

  .spread-copy p {
    margin-bottom: 1.1em;
  }

  .spread-media,
  .spread-media.media-count-2,
  .spread-media.media-count-3 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .history-body figure.portrait {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .history-body figcaption {
    font-size: 12px;
    line-height: 1.22;
  }
}

@media print {
  .site-logo,
  .skip-link {
    display: none;
  }

  .manifesto,
  .history {
    padding-top: 36px;
  }
}
