@font-face {
  font-family: "LT Cushion";
  src: url("fonts/lt_cushion/LTCushion-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}

:root {
  --bg-color: #f8fbf8;
  --text-color: #250d00;
  --body-font: "Google Sans", "Product Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
}

.page {
  min-height: 100vh;
  padding: 64px 16px 32px;
}

.about {
  width: 100%;
  max-width: 864px;
  margin: 0 auto;
}

.portrait {
  display: block;
  width: 100%;
  max-width: 416px;
  height: auto;
  margin: 0 auto;
}

.intro {
  margin-top: 20px;
}

.intro-divider {
  position: relative;
  width: 100%;
  height: 1px;
}

.intro-divider-line {
  display: block;
  width: 100%;
  height: 1px;
}

.intro-clef {
  position: absolute;
  top: -31px;
  right: 17px;
  width: 68.938px;
  height: 44.34px;
  align-items: center;
  justify-content: center;
  transform: rotate(-110.54deg);
  transform-origin: 50% 50%;
}

.intro-clef img {
  display: block;
}

.intro-text {
  margin: 16px 0 0;
  font-family: "LT Cushion", "Times New Roman", serif;
  font-size: 32px;
  font-weight: 300;
  line-height: normal;
}

.intro-emphasis {
  font-style: normal;
}

.details {
  display: grid;
  margin-top: 32px;
  grid-template-columns: 1fr;
  row-gap: 32px;
}

.detail {
  width: 100%;
}

.detail-title {
  margin: 0;
  font-family: var(--body-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: normal;
  text-transform: uppercase;
}

.detail-text {
  margin: 4px 0 0;
  font-family: var(--body-font);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.17px;
  line-height: normal;
}

.detail-text-spaced {
  margin-top: 0;
}

.detail-contact {
  white-space: nowrap;
}

.mobile-clef {
  width: 23px;
  height: 65px;
  margin: 32px auto 0;
}

@media (max-width: 899.98px) {
  .intro-clef {
    display: none !important;
  }

  .mobile-clef {
    display: block !important;
  }
}

@media (min-width: 900px) {
  .page {
    padding: 64px 32px 48px;
  }

  .intro-text {
    font-size: 36px;
  }

  .intro-clef {
    display: flex !important;
  }

  .details {
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 23px;
  }

  .detail-teaching {
    order: 1;
  }

  .detail-professional {
    order: 2;
  }

  .detail-pedagogical {
    order: 3;
  }

  .detail-contact-block {
    order: 4;
  }

  .mobile-clef {
    display: none !important;
  }
}
