.resources-page {
  background: linear-gradient(180deg, #fff8f3 0%, #fff3ed 36%, #fff8f3 100%);
}
.resources-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}
.resources-hero-copy { max-width: 760px; }
.resources-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 6rem);
}
.resources-hero-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}
.resources-hero-note {
  border: 1px solid rgba(212, 150, 125, 0.42);
  border-radius: 8px;
  padding: clamp(1.3rem, 4vw, 2rem);
  background: #fff;
  box-shadow: var(--shadow);
}
.resources-hero-note p { margin-bottom: 0; color: var(--muted); }
.note-label,
.video-kicker,
.suggestion-grid span {
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.resource-intro {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.resource-intro h2 { margin-bottom: 0; }
.resource-intro p,
.resource-section .section-heading p,
.suggestion-grid p { color: var(--muted); }
.resource-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.resource-section.warm-band {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1160px) / 2));
  background: #fbebe4;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(93, 59, 45, 0.08);
}
.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #f3e4dc;
}
.video-card div { padding: 1.1rem 1.2rem 1.25rem; }
.video-card h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}
.video-card.muted-video { background: #fffaf7; }
.suggestions { padding-top: clamp(3rem, 6vw, 5rem); }
.suggestion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.suggestion-grid a {
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.suggestion-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.suggestion-grid h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.2rem;
}
.resources-final { margin-top: 0; }
@media (max-width: 900px) {
  .resources-hero,
  .resource-intro {
    grid-template-columns: 1fr;
  }
  .suggestion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .resources-hero { padding-top: 3rem; }
  .resources-hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }
  .video-grid,
  .suggestion-grid {
    grid-template-columns: 1fr;
  }
  .resource-section,
  .resource-section.warm-band {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .resources-page .button { width: 100%; }
}
