/* ==========================================================================
   Worldwide Keynote Testimonials — shared carousel styles (.gst-*)
   Single source of truth used by index.php and event/index.php via
   international-testimonials.php.

   Layout: one wide card per view — PHOTO on the LEFT, text on the right,
   matching the site's testimonial look. The site ships only the BASE
   css/slick.css (no slick-theme.css), so arrows are styled from scratch here.
   Palette: blue #002366, purple #7a1683/#a0148c, magenta #d50367.
   ========================================================================== */

.gst-section {
  padding: 60px 0;
  background: #f3f6ff;
}

.gst-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #000;
  background: -webkit-linear-gradient(#0024bb, #41004c);
  background: linear-gradient(#0024bb, #41004c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gst-subheading {
  text-align: center;
  color: #5b6072;
  font-size: 15px;
  margin: 0 auto 34px auto;
  max-width: 720px;
}

/* --- Carousel shell --------------------------------------------------------
   Extra bottom padding reserves room for the arrows that sit bottom-left. */
.gst-carousel {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding-bottom: 74px;
}

.gst-carousel .slick-slide {
  height: auto;
}

/* --- Card: photo left | text right -----------------------------------------
   display/flex-direction forced with !important so no global site rule can
   collapse the card back into a vertical block. */
.gst-carousel .gst-card {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 36px;
  margin: 8px;
  padding: 34px 42px;
  background: #ffffff;
  border: 1px solid #e7e9f5;
  border-radius: 16px;
}

.gst-carousel .gst-photo {
  flex: 0 0 auto;
}

.gst-photo img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  display: block;
  border: 3px solid #d50367;
  border-radius: 16px;
}

.gst-carousel .gst-body {
  flex: 1 1 auto !important;
  min-width: 0;
  text-align: left;
}

.gst-qmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7a1683, #a0148c);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.gst-name {
  font-size: 22px;
  font-weight: 700;
  color: #002366;
  margin: 0 0 4px 0;
  line-height: 1.25;
}

.gst-role {
  font-size: 15px;
  font-weight: 700;
  color: #7a1683;
  margin: 0 0 2px 0;
  line-height: 1.4;
}

.gst-country {
  font-size: 14px;
  font-weight: 600;
  color: #d50367;
  margin: 0 0 14px 0;
  line-height: 1.4;
}

.gst-quote {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3f52;
  margin: 0;
}

/* --- Arrows: purple rounded squares, bottom-left (no theme available) ------- */
.gst-carousel .slick-arrow {
  position: absolute;
  bottom: 6px;
  top: auto;
  transform: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  z-index: 5;
  background: linear-gradient(135deg, #7a1683, #a0148c);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gst-carousel .slick-prev { left: 8px; right: auto; }
.gst-carousel .slick-next { left: 62px; right: auto; }

.gst-carousel .slick-arrow:hover,
.gst-carousel .slick-arrow:focus {
  outline: none;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.gst-carousel .slick-arrow::before {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  opacity: 1;
}

.gst-carousel .slick-prev::before { content: "\2190"; } /* ← */
.gst-carousel .slick-next::before { content: "\2192"; } /* → */

/* --- Responsive: stack photo on top for small screens ---------------------- */
@media (max-width: 767px) {
  .gst-carousel .gst-card {
    flex-direction: column !important;
    text-align: center;
    gap: 20px;
    padding: 28px 22px 30px 22px;
  }
  .gst-photo img { width: 150px; height: 150px; }
  .gst-carousel .gst-body { text-align: center; }
  .gst-qmark { margin-left: auto; margin-right: auto; }
  .gst-carousel { padding-bottom: 66px; }
}
