/* ==========================================================================
   Global Keynote Feedback — shared testimonials carousel
   Palette pulled from assets/css/style.css:
     accent  #ce1446 | dark text #2d373c | body #515154
     light surface #f8f7f7 | rule #e4e4e4
   Self-contained: does not depend on any site heading class.
   ========================================================================== */

.gst-section {
    background: #f8f7f7;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    padding: 70px 0;
}

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

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

/* ---- Heading motif: centered h3 + short accent underline -------------- */
.gst-title {
    text-align: center;
    margin: 0 auto 45px;
    max-width: 760px;
}

.gst-title span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ce1446;
    margin-bottom: 10px;
}

.gst-title h3 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    color: #2d373c;
    text-transform: capitalize;
    margin: 0 0 18px;
}

.gst-title h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 18px auto 0;
    background: #ce1446;
    border-radius: 2px;
}

/* ---- Carousel plumbing (equal-height) --------------------------------- */
.gst-carousel {
    position: relative;
    margin: 0 -14px;
}

.gst-carousel .slick-track { display: flex !important; }
.gst-carousel .slick-slide { height: auto; }

/* Gap lives as PADDING on the slide wrapper — never as margin on the card,
   or height:100% + margin overflows .slick-list{overflow:hidden} and clips
   the card bottom. */
.gst-slide {
    padding: 14px;
    height: 100%;
}

.gst-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    height: 100%;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 32px 30px 30px;
    box-shadow: 0 8px 24px rgba(45, 55, 60, .06);
    transition: box-shadow .25s ease, transform .25s ease;
}

.gst-card:hover {
    box-shadow: 0 14px 34px rgba(206, 20, 70, .12);
    transform: translateY(-3px);
}

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

.gst-quote {
    flex: 0 0 auto !important;
    position: relative;
    color: #515154;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 26px;
}

.gst-quote::before {
    content: "\201C";
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    line-height: .6;
    color: rgba(206, 20, 70, .18);
    margin-bottom: 8px;
}

/* photo + name/role/country pinned to the bottom */
.gst-person {
    margin-top: auto !important;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.gst-person img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 58px;
    border: 2px solid #ce1446;
}

.gst-person .gst-meta { min-width: 0; }

.gst-name {
    font-size: 17px;
    font-weight: 700;
    color: #2d373c;
    line-height: 1.3;
    margin: 0;
}

.gst-role {
    font-size: 13.5px;
    color: #515154;
    line-height: 1.4;
    margin: 3px 0 0;
}

.gst-country {
    font-size: 13px;
    font-weight: 600;
    color: #ce1446;
    margin: 2px 0 0;
}

/* ---- Slick arrows (base slick.css ships none) ------------------------- */
.gst-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    background: #ce1446 !important;
    border: 0 !important;
    color: #fff;
    font-size: 0;                 /* hide default "Previous/Next" text */
    line-height: 44px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(206, 20, 70, .3);
    transition: background .2s ease;
}

.gst-carousel .slick-arrow:hover { background: #a90f38 !important; }

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

.gst-carousel .slick-arrow::before {
    font-size: 18px;
    line-height: 1;
    color: #fff;
    opacity: 1;
}

.gst-carousel .slick-prev::before { content: "\2039"; }
.gst-carousel .slick-next::before { content: "\203A"; }

/* ---- Slick dots (base slick.css ships none — unstyled = raw "1" box) --- */
.gst-carousel .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    list-style: none;
    margin: 34px 0 0;
    padding: 0;
}

.gst-carousel .slick-dots li { width: auto; height: auto; margin: 0; }

.gst-carousel .slick-dots li button {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    background: #e4e4e4 !important;   /* rule color */
    border: 0 !important;
    font-size: 0;                     /* kill the raw "1" glyph */
    line-height: 0;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.gst-carousel .slick-dots li button::before { display: none; content: ""; }

.gst-carousel .slick-dots li.slick-active button {
    background: #ce1446 !important;   /* accent when active */
    transform: scale(1.25);
}

/* ---- Responsive ------------------------------------------------------- */
@media (max-width: 767px) {
    .gst-section { padding: 50px 0; }
    .gst-title h3 { font-size: 26px; }
    .gst-carousel .slick-prev { left: -4px; }
    .gst-carousel .slick-next { right: -4px; }
}
