/*
 * STAGE9L Opinion Slider Styles
 *
 * This stylesheet defines a simple, responsive layout for the client opinion
 * slider added in stage9l. It reuses the existing colour palette and
 * typography variables defined in the theme. The slider is presented as a
 * grid of cards that stack on mobile and align in rows on larger screens.
 */

.drr-opinions {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-gold, #8c8c8c);
}

.drr-opinions h3 {
  margin: 0 0 20px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--primary-gold, #d4af37);
}

.drr-opinion-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.drr-opinion {
  background: var(--bg-secondary, #0f1b24);
  border: 1px solid var(--border-gold, #8c8c8c);
  border-radius: 12px;
  padding: 20px;
  color: var(--text, #f5f5f5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.drr-opinion blockquote {
  margin: 0;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
}

.drr-opinion figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted, #b5bec8);
}