.gvc {
  --gvc-bg: #F3F4F1;
  --gvc-card: #FFFFFF;
  --gvc-ink: #1E2A25;
  --gvc-ink-soft: #4C5A53;
  --gvc-accent: #2F5D4F;
  --gvc-rule: #DCE0DB;
  position: relative;
  width: 100%;
  margin: 0;
  background: var(--gvc-bg);
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--gvc-ink);
  overflow: hidden;
}

.gvc-track-wrap {
  overflow: hidden;
  transition: height 0.35s ease;
}

.gvc-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.gvc-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 40px 64px 20px;
}

/* Quote slide */
.gvc-quote {
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: center;
  gap: 40px;
}

.gvc-quote blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--gvc-ink);
}

.gvc-quote-attribution {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--gvc-ink-soft);
}

.gvc-logo {
  justify-self: center;
  width: 160px;
  height: 100%;
  background: var(--gvc-card);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.gvc-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gvc-logo-text {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--gvc-ink);
  white-space: pre-line;
  line-height: 1.4;
}

/* Stat-grid slide */
.gvc-stats-heading {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.4;
}

.gvc-stats-body {
  display: grid;
  grid-template-columns: 1fr 1fr 160px;
  grid-template-rows: repeat(2, auto);
  gap: 14px;
}


@media (min-width: 701px) {
  .gvc-stats-body.gvc-stats-pair {
    grid-template-columns: 1fr 160px;
  }

  .gvc-stats-body.gvc-stats-pair .gvc-stat-card {
    grid-column: 1;
  }

  .gvc-stats-body.gvc-stats-pair .gvc-logo {
    grid-column: 2;
  }

  .gvc-stats-body.gvc-stats-trio .gvc-stat-card:nth-child(3) {
    grid-column: 1 / 3;
  }
  
}

.gvc-stats-body .gvc-logo {
  grid-row: 1 / 3;
  grid-column: 3;
  width: 100%;
  height: auto;
}

.gvc-stat-card {
  background: var(--gvc-card);
  border-radius: 4px;
  padding: 18px 20px;
  font-size: 0.95rem;
  color: var(--gvc-ink);
}

/* Controls */
.gvc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid var(--gvc-rule);
  background: var(--gvc-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gvc-ink);
  z-index: 2;
}

.gvc-arrow:hover { background: var(--gvc-accent); border-color: var(--gvc-accent); color: #fff; }
.gvc-arrow:focus-visible { outline: 2px solid var(--gvc-accent); outline-offset: 2px; }
.gvc-arrow svg { width: 16px; height: 16px; }
.gvc-prev { left: 16px; }
.gvc-next { right: 16px; }

.gvc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 0 16px;
}

.gvc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gvc-rule);
  cursor: pointer;
  padding: 0;
}

.gvc-dot[aria-current="true"] { background: var(--gvc-accent); width: 20px; border-radius: 4px; }
.gvc-dot:focus-visible { outline: 2px solid var(--gvc-accent); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .gvc-track { transition: none; }
}

/* Responsive */
@media (max-width: 700px) {
  .gvc-slide { padding: 28px 44px 16px; }
  .gvc-quote { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .gvc-logo { justify-self: center; width: 120px; height: 80px; }
  .gvc-quote blockquote { font-size: 1.2rem; }
  .gvc-stats-body { grid-template-columns: 1fr 1fr; }
  .gvc-stats-body .gvc-logo { grid-column: 1 / 3; grid-row: 1; width: 100%; height: 90px; }
}

@media (max-width: 460px) {
  .gvc-slide { padding: 20px 28px 12px; }
  .gvc-stats-body { grid-template-columns: 1fr; }
  .gvc-stats-body .gvc-logo { grid-column: 1; grid-row: 1; }
  .gvc-arrow { width: 30px; height: 30px; }
  .gvc-prev { left: 8px; }
  .gvc-next { right: 8px; }
  
}