/* ── Base ───────────────────────────────────────── */
.about-section {
  position: relative;
}

.about-section blockquote {
  border-left: 3px solid var(--evalor);
  padding: 0.75rem 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--medium);
}

/* ── Image Gallery ──────────────────────────────── */

.about-section__gallery { position: relative; }

/* Wrapper holds the final offset position so AOS doesn't override it */
.about-section__offset-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate(20px, -20px);
}

.about-section__offset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-section__images {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-section__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.about-section__slide.active {
  z-index: 1;
  opacity: 1;
}

/* ── Dots ────────────────────────────────────────── */

.about-section__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.about-section__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--light);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-section__dot.active {
  background: var(--evalor);
  border-color: var(--evalor);
  transform: scale(1.2);
}

.about-section__dot:hover {
  border-color: var(--evalor);
}

/* ── Arrows ────────────────────────────────────── */

.about-section__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-darker);
  cursor: pointer;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, background 0.2s ease;
}

.about-section__arrow--prev {
  left: 0.75rem;
  transform: translateY(-50%) translateX(-200%);
}

.about-section__arrow--next {
  right: 0.75rem;
  transform: translateY(-50%) translateX(200%);
}

.about-section__images:hover .about-section__arrow--prev {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.about-section__images:hover .about-section__arrow--next {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.about-section__arrow:hover {
  background: white;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 767px) {
  .about-section__offset-wrapper {
    transform: translate(10px, -10px);
  }
}
