:root {
  --ink: #102e2b;
  --paper: #fffaf0;
  --soft: #dce5dc;
  --green: #315f59;
  --orange: #df7867;
  --coral: #df7867;
  --lime: #c4dda0;
  --yellow: #e7cf7c;
  --lavender: #c5c4dc;
  --line: rgba(16, 46, 43, .18);
  --muted: #5d716c;
}

body {
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  min-height: 68px;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding: 0 4vw;
}

.masthead,
.footer-mark {
  font: 950 31px/1 Arial, Helvetica, sans-serif;
  letter-spacing: -.075em;
}

.masthead span,
.footer-mark span {
  color: var(--coral);
}

.primary-nav {
  justify-content: flex-end;
}

.primary-nav a {
  padding: 27px 0 23px;
  border-bottom-width: 2px;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--ink);
  border-color: var(--coral);
}

.home {
  max-width: 1400px;
  padding: 36px 4vw 90px;
}

.home-mast {
  align-items: end;
  gap: 40px;
  padding: 0 0 27px;
  border-bottom: 0;
}

.home-mast h1 {
  max-width: 900px;
  margin: 7px 0 0;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .88;
  letter-spacing: -.075em;
}

.home-mast > p {
  max-width: 280px;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
}

.kicker {
  color: var(--coral);
  font-weight: 900;
}

.front-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 18px;
  padding: 0;
  border: 0;
}

.front-lead {
  position: relative;
  display: block;
  min-height: 555px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--soft);
}

.front-lead::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(5, 35, 32, .9));
  pointer-events: none;
}

.front-lead-visual {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.front-lead-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  color: white;
}

.front-lead-copy .kicker {
  color: var(--lime);
}

.front-lead-copy h2 {
  max-width: 820px;
  margin: 11px 0 13px;
  font: 700 clamp(35px, 4vw, 58px)/.95 Georgia, 'Times New Roman', serif;
  letter-spacing: -.045em;
}

.front-lead-copy > p:not(.kicker) {
  max-width: 650px;
  color: #edf3ee;
  font-size: 14px;
}

.story-link {
  color: inherit;
  border-color: currentColor;
}

.front-rail {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.front-rail.single {
  grid-template-rows: 1fr;
}

.rail-story {
  display: grid;
  grid-template-columns: minmax(145px, .95fr) minmax(185px, 1.05fr);
  grid-template-rows: 1fr;
  gap: 0;
  min-height: 268px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: var(--yellow);
}

.rail-story:nth-child(2) {
  background: var(--lavender);
}

.rail-visual {
  min-height: 0;
}

.rail-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 23px;
}

.rail-story h2 {
  margin: 9px 0;
  font: 700 clamp(22px, 2.2vw, 31px)/1 Georgia, 'Times New Roman', serif;
  letter-spacing: -.03em;
}

.circle-link {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-top: auto;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 700;
}

.about-panel {
  border-radius: 24px;
}

.story-art {
  isolation: isolate;
  display: block;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, var(--yellow) 0 9%, transparent 9.3%),
    linear-gradient(142deg, transparent 0 53%, rgba(255,255,255,.22) 53% 55%, transparent 55%),
    linear-gradient(145deg, #315f59 0 52%, #7ca89e 52% 72%, #d4a89f 72%);
}

.story-art::before {
  content: '';
  position: absolute;
  inset: 13% 10%;
  z-index: -1;
  border: 2px solid rgba(255,255,255,.38);
  border-radius: 48% 52% 35% 65%;
  transform: rotate(-8deg);
}

.story-art::after {
  content: '';
  position: absolute;
  right: 9%;
  bottom: 10%;
  width: 32%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(197, 196, 220, .78);
  box-shadow: -75px -30px 0 rgba(196, 221, 160, .55);
}

.story-art .art-shape {
  position: absolute;
  top: 16%;
  left: 12%;
  width: 26%;
  height: 52%;
  background: rgba(255,250,240,.72);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.more-stories {
  padding-top: 58px;
}

.section-head {
  border-bottom: 0;
}

.section-head h2 {
  margin-bottom: 17px;
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-card {
  padding: 12px 0 24px;
  border-top: 4px solid var(--ink);
  border-bottom: 0;
}

.story-card-visual {
  height: 220px;
  margin-bottom: 18px;
  border-radius: 18px;
}

.story-card h3 {
  font: 700 27px/1.02 Georgia, 'Times New Roman', serif;
}

.no-news {
  margin-top: 30px;
  border-top-color: var(--coral);
}

.article-page {
  max-width: 1120px;
  margin-top: 64px;
}

.article-head {
  max-width: 920px;
  border-bottom: 0;
}

.article-head h1 {
  font-size: clamp(45px, 6.5vw, 82px);
  line-height: .92;
}

.standfirst {
  max-width: 800px;
  color: var(--muted);
  font: 21px/1.45 Arial, Helvetica, sans-serif;
}

.article-hero {
  margin-top: 22px;
}

.article-hero img {
  max-height: 680px;
  border-radius: 26px;
}

.article-body {
  max-width: 720px;
  font-family: Georgia, 'Times New Roman', serif;
}

.article-body p:first-child:first-letter {
  color: var(--coral);
}

.source-box {
  padding: 28px;
  border-top: 0;
  border-radius: 20px;
  background: #ebe9f1;
}

.source-box > a:last-child {
  border-bottom: 1px solid var(--line);
}

.info-page {
  max-width: 1240px;
  padding-top: 62px;
}

.info-hero {
  border-bottom: 0;
}

.info-hero h1 {
  max-width: 980px;
}

.info-layout > aside {
  border-radius: 20px;
  background: var(--ink);
}

.contact-grid {
  gap: 16px;
  border: 0;
  background: transparent;
}

.contact-grid article {
  border-radius: 18px;
  background: #ebe9f1;
}

.site-footer {
  background: #f4eddf;
}

@media (max-width: 1000px) {
  .front-grid {
    grid-template-columns: 1fr;
  }

  .front-rail {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .front-rail.single {
    grid-template-columns: 1fr;
  }

  .rail-story {
    grid-template-columns: 1fr;
    grid-template-rows: 210px 1fr;
  }

  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-inline: 20px;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .primary-nav a {
    padding: 11px 0 13px;
  }

  .home {
    padding: 28px 20px 60px;
  }

  .home-mast {
    display: block;
  }

  .home-mast > p {
    display: block;
    margin-top: 18px;
  }

  .home-mast h1 {
    font-size: 54px;
  }

  .front-lead {
    min-height: 490px;
  }

  .front-lead-copy {
    padding: 28px 24px;
  }

  .front-lead-copy h2 {
    font-size: 36px;
  }

  .front-rail,
  .front-rail.single,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .rail-story {
    grid-template-columns: 130px 1fr;
    grid-template-rows: minmax(190px, auto);
  }

  .rail-story h2 {
    font-size: 24px;
  }

  .story-card-visual {
    height: 250px;
  }

  .article-page {
    margin-top: 44px;
  }

  .article-hero img {
    border-radius: 0;
  }

  .source-box {
    margin-inline: -8px;
    padding: 24px;
  }
}

@media (max-width: 460px) {
  .home-mast h1 {
    font-size: 47px;
  }

  .front-lead {
    min-height: 450px;
  }

  .front-lead-copy h2 {
    font-size: 32px;
  }

  .front-lead-copy > p:not(.kicker) {
    display: none;
  }

  .rail-story {
    grid-template-columns: 1fr;
    grid-template-rows: 210px auto;
  }

  .story-card-visual {
    height: 220px;
  }
}
