:root {
  --wrap: 900px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 3rem));
  margin: 0 auto;
}

.back {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--teal);
  font-weight: 760;
}

.article-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--wash), #ffffff 21rem);
}

.article-main::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 27rem;
  background: repeating-radial-gradient(
    circle at 78% 10%,
    rgba(0, 138, 152, 0.13) 0 1px,
    transparent 1px 3.5rem
  );
  content: "";
  mask-image: linear-gradient(#000 0 42%, transparent 94%);
  pointer-events: none;
}

.news-article {
  position: relative;
  z-index: 1;
  padding: 4.3rem 0 5.5rem;
}

.news-article time {
  display: block;
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.94rem;
  font-weight: 800;
}

.news-article h1,
.news-article h2,
.news-article p {
  margin-top: 0;
}

.news-article h1 {
  max-width: 46rem;
  margin-bottom: 1.4rem;
  font-size: 3.8rem;
  line-height: 1.04;
}

.news-article p {
  max-width: 43rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.more-news {
  max-width: 43rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.more-news h2 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.more-news a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--teal);
  font-weight: 780;
}

.document-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--teal-strong);
  font-weight: 780;
}

.legal-page h1 {
  font-size: 3.2rem;
}

.legal-page h2 {
  max-width: 43rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.legal-page ul {
  max-width: 43rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.72;
}

.legal-page p a {
  color: var(--teal-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 2rem, var(--wrap));
  }

  .news-article {
    padding: 3.3rem 0 4.2rem;
  }

  .news-article h1 {
    font-size: 2.7rem;
  }

  .legal-page h1 {
    font-size: 2.5rem;
  }

  .article-main::before {
    height: 22rem;
    opacity: 0.8;
  }
}

html.desktop-site body {
  min-width: 1024px;
}

html.desktop-site .wrap {
  width: min(var(--wrap), calc(100% - 3rem));
}

html.desktop-site .news-article h1 {
  font-size: 3.8rem;
}
