/* === ABOUT PAGE HERO BANNER === */
.page-hero--about {
  padding: max(88px, calc(env(safe-area-inset-top) + 72px)) 0 28px;
  background: #f3f3f3;
  text-align: left;
}

.page-hero--about .container {
  max-width: 1180px;
}

.page-hero--about .page-hero__banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

/* === SPEAKER ABOUT LAYOUT === */
.speaker__layout--about {
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.speaker__portrait {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.speaker__portrait img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.speaker__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* === ABOUT PAGE === */
.about-page { padding: 56px 0 80px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 64px; }
.about-block h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 16px; }
.about-block p { color: var(--text2); line-height: 1.75; margin-bottom: 14px; }
.method-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method-step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
}
.method-step__num {
  width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--accent);
  color: #fff; font-weight: 900; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(108, 71, 255, 0.22);
}
.method-step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.method-step p { font-size: 0.88rem; color: var(--text2); line-height: 1.55; }

.about-fear { padding: 48px 0 0; text-align: center; }

@media (max-width: 768px) {
  .page-hero--about { padding-bottom: 20px; }
  .page-hero--about .page-hero__banner { border-radius: 16px; }

  .speaker__layout--about {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .speaker__portrait {
    max-width: 320px;
    margin: 0 auto;
  }

  .speaker__actions {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .speaker__actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
    font-size: 0.62rem;
    white-space: normal;
    line-height: 1.2;
  }

  .about-page { padding: 28px 0 36px; }

  .about-page .section__title {
    margin-bottom: 12px;
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
  }

  .method-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .method-step {
    flex: none;
    padding: 12px 8px;
    scroll-snap-align: unset;
  }

  .method-step__num { width: 28px; height: 28px; font-size: 0.82rem; margin-bottom: 6px; }
  .method-step h3 { font-size: 0.72rem; margin-bottom: 4px; }
  .method-step p { font-size: 0.62rem; line-height: 1.35; }
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}
