* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbf7f4;
  color: #181614;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 10px;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 3px;
}

a {
  color: inherit;
  text-decoration: none;
}




/* ARTICLE HEADER */

.article-header {
  width: min(800px, 90%);
  margin: 75px auto 35px;
}

.article-meta {
  display: flex;
  gap: 20px;

  margin-bottom: 13px;

  color: #746d68;

  font-size: 7px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.article-header h1 {
  margin: 0;

  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;

  font-size: clamp(42px, 5vw, 67px);
  line-height: .98;
  letter-spacing: -.035em;
}

.article-info {
  display: flex;
  gap: 10px;

  margin-top: 22px;

  color: #746d68;

  font-size: 7px;
}


/* COVER */

.article-cover {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 55px;
}

.article-cover img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.article-cover small {
  display: block;

  margin-top: 5px;

  text-align: right;

  color: #77706a;
  font-size: 6px;
  font-style: italic;
}


/* ARTICLE CONTENT */

.article-content {
  width: min(650px, 88%);
  margin: 0 auto;

  color: #59534e;
}

.article-content p {
  margin: 0 0 20px;

  font-size: 9px;
  line-height: 1.75;
}

.article-content h2 {
  margin: 32px 0 10px;

  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;

  font-size: 22px;
  color: #181614;
}

.article-content blockquote {
  margin: 30px 0;
  padding: 0 25px;

  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.45;

  color: #393430;

  border-left: 1px solid #aaa19b;
}


/* NEWSLETTER */

.newsletter {
  width: 90%;
  max-width: 1050px;

  margin: 75px auto;

  padding: 55px 20px;

  text-align: center;

  background: #e9e1db;
}

.newsletter h2 {
  margin: 0 0 10px;

  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;

  font-size: 29px;
}

.newsletter p {
  max-width: 440px;
  margin: 0 auto 20px;

  color: #665f5a;
  font-size: 8px;
}

.newsletter form {
  width: 310px;
  max-width: 100%;
  margin: auto;

  display: flex;
  align-items: center;

  border-bottom: 1px solid #aaa19b;
}

.newsletter input {
  flex: 1;

  min-width: 0;

  padding: 10px 0;

  border: 0;
  outline: 0;

  background: transparent;

  font-size: 8px;
}

.newsletter button {
  border: 0;

  padding: 10px 16px;

  background: #181614;
  color: #fff;

  font-size: 7px;
  letter-spacing: .12em;
  text-transform: uppercase;

  cursor: pointer;
}

#newsletterMessage {
  display: block;
  margin-top: 10px;
}


/* FURTHER READING */

.further-reading {
  width: 90%;
  max-width: 1200px;

  margin: 0 auto 90px;
}

.reading-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid #d9d1cb;

  margin-bottom: 20px;
}

.reading-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 400;
}

.reading-heading a {
  font-size: 6px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reading-grid img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
}

.reading-grid span {
  display: block;

  margin-top: 8px;

  font-size: 6px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reading-grid h3 {
  margin: 5px 0;

  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
}




/* TABLET */

@media (max-width: 900px) {

  .navigation {
    gap: 13px;
  }

  .article-header {
    width: 85%;
  }

  .article-cover {
    width: 90%;
  }

  .article-cover img {
    height: 420px;
  }

}


/* MOBILE */

@media (max-width: 700px) {

  .site-header {
    height: 62px;
  }

  .menu-toggle {
    display: block;

    margin-left: auto;

    width: 35px;

    border: 0;
    background: transparent;

    cursor: pointer;
  }

  .menu-toggle span {
    display: block;

    width: 22px;
    height: 1px;

    margin: 5px 0;

    background: #181614;
  }

  .article-header {
    width: 86%;
    margin-top: 55px;
  }

  .article-header h1 {
    font-size: 39px;
    line-height: 1;
  }

  .article-cover {
    width: 90%;
  }

  .article-cover img {
    height: 270px;
  }

  .article-content {
    width: 84%;
  }

  .article-content p {
    font-size: 9px;
  }

  .article-content h2 {
    font-size: 20px;
  }

  .article-content blockquote {
    font-size: 15px;
    padding-left: 18px;
  }

  .newsletter {
    width: 90%;
    margin: 60px auto;
    padding: 45px 18px;
  }

  .reading-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .reading-grid img {
    aspect-ratio: 1.7;
  }

}


/* SMALL PHONE */

@media (max-width: 400px) {

  .article-header h1 {
    font-size: 34px;
  }

  .article-cover img {
    height: 230px;
  }

  .newsletter h2 {
    font-size: 25px;
  }

  .newsletter form {
    width: 100%;
  }

}