.article-content-section {
  background: var(--paper);
}

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

.article-body h2 {
  margin: 3.25rem 0 1rem;
  color: var(--ink);
  font-family: Oswald, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 2rem 0 .75rem;
  color: var(--ink);
  font-family: Oswald, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-body p {
  margin: 0 0 1.4rem;
  color: #555650;
  font-size: 1rem;
  line-height: 1.85;
}

.article-body a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-list {
  display: grid;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
  gap: 1px;
  background: var(--line);
}

.article-list li {
  position: relative;
  min-height: 82px;
  padding: 24px 28px 24px 58px;
  background: #fff;
  color: #4f504b;
  line-height: 1.65;
}

.article-list li::before {
  position: absolute;
  top: 25px;
  left: 28px;
  color: var(--gold-dark);
  font-family: bootstrap-icons;
  content: "\f26e";
}

@media (max-width: 767.98px) {
  .article-body h2 {
    margin-top: 2.55rem;
  }

  .article-body p {
    font-size: .96rem;
    line-height: 1.75;
  }

  .article-list li {
    min-height: 0;
    padding: 22px 22px 22px 52px;
  }

  .article-list li::before {
    top: 23px;
    left: 23px;
  }

}
