:root {
  --sky: #58bfe9;
  --sky-deep: #1296ca;
  --lemon: #ffe247;
  --paper: #ffffff;
  --mist: #eef8fc;
  --ink: #17202a;
  --muted: #5e6973;
  --line: #17202a;
  --coral: #ef6a5b;
  --max: 1260px;
  --reading: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
input {
  font: inherit;
}

button,
input[type="submit"] {
  cursor: pointer;
}

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

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

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

.site-header {
  border-bottom: 2px solid var(--line);
}

.issue-bar {
  background: var(--lemon);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.issue-bar__inner,
.masthead,
.nav-inner,
.page-shell,
.site-footer__inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.issue-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 16px;
}

.issue-bar a {
  text-decoration: none;
}

.masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: end;
  gap: 32px;
  padding: 24px 0 20px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  color: var(--ink);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.9;
  text-decoration: none;
  text-transform: lowercase;
}

.brand__snow {
  position: relative;
  color: var(--sky-deep);
}

.brand__snow::after {
  position: absolute;
  top: -4px;
  right: -16px;
  width: 12px;
  height: 12px;
  background: var(--lemon);
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.brand__dot {
  color: var(--coral);
}

.masthead__note {
  margin: 0;
  padding-left: 18px;
  border-left: 5px solid var(--lemon);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.primary-nav {
  background: var(--ink);
  color: var(--paper);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 50px;
}

.nav-toggle {
  display: none;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-weight: 700;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list li:last-child {
  margin-left: auto;
}

.nav-list a {
  display: block;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--lemon);
  color: var(--ink);
}

.page-shell {
  padding-block: 40px 72px;
}

.section-kicker,
.eyebrow,
.card__category,
.article-meta,
.issue-label {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker,
.eyebrow,
.card__category {
  color: var(--sky-deep);
}

.hero-story {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.85fr);
  min-height: 590px;
  border: 2px solid var(--line);
}

.hero-story__media {
  min-height: 100%;
  background: var(--mist);
  overflow: hidden;
}

.hero-story__media img {
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.hero-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--sky);
  border-left: 2px solid var(--line);
}

.hero-story__index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-story h1 {
  max-width: 12ch;
  margin: 28px 0 18px;
  font-size: 50px;
  line-height: 1.02;
}

.hero-story p {
  margin: 0 0 24px;
  line-height: 1.55;
}

.story-link {
  display: inline-block;
  width: fit-content;
  padding: 11px 14px;
  border: 2px solid var(--line);
  background: var(--lemon);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 140ms ease, transform 140ms ease;
}

.story-link:hover {
  box-shadow: 2px 2px 0 var(--ink);
  text-decoration: none;
  transform: translate(3px, 3px);
}

.editorial-section {
  margin-top: 64px;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading::after {
  height: 2px;
  background: var(--line);
  content: "";
}

.section-heading h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.1;
}

.section-heading a {
  grid-column: 3;
  font-size: 13px;
  font-weight: 700;
}

.two-up {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
}

.story-card {
  display: grid;
  align-content: start;
  min-width: 0;
}

.story-card + .story-card {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.card__image-link {
  display: block;
  margin-bottom: 18px;
  overflow: hidden;
}

.card__image-link img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 260ms ease;
}

.story-card--secondary .card__image-link img {
  aspect-ratio: 4 / 3;
}

.card__image-link:hover img {
  transform: scale(1.018);
}

.card__category {
  width: fit-content;
  margin-bottom: 8px;
  text-decoration: none;
}

.story-card h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.12;
}

.story-card h3 a {
  text-decoration: none;
}

.story-card h3 a:hover {
  text-decoration: underline;
}

.story-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.card__meta {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.weekend-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--lemon);
}

.weekend-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.weekend-band__number {
  margin-bottom: 36px;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.8;
  color: var(--coral);
}

.weekend-band h2 {
  max-width: 16ch;
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.06;
}

.weekend-band p {
  max-width: 50ch;
  margin: 0 0 22px;
}

.weekend-band__media {
  min-height: 480px;
  border-left: 2px solid var(--line);
}

.weekend-band__media img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.review-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 0;
  border: 2px solid var(--line);
}

.review-feature__media img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.review-feature__copy {
  padding: 34px;
  border-left: 2px solid var(--line);
  background: var(--mist);
}

.review-feature h2 {
  margin: 10px 0 15px;
  font-size: 32px;
  hyphens: auto;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.review-feature p {
  color: var(--muted);
}

.browse-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.browse-strip a {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.browse-strip a + a {
  border-left: 1px solid var(--line);
}

.browse-strip a:hover {
  background: var(--sky);
}

.browse-strip span {
  color: var(--coral);
  font-size: 28px;
}

.page-header {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.38fr);
  gap: 42px;
  align-items: end;
  padding: 18px 0 30px;
  border-bottom: 2px solid var(--line);
}

.page-header h1 {
  max-width: 18ch;
  margin: 6px 0 0;
  font-size: 54px;
  line-height: 1.03;
}

.page-header p {
  margin: 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 30px;
  padding-top: 38px;
}

.category-grid .story-card + .story-card {
  padding-left: 0;
  border-left: 0;
}

.category-grid .story-card:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.article-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: 36px 0 76px;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 34px;
}

.article-header h1 {
  max-width: 18ch;
  margin: 12px 0 22px;
  font-size: 58px;
  line-height: 1.02;
}

.article-deck {
  max-width: 65ch;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
}

.article-header__stamp {
  padding: 24px;
  border-top: 7px solid var(--lemon);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.article-header__stamp strong {
  display: block;
  margin-top: 4px;
  font-size: 38px;
  line-height: 1;
}

.article-hero {
  margin: 0;
  border: 2px solid var(--line);
}

.article-hero img {
  max-height: 720px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.article-hero figcaption {
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
}

.article-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, var(--reading)) 1fr;
  gap: 44px;
  align-items: start;
  margin-top: 48px;
}

.article-aside {
  position: sticky;
  top: 18px;
  padding-top: 12px;
  border-top: 2px solid var(--line);
  font-size: 12px;
}

.article-aside strong,
.article-aside a {
  display: block;
  margin-bottom: 8px;
}

.article-body {
  min-width: 0;
  font-size: 18px;
  line-height: 1.78;
}

.article-body .intro {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.58;
}

.article-body h2 {
  margin: 54px 0 16px;
  padding-top: 12px;
  border-top: 4px solid var(--sky);
  font-size: 32px;
  line-height: 1.17;
}

.article-body h3 {
  margin: 34px 0 12px;
  font-size: 23px;
  line-height: 1.25;
}

.article-body h4 {
  margin: 28px 0 8px;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 26px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 22px 26px;
  border-left: 8px solid var(--lemon);
  background: var(--mist);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.article-endmark {
  width: 54px;
  height: 12px;
  margin-top: 40px;
  background: var(--lemon);
  border: 2px solid var(--line);
}

.related {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 2px solid var(--line);
}

.related h2 {
  margin: 0 0 20px;
  font-size: 28px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  text-decoration: none;
}

.related-item img {
  width: 150px;
  height: 105px;
  object-fit: cover;
}

.related-item strong {
  line-height: 1.25;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin: 36px 0;
  border: 2px solid var(--line);
}

.search-panel input[type="search"] {
  min-width: 0;
  min-height: 58px;
  padding: 12px 16px;
  border: 0;
  color: var(--ink);
  font-size: 18px;
}

.search-panel button {
  padding: 0 24px;
  border: 0;
  border-left: 2px solid var(--line);
  background: var(--lemon);
  color: var(--ink);
  font-weight: 800;
}

.search-status {
  min-height: 28px;
  margin-bottom: 20px;
  color: var(--muted);
}

.search-results {
  border-top: 2px solid var(--line);
}

.search-result {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.search-result img {
  width: 180px;
  height: 120px;
  object-fit: cover;
}

.search-result h2 {
  margin: 5px 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.search-result p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 2px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 44px 0;
}

.footer-brand {
  margin: 0 0 14px;
  color: var(--sky);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.site-footer p {
  max-width: 44ch;
  margin: 0;
  color: #cdd6de;
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--lemon);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 7px;
}

.site-footer a {
  color: var(--paper);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid #52606c;
  font-size: 12px;
}

@media (max-width: 980px) {
  .brand {
    font-size: 58px;
  }

  .hero-story {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }

  .hero-story h1 {
    font-size: 42px;
  }

  .article-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-header__stamp {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .article-layout {
    grid-template-columns: minmax(0, var(--reading)) 1fr;
  }

  .article-aside {
    display: none;
  }
}

@media (max-width: 760px) {
  .issue-bar__inner,
  .masthead,
  .nav-inner,
  .page-shell,
  .site-footer__inner,
  .article-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .issue-bar__inner span:nth-child(2) {
    display: none;
  }

  .masthead {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0 18px;
  }

  .brand {
    max-width: 100%;
    font-size: 44px;
  }

  .brand__snow::after {
    right: -11px;
    width: 9px;
    height: 9px;
  }

  .masthead__note {
    max-width: 48ch;
  }

  .nav-inner {
    display: block;
    min-height: 46px;
  }

  .nav-toggle {
    display: block;
    min-height: 46px;
  }

  .nav-list {
    display: none;
    align-items: stretch;
    padding-bottom: 10px;
  }

  .nav-list.is-open {
    display: block;
  }

  .nav-list li:last-child {
    margin-left: 0;
  }

  .nav-list a {
    padding: 12px 0;
    border-top: 1px solid #56616c;
  }

  .page-shell {
    padding-block: 24px 52px;
  }

  .hero-story,
  .two-up,
  .weekend-band,
  .review-feature,
  .page-header,
  .category-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero-story {
    min-height: 0;
  }

  .hero-story__media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-story__copy {
    padding: 24px;
    border-top: 2px solid var(--line);
    border-left: 0;
  }

  .hero-story h1 {
    max-width: none;
    margin-top: 22px;
    font-size: 38px;
  }

  .editorial-section {
    margin-top: 46px;
  }

  .section-heading {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .section-heading a {
    grid-column: 1 / -1;
  }

  .story-card + .story-card,
  .category-grid .story-card:nth-child(even) {
    margin-top: 34px;
    padding: 34px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .story-card h3 {
    font-size: 26px;
  }

  .weekend-band__copy {
    padding: 28px 24px;
  }

  .weekend-band__number {
    margin-bottom: 24px;
    font-size: 50px;
  }

  .weekend-band h2,
  .review-feature h2 {
    font-size: 32px;
  }

  .weekend-band__media {
    min-height: 0;
    border-top: 2px solid var(--line);
    border-left: 0;
  }

  .weekend-band__media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .review-feature__media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .review-feature__copy {
    padding: 26px 24px;
    border-top: 2px solid var(--line);
    border-left: 0;
  }

  .browse-strip {
    grid-template-columns: 1fr;
  }

  .browse-strip a {
    min-height: 70px;
  }

  .browse-strip a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .page-header {
    gap: 18px;
  }

  .page-header h1 {
    font-size: 40px;
  }

  .article-shell {
    padding-top: 24px;
  }

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

  .article-deck {
    font-size: 18px;
  }

  .article-header__stamp strong {
    font-size: 30px;
  }

  .article-hero img {
    aspect-ratio: 4 / 3;
  }

  .article-layout {
    display: block;
    margin-top: 34px;
  }

  .article-body {
    font-size: 17px;
  }

  .article-body .intro {
    font-size: 20px;
  }

  .article-body h2 {
    margin-top: 44px;
    font-size: 28px;
  }

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

  .search-result {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }

  .search-result img {
    width: 100px;
    height: 90px;
  }

  .search-result h2 {
    font-size: 20px;
  }

  .site-footer__inner {
    gap: 28px;
  }

  .footer-bottom {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 36px;
  }

  .hero-story h1,
  .article-header h1,
  .page-header h1 {
    font-size: 34px;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-panel button {
    min-height: 48px;
    border-top: 2px solid var(--line);
    border-left: 0;
  }

  .search-result {
    grid-template-columns: 1fr;
  }

  .search-result img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
