/* -------------------------------------------------
   ABOUT PAGE LAYOUT
------------------------------------------------- */

.about-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 120px;
  font-family: "Helvetica Neue", sans-serif;
  color: #000;
  line-height: 1.6;
}

/* -------------------------------------------------
   HEADINGS
------------------------------------------------- */

.about-page h2 {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-weight: normal;
  font-style:italic;
}

.about-page h3 {
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-page h4 {
  font-size: 1.05rem;
  margin-top: 25px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* -------------------------------------------------
   BIO SECTION
------------------------------------------------- */

.bio-section {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
  align-items: start;
  margin-bottom: 80px;
}

.bio-text p {
  font-size: 1.05rem;
  line-height: 1.75;
}

.bio-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

/* -------------------------------------------------
   PRESS SECTION
------------------------------------------------- */

.press-section {
  margin-bottom: 80px;
}

.press-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.press-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* -------------------------------------------------
   CV SECTION
------------------------------------------------- */

.cv-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.cv-section li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* -------------------------------------------------
   RESPONSIVE
------------------------------------------------- */

@media (max-width: 900px) {
  .bio-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bio-photo img {
    max-width: 70%;
    margin: 0 auto;
    display: block;
  }

  .about-page {
    padding: 40px 20px 80px;
  }
}

@media (max-width: 600px) {
  .about-page h2 {
    font-size: 1.6rem;
  }

  .bio-text p,
  .press-list li,
  .cv-section li {
    font-size: 1rem;
  }
}
