/* Only affects About page */
/* Base page background (Desktop) */
.page-template-page-about {
  min-height: 100vh;

  background: linear-gradient(
    230deg,

    #f4f3e8 0%,
    #f5ebe0 32%,

    #f9c6b5 58%,
    #f7d7c9 74%,

    #d5dacb 86%,
    #e3d1c1 100%
  );


  background-repeat: no-repeat;
  background-attachment: scroll;
}



/* Layout */
.about-section {
  display: grid;
  grid-template-columns: 420px 525px;
  gap: 8px;
  padding: 60px 40px;
  min-width: 1065px;
}

/* Left side */
.about-title {
  font-size: 64px;
  margin-bottom: 20px;
}

.profile-img {
  max-width: 350px;
}

/* Right side */
.about-right h2 {
  font-size: 42px;
  margin-bottom: 5px;
}


.about-right p {
  line-height: 1.8;
  margin-bottom: 20px;

  font-size: 18px;
  font-weight: 500;
}

.about-right .subtitle {
  font-style: italic;
  margin-bottom: 20px;

  font-size: 20px;
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-template-page-about {
    overflow-x: hidden;
  }

  .about-section {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 38px 24px 46px;
    gap: 0;
  }

  .about-left {
    display: contents;
  }

  .about-title {
    order: 1;
    font-size: 42px;
    line-height: 1.05;
    margin: 0 0 24px;
  }

  .profile-img {
    order: 2;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto 32px;
  }

  .about-right {
    order: 3;
  }

  .about-right h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 8px;
  }

  .about-right p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
  }

.about-right .subtitle,
.about-right .subtitle p {
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 18px;
}

.about-right .subtitle p {
  margin: 0;
}
}