.aboutSection {
  background: #0a192f;
  padding: 80px 0;     /* remove side padding */
  color: rgba(255, 255, 255, 0.92);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


.aboutContainer {
  max-width: 1280px;   /* wider content */
  margin: 0 auto;
  padding: 0 24px;     /* controlled side padding */
  display: grid;
  gap: 22px;
}
.aboutCard {
  width: 100%;
}

/* Header */
.aboutHeader h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.aboutHeader p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 15px;
}

/* Cards */
.aboutCard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.25s ease, border 0.25s ease;
}

.aboutCard:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.aboutCard h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.aboutCard p {
  line-height: 1.7;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Lists */
.aboutCard ul {
  padding-left: 18px;
  margin: 10px 0;
}

.aboutCard li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* Muted */
.mutedText {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
}

/* Gallery */
.companyGallery,
.workshopShowcase {
  background: radial-gradient(circle at top left, rgba(96, 150, 255, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(120, 160, 255, 0.2);
  border-radius: 22px;
  padding: 24px;
  display: grid;
  gap: 18px;
  overflow: hidden;
  position: relative;
}

.galleryIntro {
  display: grid;
  gap: 8px;
}

.galleryIntro h3 {
  font-size: 20px;
  margin: 0;
}

.galleryIntro p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.galleryGrid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.companyGallery .galleryCardDuplicate {
  display: none;
}

.galleryGridThree {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  grid-template-areas:
    "featured sideTop"
    "featured sideBottom";
  align-items: stretch;
}

.galleryGridPair {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: stretch;
}

.galleryCard {
  margin: 0;
  background: rgba(9, 20, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 12px;
  transform: translateY(14px);
  opacity: 0;
  animation: galleryReveal 0.7s ease forwards;
}

.galleryCardFeatured {
  grid-area: featured;
}

.galleryCardSecondary {
  height: 100%;
}

.galleryCardCompact:nth-of-type(2) {
  grid-area: sideTop;
}

.galleryCardCompact:nth-of-type(3) {
  grid-area: sideBottom;
}

.galleryCard:nth-child(2) {
  animation-delay: 0.08s;
}

.galleryCard:nth-child(3) {
  animation-delay: 0.16s;
}

.galleryCard:nth-child(4) {
  animation-delay: 0.24s;
}

.galleryCard img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.galleryCardFeatured img {
  height: 100%;
  min-height: 392px;
}

.galleryCardSecondary img {
  height: 100%;
  min-height: 392px;
}

.galleryCardContain img {
  object-fit: contain;
  background: rgba(5, 14, 26, 0.38);
}

.galleryCard figcaption {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.galleryCard:hover {
  border-color: rgba(120, 200, 255, 0.35);
  transform: translateY(-6px);
}

.galleryCard:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.galleryCardContain:hover img {
  transform: none;
  filter: none;
}

.galleryGridPair .galleryCardFeatured,
.galleryGridPair .galleryCardSecondary {
  grid-area: auto;
  height: auto;
}

.galleryGridPair .galleryCardFeatured img {
  height: 420px;
  min-height: 0;
  object-fit: cover;
}

.galleryGridPair .galleryCardSecondary img {
  height: 420px;
  min-height: 0;
  object-fit: contain;
}

.workshopCarousel {
  position: relative;
  overflow: hidden;
  padding: 8px 0 10px;
}

.workshopTrack {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: workshopScroll 72s linear infinite;
}

.workshopCarousel:hover .workshopTrack {
  animation-play-state: paused;
}

.workshopSlide {
  flex: 0 0 300px;
  margin: 0;
  padding: 12px;
  border-radius: 16px;
  background: rgba(9, 20, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  contain: paint;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.workshopSlide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  backface-visibility: hidden;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.workshopSlide:hover {
  border-color: rgba(120, 200, 255, 0.35);
  transform: translateY(-6px);
}

.workshopSlide:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

@keyframes workshopScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@keyframes galleryReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .galleryCard {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .galleryCard img {
    transition: none;
  }

  .workshopTrack {
    animation: none;
  }

  .workshopSlide,
  .workshopSlide:hover {
    transform: none;
  }

  .workshopSlide img {
    transition: none;
  }

  .companyGallery .galleryGrid {
    width: auto;
  }

  .companyGallery .galleryCardDuplicate {
    display: none;
  }
}

/* Leadership */
.leader {
  margin-bottom: 14px;
}

.leader h4 {
  margin-bottom: 4px;
}

.leader span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.leader a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.leader a:hover {
  text-decoration: underline;
}

/* Info Grid */
.infoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.infoGrid div {
  font-size: 14px;
  line-height: 1.5;
}

.infoGrid span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 600px) {
  .aboutHeader h2 {
    font-size: 30px;
  }

  .companyGallery .galleryGrid {
    display: flex;
    gap: 14px;
    width: auto;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .companyGallery .galleryGrid::-webkit-scrollbar {
    display: none;
  }

  .companyGallery .galleryCardDuplicate {
    display: grid;
  }

  .galleryGridThree {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .galleryGridPair {
    grid-template-columns: 1fr;
  }

  .galleryCardFeatured,
  .galleryCardCompact:nth-of-type(2),
  .galleryCardCompact:nth-of-type(3) {
    grid-area: auto;
  }

  .galleryCardFeatured img {
    min-height: 220px;
  }

  .galleryCardSecondary img {
    min-height: 220px;
  }

  .galleryGridPair .galleryCardFeatured img,
  .galleryGridPair .galleryCardSecondary img {
    height: auto;
    min-height: 220px;
  }

  .companyGallery .galleryCard {
    flex: 0 0 78vw;
    min-width: 0;
    scroll-snap-align: start;
    transform: none;
    opacity: 1;
    animation: none;
  }

  .workshopShowcase {
    padding: 24px 16px;
  }

  .workshopSlide {
    flex-basis: 250px;
    padding: 12px;
  }

  .workshopSlide img {
    height: 180px;
  }

  .galleryCard img {
    height: 200px;
  }
}
