/* ================================
   ARTICLE
================================ */

article {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  color: #e8e8e8;
  font-size: 1rem;
  line-height: 1.8;
}

/* ================================
   ARTICLE TITLE
================================ */

article h1 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ================================
   PARAGRAPH
================================ */

article p {
  margin: 0 0 18px;
  line-height: 1.8;
}

/* ================================
   ARTICLE SECTION
================================ */

article section {
  margin: 42px 0;
}

/* ================================
   H2
================================ */

article h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.35;
  font-weight: 750;
}

/* ================================
   H3
================================ */

article h3 {
  margin: 28px 0 12px;
  font-size: clamp(1.08rem, 2.5vw, 1.3rem);
  line-height: 1.45;
  font-weight: 700;
}

/* ================================
   LINKS
================================ */

article a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ================================
   LIST
================================ */

article ul,
article ol {
  margin: 0 0 20px;
  padding-left: 1.5rem;
}

article li {
  margin-bottom: 8px;
}

/* ================================
   STRONG
================================ */

article strong {
  font-weight: 700;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {
  article {
    padding: 0 16px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  article h1 {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  article h2 {
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 16px;
  }

  article h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-top: 24px;
  }

  article p {
    margin-bottom: 16px;
  }

  article section {
    margin: 34px 0;
  }
}
