/* News article — single column, press-release layout */

.news-article-page {
  background: var(--color-white);
  padding: 0 1rem 3.5rem;
}

.news-article-page::before {
  content: "";
  display: block;
  height: var(--page-banner-image-min-height);
  margin: calc(-1 * var(--header-height)) -1rem 1.5rem;
  background-color: var(--color-primary);
  background-image: linear-gradient(
      to top,
      rgba(15, 23, 42, 0.78) 0%,
      rgba(15, 23, 42, 0.35) 55%,
      rgba(15, 23, 42, 0.42) 100%
    ),
    url("../image/newsroom-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-article-page__back {
  max-width: 52rem;
  margin: 0 auto 1.25rem;
}

.news-article {
  max-width: 52rem;
  margin: 0 auto;
}

/* Cover — full width of column, above title */
.news-article__cover {
  margin: 0 0 1.75rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.06);
}

.news-article__cover img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  max-height: min(52vh, 420px);
}

.news-article__header {
  margin-bottom: 1.25rem;
}

.news-article__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  text-align: left;
}

.news-article__meta {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(32, 52, 68, 0.75);
  text-align: left;
}

.news-article__lead {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-text);
}

.news-article__body {
  margin-bottom: 2rem;
}

.news-article__body p {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
}

.news-article__body p:last-child {
  margin-bottom: 0;
}

.news-article__body h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.news-article__body h2:first-child {
  margin-top: 0;
}

.news-article__body h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.news-article__body ul {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
}

.news-article__body li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.news-article__body strong {
  font-weight: 700;
}

.news-article__quote {
  margin: 0 0 2rem;
  padding: 1.25rem 1.35rem;
  background: #f4f4f4;
  border-radius: 0.25rem;
  border-left: 4px solid rgba(var(--color-primary-rgb), 0.35);
}

.news-article__quote p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--color-text);
}

.news-article__quote p:last-of-type {
  margin-bottom: 0;
}

.news-article__quote cite {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 600;
  color: rgba(32, 52, 68, 0.85);
}

.news-article__about {
  padding-top: 0.5rem;
}

.news-article__about-title {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

.news-article__about-rule {
  margin: 0 0 1.1rem;
  border: 0;
  border-top: 1px solid rgba(32, 52, 68, 0.2);
}

.news-article__about p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(32, 52, 68, 0.88);
}

.news-article__about h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

