.about-story {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 76px;
}

.about-portrait {
  margin: 0;
  position: relative;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: -12px 14px 14px -12px;
  border: 1px solid #bcaac8;
  border-radius: 24px;
  opacity: 0.58;
}

.about-portrait img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 24px 58px #67587324;
}

.about-copy .kicker {
  color: #806c8d;
  margin-bottom: 21px;
}

.about-copy h3 {
  font-size: clamp(25px, 2.65vw, 38px);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.about-copy > p:not(.kicker) {
  font-size: 15px;
  line-height: 2.05;
  color: #5f5962;
  margin-bottom: 18px;
}

.about-copy .about-belief {
  padding-top: 8px;
  color: #403942;
  font-weight: 500;
}

.representative {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid #bcb6c1;
  margin-top: 30px;
  padding-top: 23px;
}

.representative span {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #716977;
}

.representative strong {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

@media (max-width: 800px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 58px;
  }

  .about-portrait {
    max-width: 200px;
  }

  .about-copy h3 br {
    display: none;
  }
}

@media (max-width: 460px) {
  .about-portrait::before {
    inset: -7px 9px 9px -7px;
    border-radius: 18px;
  }

  .about-portrait img {
    border-radius: 15px;
  }

  .about-copy > p:not(.kicker) {
    font-size: 14px;
  }
}
