/*
  Quote Carousel Component — Styles
  Styled to match www.meritanalyticsgroup.com brand colors.
*/

.mag-quote-section {
  --mag-navy: #005B8E;
  --mag-navy-dark: #095187;
  --mag-gold: #245087;
  --mag-gray: #6b7280;
  --mag-light: #ffffff;
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  background: var(--mag-light);
  padding: 64px 20px;
  box-sizing: border-box;
}
.mag-quote-section *,
.mag-quote-section *::before,
.mag-quote-section *::after {
  box-sizing: border-box;
}

.mag-quote-container {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(27, 42, 74, 0.08);
  border-top: 4px solid var(--mag-gold);
  padding: 56px 80px 48px;
  overflow: hidden;
}

.mag-quote-track {
  position: relative;
  min-height: 260px;
}

.mag-quote-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  text-align: center;
}

.mag-quote-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.mag-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--mag-gold);
  display: block;
  margin-bottom: 8px;
}

.mag-quote-text {
  font-size: 20px;
  line-height: 1.55;
  color: var(--mag-navy);
  font-weight: 400;
  margin: 0 0 20px;
}

.mag-quote-author {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mag-navy);
}

.mag-quote-role {
  font-size: 16px;
  color: var(--mag-gray);
  margin-top: 2px;
}

.mag-quote-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e6ee;
  background: #ffffff;
  color: var(--mag-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mag-quote-arrow:hover {
  background: var(--mag-navy);
  border-color: var(--mag-navy);
  color: #ffffff;
}

.mag-quote-prev { left: 16px; }
.mag-quote-next { right: 16px; }

.mag-quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.mag-quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dce6;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mag-quote-dot.is-active {
  background: var(--mag-gold);
  transform: scale(1.25);
}

@media (max-width: 800px) {
  .mag-quote-container {
    padding: 44px 40px 36px;
  }
  .mag-quote-track {
    min-height: 280px;
  }
  .mag-quote-text {
    font-size: 17px;
  }
  .mag-quote-arrow {
    width: 30px;
    height: 30px;
  }
  .mag-quote-prev { left: 6px; }
  .mag-quote-next { right: 6px; }
}
