/* ============================================================================
   Admission Reviews page skin — CSS VERBATIM from Subash's admission-reviews-page-code.html
   (Drive 'Reviews' folder). Loaded on /reviews/admission-reviews/ by includes/reviews_styles.php.
   ALL comp rules scoped under body.galv-reviews so nothing leaks into the Bricks header/footer.
   Generated by seeds/tools/assemble_reviews_admission_css_js.py — do NOT hand-edit; fixes go
   through the comp + re-run. SCOPING: :root->body.galv-reviews; bare body->body.galv-reviews;
   html/@keyframes global; @media inner selectors scoped.
   ============================================================================ */

/* ============================================================
   ADMISSION REVIEWS PAGE — Page-Specific CSS
   ============================================================ */
body.galv-reviews *, body.galv-reviews *::before, body.galv-reviews *::after { box-sizing: border-box; }
html, body.galv-reviews { overflow-x: hidden; }
body.galv-reviews {
    --bg-hero: #13217c;
    --bg-section: #e6ebff;
    --bg-banner-blue: #3b5bff;
    --color-title: #3b5bff;
    --color-cta: #cc00cc;
    --text-primary: #333;
    --text-white: #fffdfe;
    --font-main: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1280px;
}
html { scroll-behavior: smooth; }
body.galv-reviews { margin: 0; font-family: var(--font-body); color: var(--text-primary); line-height: 1.6; }
body.galv-reviews .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============ SECTION 01 — HERO (bachelors-style: content left, Swiper right) ============ */
body.galv-reviews .hero-section {
    background: var(--bg-hero); color: var(--text-white);
    padding: 60px 0 30px; position: relative; overflow: hidden;
}
body.galv-reviews .hero-section .container {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
    align-items: center;
}
body.galv-reviews .hero-content, body.galv-reviews .hero-testimonial { min-width: 0; }
body.galv-reviews .hero-content h1 {
    font-family: var(--font-main); font-weight: 600;
    font-size: 42px; line-height: 1.2; margin: 0 0 20px;
    overflow-wrap: break-word;
}
body.galv-reviews .hero-content p.hero-subhead {
    font-family: var(--font-main); font-weight: 500; font-size: 22px; line-height: 30px;
    margin: 0 0 25px; overflow-wrap: break-word;
}
body.galv-reviews .hero-features { list-style: none; padding: 0; margin: 0 0 30px; }
body.galv-reviews .hero-feature-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; font-size: 18px; line-height: 1.5;
}
body.galv-reviews .hero-feature-item::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: #6ee7b7; flex-shrink: 0; font-size: 18px; margin-top: 4px;
}
body.galv-reviews .btn-magenta {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--color-cta); color: var(--text-white); border: 0;
    height: 48px; padding: 0 22px; border-radius: 10px;
    font-family: var(--font-body); font-size: 17px; font-weight: 600; line-height: 24px;
    cursor: pointer; transition: background .2s ease, transform .2s ease; text-decoration: none;
}
body.galv-reviews .btn-magenta:hover { background: #b300b3; transform: translateY(-1px); }

/* Hero Swiper carousel (right column) */
body.galv-reviews .hero-testimonial { display: flex; flex-direction: column; align-items: stretch; gap: 18px; }
body.galv-reviews .hero-carousel-container { width: 100%; overflow: hidden; position: relative; }
body.galv-reviews .hero-Slider .swiper-slide { height: auto; }
body.galv-reviews .hero-Slider .swiper-wrapper { align-items: stretch; }
body.galv-reviews .hero-carousel-card {
    background: #fff; color: var(--text-primary);
    border-radius: 20px; padding: 25px;
    display: flex; flex-direction: column; gap: 14px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
body.galv-reviews .hero-carousel-header { display: flex; align-items: flex-start; gap: 18px; }
body.galv-reviews .hero-carousel-img {
    width: 120px; height: 120px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
}
body.galv-reviews .hero-carousel-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
body.galv-reviews .hero-carousel-name {
    font-family: var(--font-body); font-weight: 600; font-size: 18px;
    color: var(--text-primary); margin: 0;
}
body.galv-reviews .hero-carousel-journey {
    display: flex; align-items: center; gap: 8px;
    font-size: 16px; color: var(--text-primary);
}
body.galv-reviews .hero-carousel-journey img { height: 18px; width: auto; flex-shrink: 0; object-fit: contain; }
body.galv-reviews .hero-carousel-degree {
    font-family: var(--font-body); font-weight: 600;
    font-size: 16px; color: var(--color-cta); margin: 0;
}
body.galv-reviews .hero-carousel-uni-logo {
    height: 48px; width: auto; max-width: 200px; object-fit: contain;
    margin-top: 4px;
}
body.galv-reviews .hero-carousel-testimonial {
    font-size: 16px; line-height: 1.55; color: var(--text-primary); margin: 0;
}

/* Swiper pagination — light-blue bullets on navy bg */
body.galv-reviews .hero-Slider .swiper-pagination {
    position: static; margin-top: 18px;
    display: flex; justify-content: center; align-items: center; gap: 8px;
}
body.galv-reviews .hero-Slider .swiper-pagination-bullet {
    width: 8px; height: 8px; background: rgba(230, 235, 255, .4); opacity: 1;
    transition: width .2s ease, background .2s ease;
}
body.galv-reviews .hero-Slider .swiper-pagination-bullet-active {
    background: #e6ebff; width: 28px; border-radius: 4px;
}

/* ============ SECTION 03 — UNI STRIP (white card straddles a 50/50 navy→lavender split) ============ */
body.galv-reviews .uni-strip-section {
    /* Top 50% navy (continues from hero), bottom 50% lavender (transitions to banner) */
    background: linear-gradient(
        to bottom,
        var(--bg-hero) 0,
        var(--bg-hero) 50%,
        var(--bg-section) 50%,
        var(--bg-section) 100%
    );
    position: relative; z-index: 5;
    overflow-x: clip;                 /* clip horizontal auto-scroll */
}
body.galv-reviews .hero-stats {
    max-width: 1062px; width: calc(100% - 40px);
    margin: 0 auto;                   /* centered, no negative margin needed — gradient does the work */
    background: #fff; border-radius: 20px;
    padding: 24px 30px; box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
body.galv-reviews .hero-stats h2 {
    font-family: var(--font-main); font-weight: 600; color: var(--color-title);
    font-size: 22px; line-height: 35px; text-align: center; margin: 0 0 20px;
}
body.galv-reviews .uni-strip {
    display: flex; gap: 30px; overflow: hidden; position: relative;
}
body.galv-reviews .uni-strip-track {
    display: flex; gap: 30px;
    animation: ss-strip-scroll 60s linear infinite;
    flex-shrink: 0;
}
body.galv-reviews .uni-strip-track img { width: 110px; height: 70px; object-fit: contain; flex-shrink: 0; }
@keyframes ss-strip-scroll{
    from{ transform: translateX(0); }
    to  { transform: translateX(-50%); }
}

/* Shared section eyebrow + headline pattern */
body.galv-reviews .section-eyebrow {
    text-align: center; color: var(--color-cta);
    font-family: var(--font-body); font-weight: 600; font-size: 18px;
    margin: 0 0 8px; text-transform: none; letter-spacing: 0;
}
body.galv-reviews .section-headline {
    font-family: var(--font-main); font-weight: 600; font-size: 36px; line-height: 1.3;
    color: var(--color-title); text-align: center;
    max-width: 1024px; margin: 0 auto;
}
body.galv-reviews .section-headline .accent { color: var(--color-cta); }

/* ============ SECTION 04 — INSPIRING JOURNEYS ============ */
body.galv-reviews .banner-section {
    background: var(--bg-section);
    padding: 60px 0 60px;
    text-align: center;
}
body.galv-reviews .banner-section .section-headline {
    font-family: var(--font-main); font-weight: 500; font-size: 22px; line-height: 1.5;
    color: var(--text-primary); margin: 20px auto 30px;
}
body.galv-reviews .banner-section .section-headline strong {
    display: block; color: var(--color-title); font-weight: 600; font-size: 36px;
    line-height: 1.3; margin-bottom: 10px;
}
body.galv-reviews .banner-section .world-map {
    display: block; width: 100%; max-width: 1280px; height: auto; margin: 0 auto;
}

/* ============ SECTION 05 — STUDENT CARDS + TABS ============ */
body.galv-reviews .students-section { background: #fffdfe; padding: 60px 0 40px; }
body.galv-reviews .students-section .section-headline {
    font-family: var(--font-main); font-weight: 500; font-size: 20px; line-height: 1.5;
    color: var(--text-primary); margin: 20px auto 30px;
}
body.galv-reviews .students-section .section-headline strong {
    display: block; color: var(--color-title); font-weight: 600; font-size: 32px;
    line-height: 1.3; margin-bottom: 10px;
}

body.galv-reviews .tab-bar {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
    padding: 0 0 10px;
    max-width: 880px; margin: 0 auto;
}
body.galv-reviews .tab-bar button {
    min-width: 140px; height: 48px; border-radius: 8px;
    border: 1px solid var(--bg-banner-blue); background: transparent;
    color: var(--color-title); font-family: var(--font-body);
    font-size: 16px; font-weight: 500; cursor: pointer;
    padding: 0 18px; text-align: center;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}
body.galv-reviews .tab-bar button:hover { background: var(--bg-section); }
body.galv-reviews .tab-bar button.is-active { background: var(--bg-banner-blue); color: #fff; font-weight: 600; border-color: var(--bg-banner-blue); }

body.galv-reviews .tabs-content { max-width: 1100px; margin: 20px auto 0; }
body.galv-reviews .tab-pane { display: none; }
body.galv-reviews .tab-pane.is-active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    align-items: stretch;
}

body.galv-reviews .student-card {
    position: relative;      /* anchor for the absolute-positioned badge */
    display: flex;
    flex-direction: column;
    background: var(--bg-section);
    border-radius: 10px;
    padding: 25px 20px;
    box-sizing: border-box;
    min-width: 0;            /* allow grid to shrink the card below its min-content */
    overflow: hidden;        /* clip any rogue overflow at the card border */
    transition: box-shadow .25s ease, transform .25s ease;
}

/* Program category badge — top-right corner pill, single brand-magenta hue across all categories */
body.galv-reviews .card-badge {
    position: absolute; top: 14px; right: 14px;
    display: inline-flex; align-items: center;
    padding: 4px 12px; border-radius: 999px;
    font-family: var(--font-body); font-size: 12px; font-weight: 600;
    letter-spacing: .3px; line-height: 1;
    color: #fff;
    background: var(--color-cta);    /* #cc00cc — design token */
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    z-index: 2;
}
body.galv-reviews .student-card * {
    min-width: 0;            /* every descendant can shrink too */
}
body.galv-reviews .student-card:hover { box-shadow: 0 8px 24px rgba(19,33,124,.08); transform: translateY(-2px); }
body.galv-reviews .card-head {
    display: flex; align-items: flex-start; gap: 20px; margin-bottom: 15px;
    padding-right: 78px;    /* leave room for the badge */
}
body.galv-reviews .card-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
body.galv-reviews .card-id h3 {
    font-family: var(--font-body); font-weight: 600; font-size: 18px;
    color: var(--text-primary); margin: 0 0 9px;
}
body.galv-reviews .card-path {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; column-gap: 8px;
    font-size: 18px; color: var(--text-primary); font-family: var(--font-body);
}
body.galv-reviews .card-path > :first-child { text-align: right; }
body.galv-reviews .card-path > :last-child { text-align: left; }
body.galv-reviews .card-path img { width: 60px; height: auto; justify-self: center; }
body.galv-reviews .card-journey {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    align-items: stretch;
    column-gap: 8px;
    margin-top: 15px;
}
body.galv-reviews .journey-side {
    text-align: center; padding: 16px 10px 14px; border-radius: 7px;
    background: #fff;
    min-height: 150px; min-width: 0;
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start;   /* anchor from top so both sides line up */
    row-gap: 12px;                 /* consistent gap between logo well and label */
}
body.galv-reviews .journey-side .logo-well {
    width: 100%;
    height: 60px;                  /* fixed band so every logo sits in the same vertical space */
    display: flex; align-items: center; justify-content: center;
}
body.galv-reviews .journey-side img {
    /* Subash v1 2026-06-20: object-fit was inert with auto w/h (logos cropped/compressed);
       fill the 60px well and contain so the whole logo always shows, aspect preserved */
    width: 100%; height: 100%;
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    display: block;
}
body.galv-reviews .journey-side p {
    margin: 0; font-family: var(--font-body); color: var(--color-cta);
    font-size: 16px; line-height: 1.3;
    min-height: 2.6em;             /* reserves space for 2 lines, so short labels don't shift others up */
    display: flex; align-items: flex-start; justify-content: center;
}
body.galv-reviews .journey-plane {
    width: 100%; max-width: 45px; height: auto; max-height: 30px;
    margin: 0 auto; display: block; align-self: center;
    object-fit: contain;
    pointer-events: none;
}
body.galv-reviews .card-quote {
    font-family: var(--font-body); font-size: 17.5px; color: var(--text-primary);
    margin: 18px 0 0; line-height: 1.55;
    flex-grow: 1;            /* pushes button to bottom on shorter testimonials */
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}
body.galv-reviews .journey-side p { overflow-wrap: break-word; }
body.galv-reviews .see-more-btn {
    width: 160px; border: 2px solid var(--bg-banner-blue);
    border-radius: 10px; background: transparent;
    color: var(--bg-banner-blue);
    font-size: 18px; font-family: var(--font-body); font-weight: 600;
    line-height: 29px; padding: 8px 0; text-align: center;
    cursor: pointer; transition: background .2s, color .2s;
    display: block;
    margin: 22px auto 0;     /* always sits at the bottom of the flex column */
}
body.galv-reviews .see-more-btn:hover { background: var(--bg-banner-blue); color: #fff; }

/* Popup modal — lives at <main> root, not inside cards, so position:fixed works */
body.galv-reviews .popup-modal {
    position: fixed; inset: 0; z-index: 99999;
    align-items: center; justify-content: center;
    padding: 20px;
    display: none;
}
body.galv-reviews .popup-modal.is-open { display: flex; }
body.galv-reviews .popup-modal[hidden] { display: none !important; }
body.galv-reviews .popup-backdrop {
    position: absolute; inset: 0;
    background: rgba(11, 18, 64, .72);
    backdrop-filter: blur(2px);
    cursor: pointer;
}
body.galv-reviews .popup-panel {
    position: relative; z-index: 2;
    background: #fff; border-radius: 14px;
    max-width: 900px; width: 100%;
    /* Consistent height: tall enough for short testimonials, capped on the long ones */
    height: min(640px, calc(100vh - 40px));
    padding: 36px 30px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    animation: ss-popup-in .25s ease-out;
    /* Layout: head + journey fixed, quote scrolls inside the panel */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
@keyframes ss-popup-in{
    from{ opacity: 0; transform: translateY(20px) scale(.96); }
    to  { opacity: 1; transform: translateY(0) scale(1); }
}
body.galv-reviews .popup-close {
    position: absolute; top: 12px; right: 14px;
    background: transparent; border: 0;
    font-size: 32px; font-weight: 300; line-height: 1;
    cursor: pointer; color: #666;
    width: 36px; height: 36px; padding: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: background .15s ease, color .15s ease;
}
body.galv-reviews .popup-close:hover { background: #f0f0f0; color: #000; }
body.galv-reviews .popup-head { display: flex; gap: 20px; align-items: center; margin-bottom: 20px; flex-shrink: 0; }
body.galv-reviews .popup-head h3 {
    margin: 0 0 9px;
    font-family: var(--font-body); font-weight: 600; font-size: 20px;
    color: var(--text-primary);
}
body.galv-reviews .popup-journey {
    display: grid; grid-template-columns: 1fr 50px 1fr; column-gap: 8px;
    align-items: stretch; flex-shrink: 0;
    background: var(--bg-section); border-radius: 10px; padding: 15px;
}
body.galv-reviews .popup-journey .journey-side { background: #fff; min-height: 110px; }
body.galv-reviews .popup-quote {
    margin: 22px 0 0; font-size: 17px; line-height: 1.7; color: var(--text-primary);
    flex: 1 1 auto;                /* takes remaining vertical space */
    overflow-y: auto;              /* long testimonials scroll inside panel, not the page */
    padding-right: 8px;            /* breathing room from scrollbar */
}
body.galv-reviews .popup-quote::-webkit-scrollbar { width: 6px; }
body.galv-reviews .popup-quote::-webkit-scrollbar-thumb { background: #c5cde8; border-radius: 3px; }
body.galv-reviews .popup-quote::-webkit-scrollbar-thumb:hover { background: #9eaada; }
body.galv-reviews.popup-open { overflow: hidden; }

/* ============ SECTION 06 — FORM ============ */
body.galv-reviews .form-section { background: var(--bg-hero); padding: 50px 0 80px; overflow: hidden; }
body.galv-reviews .form-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px;
    max-width: 1250px; margin: 0 auto; align-items: stretch;
}
body.galv-reviews .form-illustration {
    width: 100%; height: auto; max-width: 625px;
    display: block; margin: 0 auto;
    border-radius: 16px;
}
body.galv-reviews .form-card {
    background: var(--bg-hero); border-radius: 20px;
    padding: 0; overflow: hidden;
    min-width: 0;
}
body.galv-reviews .form-card iframe {
    width: 100%; height: 600px; border: 0;
    display: block;
}

/* ============ RESPONSIVE ============ */
/* Tablet portrait + below: show one card per row (1024px breakpoint isolates the card grid only) */
@media (max-width: 1023px){
    body.galv-reviews .tab-pane.is-active { grid-template-columns: 1fr; gap: 28px; max-width: 720px; margin: 0 auto; }
}

@media (max-width: 991px){
    body.galv-reviews .hero-section .container { grid-template-columns: 1fr; gap: 30px; }
    body.galv-reviews .hero-content h1 { font-size: 36px; line-height: 1.2; }
    body.galv-reviews .hero-content p.hero-subhead { font-size: 18px; line-height: 1.5; }
    body.galv-reviews .hero-carousel-img { width: 100px; height: 100px; }
    body.galv-reviews .form-grid { grid-template-columns: 1fr; gap: 24px; }
    body.galv-reviews .form-illustration { max-width: 100%; }
    body.galv-reviews .tabs-content { padding: 0; }
    body.galv-reviews .banner-section .section-headline strong, body.galv-reviews .students-section .section-headline strong { font-size: 26px; }
}
@media (max-width: 767px){
    body.galv-reviews .hero-section { padding: 40px 0 40px; }
    body.galv-reviews .hero-content h1 { font-size: 36px; line-height: 1.2; }
    body.galv-reviews .hero-feature-item { font-size: 16px; }
    body.galv-reviews .hero-carousel-card { padding: 20px; }
    body.galv-reviews .hero-carousel-header { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
    body.galv-reviews .hero-stats { padding: 20px; }
    body.galv-reviews .hero-stats h2 { font-size: 18px; line-height: 1.4; }
    body.galv-reviews .students-section { padding: 40px 0 40px; }
    body.galv-reviews .tab-pane.is-active { gap: 24px; max-width: none; }

    /* Card body — keep journey ROW horizontal, just smaller */
    body.galv-reviews .card-head, body.galv-reviews .popup-head { flex-direction: column; align-items: center; text-align: center; gap: 12px; padding-right: 0; }
    body.galv-reviews .card-avatar { width: 96px; height: 96px; }
    body.galv-reviews .card-id h3, body.galv-reviews .popup-head h3 { font-size: 17px; }
    body.galv-reviews .card-path { justify-content: center; font-size: 16px; }
    body.galv-reviews .card-path img { width: 50px; }
    body.galv-reviews .card-journey, body.galv-reviews .popup-journey {
        grid-template-columns: 1fr 36px 1fr;     /* horizontal: school | plane | uni */
        column-gap: 6px;
    }
    body.galv-reviews .journey-side { padding: 10px 6px; min-height: 120px; row-gap: 8px; }
    body.galv-reviews .journey-side .logo-well { height: 48px; }
    body.galv-reviews .journey-side p { font-size: 13px; line-height: 1.2; min-height: 2.4em; }
    body.galv-reviews .journey-plane { width: 100%; max-width: 36px; max-height: 24px; }

    body.galv-reviews .uni-strip-track img { width: 80px; height: 50px; }
    /* Mobile tabs: All full-width, then Bachelors/Masters and MBA/PhD as 2-col pairs */
    body.galv-reviews .tab-bar {
        display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
        flex-wrap: initial;
    }
    body.galv-reviews .tab-bar button { width: 100%; min-width: 0; padding: 0 12px; }
    body.galv-reviews .tab-bar button:first-child { grid-column: 1 / -1; }
    body.galv-reviews .form-card iframe { height: 580px; }

    /* Popup: same pattern as desktop — head+journey fixed at top, quote scrolls inside */
    body.galv-reviews .popup-panel {
        padding: 28px 18px 22px;
        height: 80vh;              /* ~80% of viewport for a substantial card */
        max-height: calc(100vh - 24px);
        overflow: hidden;          /* matches desktop: panel is fixed size */
    }
    body.galv-reviews .popup-quote {
        font-size: 15px;
        flex: 1 1 auto;            /* takes leftover space, scrolls inside */
        overflow-y: auto;
        padding-right: 6px;
        margin-top: 16px;
    }
    body.galv-reviews .popup-modal { padding: 12px; }
}
@media (max-width: 478px){
    body.galv-reviews .banner-section .section-headline strong, body.galv-reviews .students-section .section-headline strong { font-size: 22px; }
    body.galv-reviews .section-headline { font-size: 16px; }
    body.galv-reviews .hero-carousel-uni-logo { height: 38px; }
    /* Even tighter cards on phones */
    body.galv-reviews .student-card { padding: 20px 14px; }
    body.galv-reviews .card-journey, body.galv-reviews .popup-journey { grid-template-columns: 1fr 28px 1fr; }
    body.galv-reviews .journey-side { padding: 8px 4px; min-height: 110px; row-gap: 6px; }
    body.galv-reviews .journey-side .logo-well { height: 40px; }
    body.galv-reviews .journey-side p { font-size: 12px; min-height: 2.4em; }
    body.galv-reviews .journey-plane { max-width: 28px; max-height: 18px; }
    body.galv-reviews .card-quote { font-size: 15px; }
    body.galv-reviews .see-more-btn { width: 140px; font-size: 16px; }
    body.galv-reviews .popup-panel {
        padding: 24px 14px 18px;
        height: 80vh;
        max-height: calc(100vh - 24px);
    }
    body.galv-reviews .popup-head { gap: 12px; margin-bottom: 14px; }
    body.galv-reviews .popup-quote { font-size: 14px; line-height: 1.6; margin-top: 14px; }
}

/* ============================================================================
   Bricks integration reset (galv reviews-admission v0.1) — neutralize Bricks' container
   max-width/flex/padding so the comp sections own the full-width layout. Comp body
   font/background already carried by the scoped body.galv-reviews{} rule above.
   ============================================================================ */
body.galv-reviews #brx-content.brxe-container,
body.galv-reviews .brxe-container,
body.galv-reviews .brxe-text {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block !important;
    gap: 0 !important;
    align-items: stretch !important;
}
body.galv-reviews #brx-content.brxe-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
