.about-page {
  padding: 28px 20px 24px;
  display: grid;
  gap: 22px;
}

.about-section {
  background: #fff;
  border: 1px solid #ece3d8;
  border-radius: 16px;
  padding: 20px;
}

.about-section h1,
.about-section h2,
.about-section h3 { margin: 0 0 12px; }
.about-section p { margin: 0 0 12px; line-height: 1.55; color: #4b3f33; }
.about-section ul { margin: 0; padding-left: 22px; display: grid; gap: 8px; }

.about-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1140 / 360;
  overflow: hidden;
  border-radius: 16px;
  background: #f0ebe4;
}

.about-slider__track {
  height: 100%;
  display: flex;
  transition: transform .45s ease;
}

.about-slider__slide {
  width: 100%;
  min-width: 100%;
  position: relative;
  background: #f5f2ee;
}

.about-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(27,22,17,.68);
  color: #fff;
  cursor: pointer;
}
.about-slider__nav--prev { left: 10px; }
.about-slider__nav--next { right: 10px; }
