.about-section{
  background: var(--ap-surface, #f6f3ea);
  min-height: auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  padding: clamp(42px, 7vw, 82px) 7%;
  gap: clamp(34px, 6vw, 80px);
  overflow: hidden;
}

.about-left,
.about-right{
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: flex-start;
}

.about-left{
  justify-content: center;
}

.about-right{
  justify-content: flex-start;
}

.about-left img{
  width: 100%;
  max-width: 620px;
  max-height: min(680px, 72vh);
  height: auto;
  object-fit: contain;
  display: block;
}

.text-box{
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.text-box h2{
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  margin-bottom: clamp(18px, 3vw, 30px);
  font-weight: 800;
}

.text-box p{
  font-size: clamp(15px, 1.3vw, 21px);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 400;
}

@media (max-width: 900px){
  .about-section{
    grid-template-columns: 1fr;
    padding: 42px 6%;
    gap: 30px;
  }

  .about-right{
    justify-content: center;
  }

  .text-box{
    max-width: 680px;
  }

  .text-box h2{
    display: none;
  }
}

@media (max-width: 560px){
  .about-section{
    padding: 32px 16px;
    gap: 24px;
  }

  .about-left img{
    max-height: 55vh;
  }

  .text-box p{
    font-size: 15px;
  }
}
