/* ============================================================
 * Neurotype V2 — What to Expect Page Styles
 * Page-specific styles for what-to-expect.html
 * All values use brand system tokens.
 * ========================================================== */

/* ---- What to Expect hero ---- */
.expect-hero {
  background-image: url('/assets/hero-what-to-expect.jpg');
  background-image: image-set(
    url('/assets/hero-what-to-expect.webp') type('image/webp'),
    url('/assets/hero-what-to-expect.jpg') type('image/jpeg')
  );
  background-size: cover;
  background-position: right center;
  background-color: var(--bg-secondary-translucent);
}

@media (max-width: 768px) {
  .expect-hero {
    background-image: url('/assets/hero-what-to-expect.jpg');
    background-image: image-set(
      url('/assets/hero-what-to-expect-1200.webp') type('image/webp'),
      url('/assets/hero-what-to-expect.jpg') type('image/jpeg')
    );
  }
}

.expect-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(35% 55% at 30% 45%, var(--bg-primary-heavy) 25%, transparent 100%);
}

.expect-hero .section {
  position: relative;
  z-index: 1;
}

.expect-hero h1 {
  color: var(--text-heading);
}

.expect-hero .hero-subtitle {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .expect-hero {
    background-position: 70% center;
  }

  .expect-hero::before {
    background: radial-gradient(ellipse 90% 90% at 25% 50%, var(--bg-primary-heavy) 25%, var(--bg-primary-light) 100%);
  }
}

/* ---- Icon list (what-to-bring, break activities) ---- */
.wte-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.wte-icon-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-muted);
  font-size: var(--text-body);
  line-height: 1.5;
}

.wte-icon-list li svg {
  width: var(--space-5);
  height: var(--space-5);
  color: var(--neurotype-accent-primary);
  flex-shrink: 0;
}

/* ---- Branded bullet-dot list ---- */
.wte-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.wte-card-list li {
  color: var(--text-muted);
  font-size: var(--text-body);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.wte-card-list li::before {
  content: '';
  width: var(--dot-sm);
  height: var(--dot-sm);
  background: var(--neurotype-accent-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ---- Audience selector section ---- */
.wte-selector-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.wte-chooser-heading {
  text-align: center;
  margin-bottom: var(--space-2);
}

.wte-chooser-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: var(--space-7);
}

.wte-chooser {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  max-width: 600px;
  margin: 0 auto;
}

.wte-chooser-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  transition: transform var(--duration-fast) var(--ease-default), opacity var(--duration-fast) var(--ease-default);
  opacity: 0.55;
}

.wte-chooser-option:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

.wte-chooser-option:focus-visible {
  outline: 2px solid var(--neurotype-accent-primary);
  outline-offset: 2px;
  opacity: 0.8;
}

.wte-chooser-option.active {
  opacity: 1;
}

.wte-chooser-option.active:hover {
  opacity: 1;
}

.wte-chooser-img-wrap {
  width: 180px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.wte-chooser-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.wte-chooser-placeholder {
  width: 120px;
  height: 140px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.wte-chooser-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.wte-chooser-label {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 500;
  color: var(--text-heading);
  transition: color 0.2s ease;
}

.wte-chooser-option.active .wte-chooser-label {
  color: var(--neurotype-accent-primary);
}

@media (max-width: 768px) {
  .wte-chooser {
    gap: var(--space-5);
  }

  .wte-chooser-img-wrap {
    width: 130px;
    height: 150px;
  }

  .wte-chooser-placeholder {
    width: 90px;
    height: 110px;
  }

  .wte-chooser-label {
    font-size: var(--text-body);
  }
}

/* ---- For parents callout label ---- */
.parent-note-label {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-3);
}
