.about {
  padding: 80px 24px;
  background: var(--background);
  position: relative;
  overflow: visible;
}

.about .about-container {
  max-width: 1600px;
  margin: 0 auto;
}

.about .about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: stretch;
}

.about .about-visual {
  position: relative;
}

.about .about-shape {
  position: absolute;
  top: -48px;
  left: -16px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(168, 181, 163, 0.4), rgba(195, 162, 122, 0.25));
  border-radius: 50% 40% 45% 55% / 55% 45% 55% 45%;
  transform: rotate(15deg);
}

.about .about-image {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.about .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .about-frame {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.4;
}

.about .about-content {
  position: relative;
}

.about .about-highlight {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: rgba(212, 181, 160, 0.2);
}

.about .about-text {
  color: rgba(59, 46, 42, 0.8);
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.about .about-text p {
  margin: 0;
  line-height: 26px;
}

.about .button.button-outline {
  padding: 0 12px;
  height: 40px;
}

@media (max-width: 1710px) {
  .about .about-container {
    max-width: 1200px;
  }
}

@media (max-width: 1090px) {
  .about {
    padding: 24px 16px;
  }
  .about .about-container {
    max-width: 100%;
  }
  .about .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about .about-image{
    aspect-ratio: 3 / 4;
    max-height: 520px;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .about .about-image img {
    object-position: 50% 30%;
  }
}
