:root {
  --color-cream: #FDF8F3;
  --color-teal: #1AA6B7;
  --color-teal-dark: #158A98;
  --color-teal-light: #E8F6F8;
  --color-navy: #2C3E50;
  --color-charcoal: #333;
  --color-gray: #666;
  --color-white: #FFF;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-charcoal);
}

a {
  color: var(--color-teal);
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-navy);
  line-height: 1.3;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  background: var(--color-white);
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-navy);
  font-weight: 600;
}

.nav a {
  margin-left: 1.5rem;
  font-size: .875rem;
  color: var(--color-charcoal);
}

.breadcrumb {
  background: var(--color-cream);
  padding: .75rem 0;
  font-size: .875rem;
}

.breadcrumb a {
  color: var(--color-gray);
}

.hero,
.page-hero {
  background: linear-gradient(135deg, var(--color-cream), #F5EDE4);
  padding: 4rem 0;
}

.hero h1,
.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p,
.page-hero p {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 600px;
}

.stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-teal);
  display: block;
}

.stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray);
}

.content {
  padding: 4rem 0;
}

.content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
}

.content p {
  margin-bottom: 1.5rem;
}

.story-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  margin: 2rem 0;
}

.story-card h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.story-meta {
  font-size: .875rem;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-navy);
  border-left: 3px solid var(--color-teal);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.highlight {
  background: var(--color-teal-light);
  border-left: 4px solid var(--color-teal);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.cta-box {
  background: var(--color-cream);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-box h3 {
  margin-bottom: .5rem;
}

.cta-box p {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.cta-box__banner {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: var(--color-teal);
  color: var(--color-white);
  padding: .875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all .2s;
}

.btn:hover {
  background: var(--color-teal-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.session-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-white);
  padding: 1rem;
  border-radius: 8px;
  margin: .5rem 0;
  transition: all .2s;
}

.session-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.session-icon {
  width: 40px;
  height: 40px;
  background: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.related {
  background: var(--color-cream);
  padding: 3rem 0;
}

.related h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.related-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all .2s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 3rem 0;
  text-align: center;
}

.footer p {
  opacity: .7;
  font-size: .875rem;
}

.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  margin: 1.5rem 0;
}

.resource-card__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.resource-card__body {
  flex: 1;
  min-width: 0;
}

.resource-card__body h3 {
  font-size: 1.125rem;
  margin-bottom: .75rem;
}

.resource-card__body audio {
  width: 100%;
  margin-bottom: .75rem;
}

.resource-card__body p {
  margin-bottom: .5rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px;
  margin: 1.5rem 0;
  overflow: hidden;
  box-sizing: content-box;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  border: 0;
}

.author-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.author-intro__avatar {
  border-radius: 50%;
  flex-shrink: 0;
}

.highlight__link {
  margin-bottom: .75rem;
}

.highlight__link--last {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }
  .stats {
    flex-direction: column;
    gap: 1rem;
  }
  .nav {
    display: none;
  }
  .resource-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
