#about .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: center;
}

#about .section-title {
  text-align: left;
  margin-bottom: 32px;
}

#about .section-text {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.about-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 360px;
  background: var(--black);
  box-shadow: 0 24px 55px rgba(18, 18, 18, 0.18);
  touch-action: pan-y;
}

.about-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.about-slide {
  flex: 0 0 100%;
  height: 100%;
}

.about-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.28);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.about-slider-arrow:hover {
  background: rgba(18, 18, 18, 0.48);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%) scale(1.06);
}

.about-slider-arrow i {
  font-size: 1rem;
}

.about-slider-prev {
  left: 18px;
}

.about-slider-next {
  right: 18px;
}