/* ============================================================
   Keynote Speaker Reviews carousel  (.gst-*)
   Self-contained: palette + heading motif taken from the site's
   style.default.css (accent #da4d4d, teal #38a7bb, text #333/#555,
   rule #eeeeee, surface #f8f7f7, Roboto). Distinct from the
   existing "What Our Attendees Say" slider.
   ============================================================ */

.gst-section {
  background: #f8f7f7;                 /* site light-surface grey  */
  border-top: 1px solid #eeeeee;       /* thin site rule           */
  border-bottom: 1px solid #eeeeee;
  padding: 60px 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.gst-section * { box-sizing: border-box; }

.gst-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ---- self-contained heading motif (centered + accent underline) ---- */
.gst-title {
  text-align: center;
  margin: 0 0 45px;
}
.gst-title h3 {
  display: inline-block;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: solid 4px #da4d4d;    /* site heading accent rule */
  color: #333333;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}
.gst-title p {
  margin: 14px auto 0;
  max-width: 640px;
  color: #555555;
  font-size: 15px;
}

/* ---- carousel plumbing (equal height) ---- */
.gst-carousel { position: relative; }
.gst-carousel .slick-track { display: flex !important; }
.gst-carousel .slick-slide { height: auto; }

/* gap lives on the slide wrapper as PADDING (never as margin on the
   card — margin + height:100% overflows slick-list and clips the card) */
.gst-slide { padding: 14px; height: 100%; }

/* ---- the card ---- */
.gst-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  height: 100%;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-top: 4px solid #da4d4d;
  border-radius: 10px;
  padding: 32px 28px 26px;
  box-shadow: 0 8px 26px rgba(51, 51, 51, 0.08);
  text-align: center;
}

/* stars + quote pinned to the top */
.gst-stars {
  flex: 0 0 auto;
  color: #f5a623;
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.gst-quote {
  flex: 0 0 auto !important;
  position: relative;
  color: #333333;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 24px;
  padding-top: 14px;
}
.gst-quote::before {
  content: "\201C";                    /* decorative opening quote  */
  display: block;
  color: #da4d4d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 0.4;
  opacity: 0.85;
}

/* photo + name/role/country pinned to the bottom */
.gst-person {
  margin-top: auto !important;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}
.gst-photo {
  width: 82px;
  height: 82px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #38a7bb;       /* teal ring (site secondary) */
  background: #f8f7f7;
}
.gst-name {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.gst-role {
  color: #555555;
  font-size: 13px;
  line-height: 1.45;
  margin: 4px 0 0;
}
.gst-country {
  display: inline-block;
  margin-top: 8px;
  color: #da4d4d;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ---- arrows (base slick.css ships none) ---- */
.gst-carousel .slick-prev,
.gst-carousel .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0 !important;
  border-radius: 50%;
  background: #da4d4d !important;
  box-shadow: 0 4px 12px rgba(218, 77, 77, 0.35);
  color: #ffffff;
  font-size: 0;                        /* kill default "next/prev" text */
  cursor: pointer;
  transition: background 0.2s ease;
}
.gst-carousel .slick-prev:hover,
.gst-carousel .slick-next:hover,
.gst-carousel .slick-prev:focus,
.gst-carousel .slick-next:focus {
  background: #b83a3a !important;
  color: #ffffff;
  outline: none;
}
.gst-carousel .slick-prev { left: -8px; }
.gst-carousel .slick-next { right: -8px; }
.gst-carousel .slick-prev::before,
.gst-carousel .slick-next::before {
  font-family: inherit;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  opacity: 1;
}
.gst-carousel .slick-prev::before { content: "\2039"; }  /* ‹ */
.gst-carousel .slick-next::before { content: "\203A"; }  /* › */

/* ---- dots (base slick.css ships none -> raw "1" boxes) ---- */
.gst-carousel .slick-dots {
  display: block;
  width: 100%;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.gst-carousel .slick-dots li {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}
.gst-carousel .slick-dots li button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0 !important;
  border-radius: 50%;
  background: #d9d5d5 !important;      /* rule-ish grey */
  font-size: 0;                        /* hide the "1","2" text */
  line-height: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gst-carousel .slick-dots li button::before { content: none !important; }
.gst-carousel .slick-dots li.slick-active button {
  background: #da4d4d !important;      /* accent when active */
  transform: scale(1.2);
}

@media (max-width: 480px) {
  .gst-section { padding: 44px 0; }
  .gst-card { padding: 26px 20px 22px; }
  .gst-quote { font-size: 15px; }
  .gst-carousel .slick-prev { left: -4px; }
  .gst-carousel .slick-next { right: -4px; }
}
