/* ── About page (public) — editorial layout, design tokens only ───────────── */

.am-about-page {
  background-color: var(--am-slate-100);
  overflow-x: hidden;
}

/* Centered shell — aligned with Explore-style max width */
.am-about-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
}

/* ── Hero (copied from explore.css — matches Explore page layout & metrics) ── */

.exp-hero {
  position: relative;
  overflow: hidden;
}

.exp-hero--none,
.exp-hero--expired,
.exp-hero--trial,
.exp-hero--premium {
  background: var(--am-navy);
  padding: 4.0rem 0 2rem;
}

.exp-hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 196, 154, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.exp-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
}

.exp-hero-inner--split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: flex-end;
}

.exp-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--am-teal);
  margin-bottom: 0.875rem;
}

.exp-location-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--am-teal);
  flex-shrink: 0;
}

.exp-hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 0.625rem;
  max-width: 560px;
}

.exp-hero-sub-line {
  color: rgba(255, 255, 255, 0.55);
}

.exp-hero-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 500px;
  line-height: 1.7;
  margin-top: 0.25rem;
}

.exp-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--am-teal-deep);
  color: #fff;
  border-radius: 100px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.exp-browse-btn i {
  font-size: 11px;
}

#div_body_about .exp-browse-btn:hover {
  background: var(--am-teal-forest);
  color: #fff;
}

.am-about-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .am-about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.am-about-section--alt {
  background-color: var(--am-white);
}

.am-about-heading {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--am-navy);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.am-about-text {
  max-width: 520px;
}

@media (max-width: 991.98px) {
  .am-about-text {
    max-width: none;
  }
}

.am-about-body {
  font-family: 'DM Sans', sans-serif;
  color: var(--am-navy);
  font-size: 1rem;
  line-height: 1.7;
}

.am-about-body p {
  margin: 0 0 1rem;
}

.am-about-body p:last-child {
  margin-bottom: 0;
}

/* Stamp — no “card” / white panel; shadow only */
.am-stamp-wrap,
.am-stamp-wrap * {
  background: transparent !important;
}

.am-stamp-wrap {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}

.am-stamp-wrap--end {
  justify-content: center;
}

@media (min-width: 992px) {
  .am-stamp-wrap--end {
    justify-content: flex-end;
  }

  .am-stamp-wrap--start {
    justify-content: flex-start;
  }
}

.am-stamp {
  margin: 0;
  max-width: min(100%, 400px);
  background: none !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: rotate(-2deg);
}

.am-stamp:hover {
  transform: rotate(0deg);
}

.am-stamp img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  background: transparent;
}

@media (max-width: 768px) {
  .am-stamp {
    transform: none;
  }

  .am-stamp:hover {
    transform: none;
  }
}

/* Hero mobile — same breakpoints as explore.css */
@media (max-width: 991px) {
  .exp-hero-inner--split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .exp-hero--none,
  .exp-hero--expired,
  .exp-hero--trial,
  .exp-hero--premium {
    padding: 4.0rem 0 1.5rem;
  }

  .exp-hero-headline {
    font-size: 26px;
  }
}
