.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 68px;
  align-items: center;
}

.about-photo {
  position: relative;
  min-height: 620px;
}

.about-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 26px 26px 95px 26px;
  box-shadow: var(--shadow);
}

.about-year {
  position: absolute;
  right: -25px;
  bottom: 36px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--secondary);
  color: #fff;
  border: 8px solid #fff;
}

.about-year b {
  font: italic 500 1.1rem Georgia, serif;
}

.about-year span {
  font: 600 1.8rem Georgia, serif;
  color: #ffc9df;
}

.about-copy blockquote {
  margin: 22px 0 26px;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
  color: #593749;
  font: italic 500 1.12rem/1.65 Georgia, serif;
}

.about-copy h3 {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.about-copy p + p {
  margin-top: 13px;
}

.about-highlight {
  margin: 25px 0;
  padding: 18px 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--soft), #fff);
  border: 1px solid var(--line);
}

.about-highlight strong,
.about-highlight span {
  display: block;
}

.about-highlight strong {
  color: var(--secondary);
}

.about-highlight span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .88rem;
}

@media(max-width:820px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-photo {
    min-height: auto;
  }

  .about-photo img {
    height: 560px;
  }

  .about-year {
    right: 8px;
  }
}

@media(max-width:580px) {
  .about-photo img {
    height: 500px;
  }

  .about-year {
    width: 115px;
    height: 115px;
  }
}
