/* Chatta med dietisterna — hero + Vimeo grid */

body.page-chatta {
  background: var(--white);
}

.chatta-hero {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  background: var(--green-muted);
}

.chatta-hero h1 {
  max-width: 20ch;
}

.chatta-hero-lead {
  margin: 0.75rem 0 0;
  max-width: 60ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.chatta-hero-intro {
  margin-top: 1rem;
  max-width: 65ch;
}

.chatta-hero-intro > * + * {
  margin-top: 0.75rem;
}

.chatta-hero-intro p {
  margin: 0;
  line-height: 1.65;
  color: var(--text);
}

.chatta-videos {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--white);
}

.chatta-videos-header {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.chatta-videos-header .eyebrow {
  margin-bottom: 0.25rem;
}

.chatta-videos-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.chatta-videos-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}

.chatta-video-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chatta-video-card .video-embed {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chatta-video-card .video-embed-poster,
.chatta-video-card .video-embed-player {
  background: var(--green-muted);
}

.chatta-video-title {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.35;
  color: var(--text);
}

@media (min-width: 640px) {
  .chatta-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .chatta-videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
