/* International Speaker Testimonials - shared carousel styles (home + event) */
.gst-section { padding: 1rem 0 2rem; }
.gst-carousel { margin-top: 1.5rem; position: relative; padding: 0 34px; }
.gst-carousel .slick-slide { height: auto; }
.gst-carousel .slick-track { display: flex !important; }
.gst-carousel .slick-list { padding: 6px 0 12px; }
.gst-slide { height: inherit; padding: 0 12px; }
.gst-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e7e6f2;
  border-top: 4px solid #353281;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 8px 24px rgba(53, 50, 129, 0.08);
  transition: box-shadow .25s ease, transform .25s ease;
}
.gst-card:hover {
  box-shadow: 0 14px 32px rgba(53, 50, 129, 0.16);
  transform: translateY(-4px);
}
.gst-stars {
  flex: 0 0 auto;
  color: #e59325;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.gst-quote {
  flex: 0 0 auto !important;
  color: #3a3a52;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 18px;
}
.gst-quote::before { content: "\201C"; color: #353281; font-weight: 700; }
.gst-quote::after { content: "\201D"; color: #353281; font-weight: 700; }
.gst-person {
  margin-top: auto !important;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #efeef7;
}
.gst-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid #353281;
}
.gst-meta { min-width: 0; }
.gst-name {
  font-size: 1rem;
  font-weight: 700;
  color: #353281;
  margin: 0;
  line-height: 1.3;
}
.gst-role { font-size: 0.82rem; color: #5a5a6e; margin: 2px 0 0; line-height: 1.35; }
.gst-country { font-size: 0.82rem; color: #e59325; font-weight: 600; margin: 2px 0 0; }

/* Arrows (site ships base slick.css only, no slick-theme.css) */
.gst-carousel .slick-prev,
.gst-carousel .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  background: #ffffff;
  border: 1px solid #e7e6f2;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(53, 50, 129, 0.15);
  cursor: pointer;
}
.gst-carousel .slick-prev { left: -6px; }
.gst-carousel .slick-next { right: -6px; }
.gst-carousel .slick-prev:hover,
.gst-carousel .slick-next:hover { background: #353281; border-color: #353281; }
.gst-carousel .slick-prev:before,
.gst-carousel .slick-next:before {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: #353281;
  font-family: Arial, sans-serif;
}
.gst-carousel .slick-prev:hover:before,
.gst-carousel .slick-next:hover:before { color: #ffffff; }
.gst-carousel .slick-prev:before { content: "\2039"; }
.gst-carousel .slick-next:before { content: "\203A"; }

/* Dots */
.gst-carousel .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 9px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.gst-carousel .slick-dots li { width: auto; height: auto; margin: 0; }
.gst-carousel .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  background: #cfcde6;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.gst-carousel .slick-dots li button:before { content: none; }
.gst-carousel .slick-dots li.slick-active button { background: #e59325; }
.gst-carousel .slick-dots li:hover button { background: #353281; }

@media (max-width: 640px) {
  .gst-carousel { padding: 0 22px; }
  .gst-carousel .slick-prev { left: -4px; }
  .gst-carousel .slick-next { right: -4px; }
}
