/* ============================================================
   about.css — "What is MAP?" about section.
   Rounded dark card: scrollable image gallery + centered copy
   + action buttons. Rendered by js/about.js.
   ============================================================ */

.about {
  background-color: var(--color-bg, #0d0d0d);
  padding: clamp(2rem, 5vw, 4rem) var(--page-gutter, 1.5rem);
}

.about__card {
  max-width: 80rem;
  margin: 0 auto;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: clamp(1rem, 2.5vw, 2rem);
}

/* ---- Gallery (horizontal scroll / drag) ---- */
.about__gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;            /* Firefox */
  -ms-overflow-style: none;         /* old Edge */
  cursor: grab;
}
.about__gallery::-webkit-scrollbar { display: none; } /* WebKit */
.about__gallery.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.about__gallery.is-dragging .about__slide { pointer-events: none; }

.about__slide {
  flex: 0 0 30%;
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
}
.about__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* ---- Body: label + text + actions ---- */
.about__body {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 1rem 1rem;
  text-align: center;
}

.about__label {
  display: inline-block;
  font-family: var(--font-groove, "Groovezilla", sans-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
}

.about__text {
  margin: 1.75rem auto 0;
  max-width: 62ch;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-nav, "Inter", sans-serif);
  font-size: 0.9rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  transition: background 0.2s ease, transform 0.1s ease;
}
.about__btn:hover { background: rgba(255, 255, 255, 0.14); }
.about__btn:active { transform: scale(0.97); }
.about__btn svg { display: block; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about__slide { flex-basis: 44%; }
}
@media (max-width: 600px) {
  .about__slide { flex-basis: 78%; }
  .about__card { border-radius: 20px; }
}