:root {
  --speaker-1-bg: #eff6ff;
  --speaker-1-border: #3b82f6;
  --speaker-1-text: #1e40af;

  --speaker-2-bg: #f3fef7;
  --speaker-2-border: #16a34a;
  --speaker-2-text: #0f6832;

  --speaker-3-bg: #faf5ff;
  --speaker-3-border: #9333ea;
  --speaker-3-text: #6b21a8;

  --speaker-4-bg: #fffbeb;
  --speaker-4-border: #f59e0b;
  --speaker-4-text: #b45309;

  --speaker-5-bg: #f4fbff;
  --speaker-5-border: #0284c7;
  --speaker-5-text: #025d91;

  --speaker-6-bg: #f0fdfa;
  --speaker-6-border: #14b8a6;
  --speaker-6-text: #0f766e;

  --speaker-7-bg: #fdf2f8;
  --speaker-7-border: #ec4899;
  --speaker-7-text: #be185d;
}

h3 {
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-size: 1.8em;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.conversation-turn {
  margin-bottom: 1.8rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid transparent;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
}

.conversation-turn .speaker {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 1px;
  display: inline-block;
  padding: 2px 0;
}

.conversation-turn p {
  margin: 1rem 0;
  line-height: 1.75;
  font-size: 1.3em;
  color: rgb(45, 45, 45);
}

.conversation-turn p:first-child {
  margin-top: 0;
  display: inline;
}

.conversation-turn p:last-child {
  margin-bottom: 0;
}

.conversation-turn .jump-to-video-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  z-index: 10;
  color: white;
  font-size: 12px;
  text-decoration: none;
}

.conversation-turn .jump-to-video-icon::before {
  content: "▶";
  font-size: 10px;
}

.conversation-turn .jump-to-video-icon:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  text-decoration: none;
}

.conversation-turn .jump-to-video-icon:hover::after {
  content: attr(title);
  position: absolute;
  top: -30px;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 20;
}

.conversation-turn[data-speaker="speaker-1"] {
  background: var(--speaker-1-bg);
  border-left-color: var(--speaker-1-border);
}

.conversation-turn[data-speaker="speaker-1"] .speaker {
  color: var(--speaker-1-text);
}

.conversation-turn[data-speaker="speaker-2"] {
  background: var(--speaker-2-bg);
  border-left-color: var(--speaker-2-border);
}

.conversation-turn[data-speaker="speaker-2"] .speaker {
  color: var(--speaker-2-text);
}

.conversation-turn[data-speaker="speaker-3"] {
  background: var(--speaker-3-bg);
  border-left-color: var(--speaker-3-border);
}

.conversation-turn[data-speaker="speaker-3"] .speaker {
  color: var(--speaker-3-text);
}

.conversation-turn[data-speaker="speaker-4"] {
  background: var(--speaker-4-bg);
  border-left-color: var(--speaker-4-border);
}

.conversation-turn[data-speaker="speaker-4"] .speaker {
  color: var(--speaker-4-text);
}

.conversation-turn[data-speaker="speaker-5"] {
  background: var(--speaker-5-bg);
  border-left-color: var(--speaker-5-border);
}

.conversation-turn[data-speaker="speaker-5"] .speaker {
  color: var(--speaker-5-text);
}

.conversation-turn[data-speaker="speaker-6"] {
  background: var(--speaker-6-bg);
  border-left-color: var(--speaker-6-border);
}

.conversation-turn[data-speaker="speaker-6"] .speaker {
  color: var(--speaker-6-text);
}

.conversation-turn[data-speaker="speaker-7"] {
  background: var(--speaker-7-bg);
  border-left-color: var(--speaker-7-border);
}

.conversation-turn[data-speaker="speaker-7"] .speaker {
  color: var(--speaker-7-text);
}

@media (max-width: 768px) {
  .conversation-turn {
    padding: 1rem;
    margin-bottom: 1.2rem;
  }

  .conversation-turn p {
    font-size: 1.05em;
  }

  .conversation-turn .speaker {
    font-size: 0.85em;
  }

  .conversation-turn .jump-to-video-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .conversation-turn .jump-to-video-icon::before {
    font-size: 12px;
  }
}

blockquote {
  position: relative;
  margin-top: 5rem;
  margin-bottom: 5rem;
  margin-left: max(-15rem, calc((100vw - 100%) / -2 + 1rem));
  margin-right: max(-15rem, calc((100vw - 100%) / -2 + 1rem));
  padding: 5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-left: 6px solid #64748b;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.15);
  font-style: italic;
  font-size: 2.3em;
  line-height: 1.8;
  color: #334155;
  transition: all 0.3s ease;
}

blockquote p {
  margin: 0.75rem 0;
  color: inherit;
  font-size: inherit;
}

blockquote p:first-child {
  margin-top: 0;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote::before {
  content: """;
  position: absolute;
  left: 0.5rem;
  top: 0rem;
  font-size: 8rem;
  font-weight: bold;
  color: #64748b;
  opacity: 0.9;
  font-family: Georgia, serif;
  line-height: 0.8;
  text-shadow: 0 4px 8px rgba(100, 116, 139, 0.4);
  z-index: 2;
}

blockquote:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(100, 116, 139, 0.25);
}

@media (max-width: 768px) {
  blockquote {
    margin-top: 5rem;
    margin-bottom: 5rem;
    margin-left: max(-2rem, calc((100vw - 100%) / -2 + 1rem));
    margin-right: max(-2rem, calc((100vw - 100%) / -2 + 1rem));
    padding: 1.5rem 2rem 1.5rem 4rem;
    font-size: 1.3em;
  }

  blockquote::before {
    font-size: 5rem;
    left: 0.3rem;
    top: -0.2rem;
  }
}
