/**
 * wc-stories.css
 * Styles for the WC Stories section component.
 */

/* ── Section shell — dark background ── */
.stories-section {
  background: var(--red-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow bottom-left */
.stories-section::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(225, 36, 42, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Heading ── */
.stories-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h1);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* ── Subheading ── */
.stories-subheading {
  font-size: var(--t-body);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ── Eyebrow ── */
.stories-section .t-eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── Video / thumbnail area ── */
.stories-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: var(--sp-lg);
  background: rgba(255, 255, 255, 0.08);
}

.stories-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Caption ── */
.stories-caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--t-micro);
  letter-spacing: 0.1em;
}

/* ── Pull quote ── */
.pull-quote {
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

/* Salmon accent bar above quote */
.pull-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--salmon);
  margin: 0 auto var(--sp-sm);
  border-radius: 2px;
}

.pull-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  font-style: italic;
  color: var(--salmon);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto var(--sp-xs);
}

.pull-quote-attr {
  font-size: var(--t-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--sp-xs);
}
