﻿.about-story-section {
  background:
    radial-gradient(circle at 8% 12%, rgb(var(--color-accent-rgb) / 0.07), transparent 28%),
    var(--color-page-background);
}

@media (min-width: 721px) {
  body[data-page="about"] .about-story-section {
    padding-bottom: clamp(0px, calc(9vw - 80px), 48px);
  }

  body[data-page="about"] .about-story-section .official-about-grid {
    margin-top: -50px;
  }
}

body[data-page="about"] .about-story-section .official-about-grid {
  --about-story-copy-width: 538px;
  width: min(100%, var(--content-width));
  grid-template-columns: var(--about-story-copy-width) minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-story-copy {
  min-width: 0;
  padding-right: 0;
}

body[data-page="about"] .about-story-copy .section-heading {
  max-width: none;
  padding-top: 0;
  text-align: center;
}

body[data-page="about"] .about-story-copy .section-heading h2 {
  margin-bottom: 0;
  color: var(--color-primary);
  font-size: clamp(2.65rem, 4vw, 4.2rem);
}

body[data-page="about"] .about-copy-panel {
  min-height: auto;
  max-width: none;
  margin-top: 28px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgb(var(--color-primary-rgb) / 0.16);
  border-radius: 22px;
  background: rgb(255 254 251 / 0.88);
  box-shadow: 0 16px 42px rgb(var(--color-primary-rgb) / 0.08);
}

body[data-page="about"] .about-copy-panel p {
  margin-bottom: 22px;
  color: var(--color-text-primary);
  font-size: 0.98rem;
  line-height: 2;
}

body[data-page="about"] .about-copy-panel p:last-child {
  margin-bottom: 0;
}

.about-gallery {
  min-width: 0;
  padding-left: clamp(36px, 4vw, 64px);
  border-left: 0;
}

.about-gallery-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(var(--color-primary-rgb) / 0.2);
  border-radius: 22px;
  background: var(--color-section-background);
  box-shadow: 0 18px 46px rgb(var(--color-primary-rgb) / 0.12);
}

.about-gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gallery-stage figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: inline-flex;
  min-width: 76px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgb(213 161 95 / 0.66);
  border-radius: 999px;
  color: var(--color-white);
  background: rgb(7 44 34 / 0.82);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.18);
  font-family: var(--font-latin), var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.about-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.about-gallery-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--color-section-background);
  box-shadow: 0 6px 16px rgb(var(--color-primary-rgb) / 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.about-gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 220ms ease;
}

.about-gallery-thumbnail:hover {
  transform: translateY(-2px);
}

.about-gallery-thumbnail:hover img {
  opacity: 0.92;
  transform: scale(1.035);
}

.about-gallery-thumbnail[aria-pressed="true"] {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgb(var(--color-accent-rgb) / 0.14), 0 10px 22px rgb(var(--color-primary-rgb) / 0.13);
}

.about-gallery-thumbnail[aria-pressed="true"] img {
  opacity: 1;
}




