/* /kerfufflemembership/testimonials/ - "See them all" companion page.
   Reuses tokens from ../style.css (--card, --border, --white, --font-display etc.)
   and adds the wider grid layouts this page needs. */

.hero-band {
  padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
}
.hero-band .section-h1 {
  font-family: var(--font-display, "DM Serif Display", serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white, #fff);
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.count-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--pink-aa, #D31255);
  color: #fff;
  font-size: 0.6em;
  font-weight: 600;
  vertical-align: middle;
}

.videos-section, .text-section, .cta-band { padding: clamp(32px, 5vw, 56px) 0; }

.v-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 960px) { .v-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .v-grid { grid-template-columns: 1fr; } }

.v-card {
  background: var(--card, #1c2033);
  border: 1px solid var(--border, #2a2f45);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.v-card-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  text-decoration: none;
}
.v-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms ease;
}
.v-card-thumb:hover img { transform: scale(1.03); }
.v-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pink-aa, #D31255);
  display: grid;
  place-items: center;
  font-size: 20px;
  padding-left: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.v-card-body { padding: 14px 16px 16px; }
.v-card-name {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--white, #fff);
  line-height: 1.35;
}
.v-card-name span { color: var(--muted, #b6bacc); font-weight: 400; }
.v-card-quote {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--muted, #b6bacc);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 720px) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  background: var(--card, #1c2033);
  border: 1px solid var(--border, #2a2f45);
  border-radius: 12px;
  padding: 18px 20px;
}
.t-card figure { margin: 0; }
.t-card blockquote { margin: 0 0 10px; }
.t-card blockquote p {
  margin: 0;
  color: var(--white, #fff);
  font-size: 0.98rem;
  line-height: 1.55;
}
.t-card figcaption { margin-top: 8px; }
.t-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--white, #fff);
}
.t-card cite span { color: var(--muted, #b6bacc); }

.cta-band {
  border-top: 1px solid var(--border, #2a2f45);
  text-align: center;
}
.cta-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.btn-primary { background: var(--pink-aa, #D31255); color: #fff; }
.btn-primary:hover { background: var(--pink-aa-dark, #B80C46); }
.btn-secondary {
  background: transparent;
  color: var(--white, #fff);
  border: 1px solid var(--border, #2a2f45);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.04); }
