.article-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--nav-height) + 28px) 0 76px;
}

.article-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  color: var(--muted);
  font-size: 18px;
  white-space: nowrap;
}

.article-breadcrumb a {
  padding-block: 10px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.article-breadcrumb a:hover {
  text-decoration-color: currentColor;
}

.article-hero {
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}

.article-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .07em;
}

.article-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(48px, 7.35vw, 85px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.article-meta {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.article-cover {
  margin: 30px 0 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.article-cover img {
  width: 100%;
  /* height:auto is load-bearing: without it the height="..." attribute acts as
     a presentational hint (the global img rule sets only max-width), the
     aspect-ratio below is ignored, and a phone rendered the cover as a
     332x1024 sliver -- 1.3 viewports of crop. */
  height: auto;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: center 32%;
}

.article-body {
  max-width: 820px;
  margin: 42px auto 0;
}

.article-body p,
.article-body li {
  font-size: 23px;
  line-height: 1.76;
}

.article-body h2 {
  margin: 52px 0 16px;
  font-size: clamp(35px, 4.6vw, 48px);
  font-weight: 550;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.article-body h3 {
  margin: 28px 0 8px;
  font-size: 29px;
}

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

.article-body li + li {
  margin-top: 10px;
}

.article-answer {
  margin: 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--accent);
}

.article-note {
  margin: 32px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.article-cta {
  margin-top: 52px;
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}

.article-cta h2 {
  margin: 0 0 10px;
  color: var(--white);
}

.article-cta p {
  margin: 0 0 20px;
  color: #d7dcda;
}

.article-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-cta .button--quiet {
  border-color: rgba(255, 255, 255, .28);
  background: transparent;
  color: var(--white);
}

.article-related {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-related a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/*
 * Phone scale (Tur 9). The old block only shrank the h1 -- body copy stayed at
 * 22px and h2/h3 at their tablet sizes, which put a 7-minute article at nearly
 * 9000px of scroll on a 360px phone. These sizes match the rest of the site:
 * ahmet-coban.html reads at 17px and it is the best page on a phone.
 */
@media (max-width: 600px) {
  .article-page {
    width: calc(100% - 28px);
    padding-top: calc(var(--nav-height) + 20px);
  }

  .article-breadcrumb {
    font-size: 15px;
  }

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

  .article-kicker {
    font-size: 15px;
  }

  .article-hero h1 {
    font-size: clamp(32px, 9.6vw, 40px);
  }

  .article-meta {
    margin-top: 14px;
    font-size: 16px;
  }

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

  .article-body {
    margin-top: 30px;
  }

  .article-body p,
  .article-body li {
    font-size: 18px;
    line-height: 1.7;
  }

  .article-body h2 {
    margin-top: 40px;
    font-size: 26px;
  }

  .article-body h3 {
    font-size: 21px;
  }

  .article-answer {
    padding-left: 18px;
  }

  .article-cta {
    padding: 22px;
  }

  .article-cta__links {
    display: grid;
  }

  .article-cta__links .button {
    width: 100%;
  }
}
