/* =========================================================
   ONLINE & INTENSIVE COURSE HERO
========================================================= */

.intensive-course.section {
    z-index: 2;
    border-bottom-left-radius: var(--radius-big);
    border-bottom-right-radius: var(--radius-big);
    background-color: #211e1d;

    margin-bottom: 0;
    margin-top: -64px;
    padding-top: 1px !important;
    position: relative;
}
.section{
    margin: 0 !important;
}
/* HIDDEN COURSE HERO */
.container.is-course-hero.hide {
    display: none;
}

.container.is-course-hero {
    background-color: var(--off-white);
    color: var(--off-black);
    text-align: center;
    border-radius: 1.5rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
    margin-bottom: 4rem;
    padding: 0 4rem 4rem;
    display: flex;
}
.info {
    gap: 20px !important;
}
/* BADGE LEVEL CIRCLES */
.couse-card_level.is-big {
    margin-top: -48px;
}

.couse-card_level {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
}

.course-level-circle {
    background-color: var(--yellow);
    border-radius: 1000px;
    width: 96px;
    height: 96px;
    font-size: 4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT STYLES */
.text-block-4 {
    color: var(--light--blue);
    font-size: 32px;
    font-weight: 600;
}

.hero_title.is-course {
    color: var(--off-black);
    max-width: 1200px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.course-hero_paragraph {
    text-wrap: balance;
    max-width: 800px;
    margin-bottom: 1.5em;
    font-size: 1.5rem;
}

/* ONLINE COURSE HERO GRID */
.container.is-online-course-hero-content {
    display: grid;
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
    grid-auto-columns: 1fr;
    min-height: 600px;
    background-color: var(--off-white);
    color: var(--off-black);
    text-align: center;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 0;
}

/* LEFT BLOCK */
#w-node-online-left {
    align-self: stretch;
}

.div-block-38 {
    position: relative;
}

.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img {
    max-width: 100%;
    display: inline-block;
}

/* RIGHT BLOCK */
.div-block-37 {
    text-align: left;
    padding: 4rem;
}

.text-block-4-copy {
    color: var(--light--blue);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

/* BUTTON */
.button {
    background-color: var(--off-black);
    color: var(--off-white);
    text-align: center;
    border-radius: 8rem;
    min-width: 125px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Big CTA button */
.button.is-big {
    background-color: var(--dark--green);
    color: var(--light--green);
    font-size: 24px;
}

/* Hover for big button */
.button.is-big:hover {
    transform: translateY(-1px);
}

/* =========================================================
   GLOBAL TITLES
========================================================= */
.h-section-subtitle {
    color: black !important;
    margin: 0;
    font-size: 4rem;
    line-height: 1;
    text-wrap: balance;
}

.h-section-subtitle.is-info {
    margin-bottom: 3rem !important;
    color: black;
}

/* =========================================================
   INFO SECTION – Online Course Cards
========================================================= */
.info-section.section.is-online-classes {
    background-color: var(--off-white);
    margin-top: -4rem;
    padding-top: 10rem;
}

.container.is-h-courses {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* GRID */
.info {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
}

/* CARD */
.info-card {
    background-color: var(--light--green);
    color: var(--off-black);
    border-radius: var(--radius-small);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* ICON */
.couse-card_level.is-black {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    filter: brightness(0%);
}

.info-svg {
    width: 48px;
}

/* CARD TITLE */
.course-card_title {
    margin: 0 0 .5rem;
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 500;
    text-wrap: balance;
}

/* CARD TEXT */
.course-card_text {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: auto;
}

/* RESPONSIVE – Tablet */
@media (max-width: 991px) {
  .info {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

}

/* RESPONSIVE – Mobile */
@media (max-width: 767px) {
  .info {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 2rem;
  }

  .info-card {
    padding: 2rem; /* slightly tighter for mobile */
  }

  .course-card_title {
    font-size: 1.4rem;
  }

  .course-card_text {
    font-size: 12px;
  }
}


/* =========================================================
   ONLINE HERO – PERFECT MOBILE LAYOUT (exact screenshot)
========================================================= */

@media screen and (max-width: 767px) {

    /* Convert grid → stacked layout */
    .container.is-online-course-hero-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: var(--off-white);
        border-radius: 2rem; /* big radius like screenshot */
        padding: 1.5rem 1.25rem 2.5rem;
        gap: 1.5rem; /* spacing between image + text */
    }

    /* IMAGE WRAPPER */
    .div-block-38 {
        width: 100%;
        border-radius: 1.5rem;
        overflow: hidden; /* IMPORTANT – clips rounded corners */
    }

    /* IMAGE STYLE (matches screenshot) */
    .full-image.rounded {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 1rem; /* slight rounding */
        display: block;
    }

    /* SUBTITLE */
    .text-block-4-copy {
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: .5rem;
        text-align: center;
    }

    /* TITLE */
    .hero_title.is-course.is-online-course {
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 1.1;
        margin: 0 auto 1rem;
        text-align: center;
        
    }

    /* PARAGRAPH */
    .course-hero_paragraph {
        font-size: 1.2rem;
        line-height: 1.35;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }

    /* BUTTON */
    .button.is-big {
        font-size: 1.25rem;
        margin-top: 1rem;
    }
    .div-block-37 {
        padding: 2rem 1.5rem;
        text-align: center;
    }
}


/* =========================================================
   INLINE CTA – Online Courses Version
========================================================= */
.inline-cta-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    width: 100%;
    max-width: 1440px;
    padding: 4rem 3rem;

    color: var(--off-white);
    border-radius: var(--radius-mid);

    grid-column-gap: 2rem;
    grid-row-gap: 2rem;

    background-image:
    linear-gradient(to bottom, #00000010, #00000010),
    linear-gradient(135deg, #00a06e 0%, #3577f4 100%);
}

.inline-cta-block.is-online-courses {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    margin-top: 2rem;

    background-image:
    linear-gradient(to bottom, #00000010, #00000010),
    linear-gradient(135deg, #00a06e 0%, #3577f4 100%);

}

/* CTA TITLE */
.heading-4 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--off-white);
}

/* PILL WRAPPER */
.div-block-14 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

/* PILL BASE STYLE */
.highlight-pill {
    padding: 0.65rem 1.4rem;
    border-radius: 50rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

/* PILL COLORS */
.highlight-pill.b { background-color: var(--yellow);       color: var(--off-black); }
.highlight-pill.a { background-color: var(--purple);       color: var(--off-white); }
.highlight-pill.d { background-color: var(--light--orange); color: var(--off-black); }
.highlight-pill.c { background-color: var(--light--green);  color: var(--off-black); }
.highlight-pill.e { background-color: var(--light--yellow); color: var(--off-black); }
.highlight-pill.f { background-color: var(--light--blue);   color: var(--off-black); }
.highlight-pill.g { background-color: var(--light--purple); color: var(--off-black); }

/* =========================================================
   BUTTONS
========================================================= */
.button {
    background-color: var(--off-black);
    color: var(--off-white);
    border-radius: 8rem;
    min-width: 125px;
    padding: .75rem 2rem;
    font-weight: 700;
    text-align: center;
    transition: transform .2s, background-color .2s, color .2s;
}

.button.is-big {
    background-color: var(--dark--green);
    color: var(--light--green);
    font-size: 24px;
}

.button.is-white {
    background-color: var(--off-white);
    color: var(--off-black);
    margin-top: auto;
}

/* =========================================================
   ONLINE HERO – MOBILE RESPONSIVE FIX
========================================================= */

@media screen and (max-width: 767px) {

    /* Stack image and text vertically */
    .container.is-online-course-hero-content {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    /* Make image container full width */
    .div-block-38 {
        width: 100%;
        height: auto;
    }

    /* Image becomes responsive */
    .full-image.rounded {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 1rem;
    }

    /* Fix padding so text doesn’t overflow */
    .div-block-37 {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Reduce title size for mobile */
    .hero_title.is-course.is-online-course {
        margin-top: 1rem;
        font-size: 2rem;
        line-height: 1.2;
    }

    /* Subtitle style */
    .text-block-4-copy {
        font-size: 1.4rem;
        line-height: 1.2;
    }
}

/* Mobile */
@media screen and (max-width: 479px) {

    .full-image.rounded {
        border-radius: 1rem !important;
    }

    .text-block-4-copy {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.1;
    }

    .hero_title.is-course.is-online-course {
        margin-top: 0 !important;
        font-size: 2rem;
        line-height: 1.1;
        font-weight: 600;
    }

    .course-hero_paragraph {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .inline-cta-block {
        border-radius: var(--radius-small);
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.button.is-white {
    background-color: var(--off-white);
    color: var(--off-black);
    margin-top: auto;
}
.button.is-white:hover {
    background-color: white;
    color: var(--off-black);
    margin-top: auto;
}

/* ================================
   GLS – ONLINE INFO SECTION
================================ */

.gls-online-info {
    background-color: var(--off-white);
    padding: 6rem 4rem;
    display: flex;
    justify-content: center;
}

.gls-online-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-desktop);
    width: 100%;
    max-width: 1440px;
}

/* TEXT BLOCK */
.gls-online-info-text {
    background-color: var(--light--off-white);
    padding: 4rem 3rem;
    border-radius: var(--radius-small);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gls-online-info-richtext h2 {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: .25em;
    line-height: 1;
}

.gls-online-info-richtext h3 {
    font-size: 1.5rem;
    color: var(--light--blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gls-online-info-richtext p {
    margin-bottom: .75rem;
}

.gls-button-big {
    background-color: var(--dark--green);
    color: var(--light--green);
    font-size: 22px;
    border-radius: 8rem;
    padding: .75rem 2rem;
    min-width: 125px;
    width: auto !important;          /* prevent full width */
    display: inline-flex !important; /* shrink-to-content */
    justify-content: center;
    align-items: center;
    white-space: nowrap;             /* prevent line break */
}

.gls-online-info-text .gls-button-big {
    width: auto !important;       /* stop stretching */
    align-self: flex-start !important;  /* prevent auto stretching in flex */
    display: inline-flex !important;    /* shrink-to-content */
    min-width: 125px;
    padding: .75rem 2rem;
    white-space: nowrap;
}

/* IMAGE BLOCK */
.gls-online-info-image {
    background-color: var(--dark--off-white);
    border-radius: var(--radius-small);
    overflow: hidden;
}

.gls-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   RESPONSIVE FIXES
================================ */
@media (max-width: 767px) {

    .gls-online-info {
        padding: 4rem 2rem;
    }

    .gls-online-info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gls-online-info-text {
        padding: 3rem 2rem;
    }

    .gls-online-info-richtext h2 {
        font-size: 2.3rem;
    }
}
/* ============================
   GLS More Info Section — COMPACT HEIGHT
============================ */

.gls-more-info {
    background-color: var(--off-white);
    padding: 6rem 4rem;
}

.gls-more-info-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.gls-more-info-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: var(--off-black);
}

/* GRID */
.gls-more-info-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1.5rem;
    grid-row-gap: 4rem;
}

/* CARD – less padding, no space-between */
.gls-info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    padding: 2rem;
    background-color: var(--light--green);
    border-radius: 2rem;
    }

/* Use margin-top: auto to push button to bottom */
.gls-info-button {
    margin-top: auto;
}


/* ICON */
.gls-info-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 1rem;
}

.info-card-arrow {
    color: var(--off-black);
}

/* TITLES & TEXT – slightly tighter */
.gls-info-title {
    margin: 0 0 .5rem;
    font-size: 1.2rem;    /* was 1.75rem */
    font-weight: 700;
    line-height: 1.2;
    color: var(--off-black);
}

.gls-info-text {
    font-size: 0.8rem;      /* was 1.1rem */
    line-height: 1.45;    /* a bit tighter */
    color: var(--off-black);
    margin: 0 0 1.5rem;   /* pushes button a bit down, but not too much */
}

/* BUTTON */
.gls-info-button {
    background-color: #000;
    color: var(--off-white);
    border-radius: 2rem;
    padding: .35rem 1rem;
    min-width: 140px;
    width: auto !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    text-decoration: none;
    border: none !important;
    margin-top: 0.5rem;   /* small gap from text */
}

.gls-info-button:hover {
    background-color: #000;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .gls-more-info-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
    }

    .gls-more-info-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .gls-more-info {
        padding: 4rem 2rem;
    }

    .gls-more-info-grid {
        grid-template-columns: 1fr;
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
    }

    .gls-info-card {
        padding: 1.75rem;
    }

    .gls-info-title {
        font-size: 1.5rem;
    }

    .gls-info-text {
        font-size: 1rem;
    }
}
.gls-info-spacer {
    flex-grow: 1;
}

/* 9ONSOL section */

.rich-text-section.section {
    background-color: var(--light--off-white);
    padding: 6rem 2rem;
}

.rich-text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
}

.rich-text h2 {
    letter-spacing: -1px;
    text-wrap: balance;
    margin-top: 1em;
    margin-bottom: .5em;
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--off-black);
}

.rich-text h3 {
    color: var(--light--blue);
    margin-top: 1em;
    margin-bottom: .5em;
    font-size: 1.4rem;
    font-weight: 600;
}

.rich-text p {
    margin-bottom: 0.75em;
    line-height: 1.6;
    font-size: 1.1rem;
    color: var(--off-black);
}

.rich-text figure {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.w-richtext-align-fullwidth {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.w-richtext-figure-type-video {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
}

.w-richtext-figure-type-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}
/* ================================
   RESPONSIVE FIX – Mobile screens
================================ */
@media (max-width: 767px) {
  .rich-text-section.section {
    padding: 4rem 1.25rem;
  }

  .rich-text {
    font-size: 1.05rem;
  }

  .rich-text h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
  }

  .rich-text h3 {
    font-size: 1.1rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .rich-text p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .w-richtext-figure-type-video {
    padding-bottom: 56.25%; /* remains 16:9 */
  }
  .gls-podcast-video {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9; /* maintain 16:9 ratio */
    }
}
.gls-podcast-video {
    max-width: 100%;
}

/* ================================
   GLS – ONLINE COURSE SECTION
   Two-Column Grid Layout
================================ */

/* FULL-WIDTH BACKGROUND SECTION */
.section.is-off-white {
  width: 100%;
  background-color: var(--off-white);
  padding: 6rem 1rem;
}

/* GRID LAYOUT (Desktop) */
.container.is-2-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 5rem; /* GAP BETWEEN ROWS */
}

/* CONTENT BLOCK */
.get-started-contents {
  background-color: var(--light--off-white);
  padding: 4rem 3rem;
  border-radius: var(--radius-small);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* IMAGE BLOCK */
.image-block {
  background-color: var(--dark--off-white);
  border-radius: var(--radius-small);
  display: flex;
  overflow: hidden;
}

.full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TYPOGRAPHY */
.h-section-subtitle,
.get-started-contents h2 {
  margin: 0;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--off-black);
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light--blue);
}

.box-rich-text p {
  
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* BUTTON FIX → DO NOT TAKE FULL WIDTH */
.get-started-contents .button,
.get-started-contents .button.is-big,
.get-started-contents .w-button {
  width: auto !important;
  display: inline-block !important;
  align-self: flex-start;
}

/* DEFAULT BUTTON STYLE */
.button.is-big {
  background-color: var(--off-black);
  color: var(--off-white);
  padding: 1rem 2rem;
  border-radius: 4rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
}

.button.is-big:hover {
  transform: translateY(-3px);
  background-color: #000;
  color: var(--light--off-white);
}

/* RESPONSIVE — TABLET/MOBILE */
@media (max-width: 991px) {
  .container.is-2-col-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .get-started-contents {
    padding: 3rem 2rem;
  }

  .h-section-subtitle,
  .get-started-contents h2 {
    font-size: 2.5rem;
  }

  .box-rich-text p {
    font-size: 1.1rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 479px) {
  .get-started-contents {
    padding: 2rem 1.5rem;
  }

  .h-section-subtitle,
  .get-started-contents h2 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .image-block {
    margin-bottom: 20px;
  }
}

/* ================================
   INLINE CTA SECTION
================================ */

.inline-cta-section.section {
  background-color: var(--light--off-white);
  display: flex;
  justify-content: center;
}

.inline-cta-block {
  width: 100%;
  max-width: 1440px;
  padding: 4rem 3rem;
  border-radius: var(--radius-mid);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;

  background-image:
      linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.10)),
      linear-gradient(135deg, #3577f4 0%, #00d98a 100%);

  color: var(--off-white);
}

.heading-cta {
  margin: 0;
  font-size: 3.6rem;
  line-height: 1;
  text-wrap: balance;
  color: var(--off-white);
}

.cta-box-subtext {
  max-width: 900px;
  font-size: 1.5rem;
  margin: 0;
  color: var(--off-white);
}

.cta-btn {
  background-color: var(--off-white);
  color: var(--off-black);
  padding: 1rem 2.5rem;
  border-radius: 4rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

/* CTA RESPONSIVE */
@media (max-width: 767px) {
  .inline-cta-block {
    padding: 3rem 1.75rem;
    gap: 1.5rem;
  }

  .heading-cta {
    font-size: 2.5rem;
  }

  .cta-box-subtext {
    font-size: 1.1rem;
  }

  .cta-btn {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 479px) {
    .section {
        padding: 1rem 1rem !important;
    }
}
/* ============================================
   FIX — Reduce space between HERO and INFO section
============================================ */

.container.is-course-hero {
    margin-bottom: 1rem !important;   /* Avant: 4rem */
}

.info-section.section.is-online-classes {
    margin-top: -2rem !important;     /* Avant: -4rem */
    padding-top: 4rem !important;     /* Avant: 10rem */
}

/* ============================================
   SECTION WRAPPER
============================================ */
.gls-schedule-section {
    padding: 4rem 1.5rem;
        background-color: var(--light--off-white);
}

.gls-schedule-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}


/* ============================================
   DROPDOWN CARD WRAPPER
============================================ */
.schedule-dropdown {
    width: 100%;
        border: 1px solid var(--dark--off-white);
    border-radius: 1rem;
    background-color: #0000;
    overflow: hidden;
    transition: all .3s ease;
}

/* Trigger row */
.schedule-dropdown_trigger {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Trigger title */
.schedule-dropdown_trigger h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    color: #111;
    letter-spacing: -0.3px;
    text-wrap: pretty;
}


/* ============================================
   DROPDOWN ICON ( + → X )
============================================ */
.dropdown-icon {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dropdown-line {
    width: 55%;
    height: 2px;
    background-color: #333;
    position: absolute;
    border-radius: 2px;
    transition: all .3s ease;
}

.dropdown-line.is-rotated {
    transform: rotate(90deg);
}

/* OPEN → Transform into X */
.schedule-dropdown.open .dropdown-line {
    transform: rotate(45deg);
}

.schedule-dropdown.open .dropdown-line.is-rotated {
    transform: rotate(-45deg);
}


/* ============================================
   DROPDOWN CONTENT
============================================ */
.schedule-dropdown_content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .35s ease, height .35s ease;
}

.schedule-dropdown.open .schedule-dropdown_content {
    opacity: 1;
    height: auto;
}

.schedule-dropdown_height {
    padding: 2rem;
}


/* ============================================
   TABLE (Groups List)
============================================ */
.price-table-rich-text {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.table-rich-text {
    flex: 1 1 300px;
}

.table-rich-text p {
    font-size: 1.15rem;
    padding: .65rem 0;
    margin: 0;
    border-bottom: 1px solid #00000012;
    color: #333;
}

.table-rich-text p strong {
    font-size: 1.2rem;
    display: block;
    padding-bottom: .6rem;
    color: #111;
}


/* ============================================
   MOBILE OPTIMIZATION
============================================ */
@media (max-width: 767px) {

    .schedule-dropdown_trigger {
        padding: 1.5rem 1.25rem;
    }

    .schedule-dropdown_trigger h2 {
        font-size: 1.45rem;
        line-height: 1.3;
    }

    .dropdown-icon {
        width: 32px;
        height: 32px;
    }

    .dropdown-line {
        width: 50%;
    }

    .table-rich-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 479px) {

    .gls-schedule-main-title {
        font-size: 2rem;
    }

    .schedule-dropdown_trigger h2 {
        font-size: 1.35rem;
    }

    .schedule-dropdown_height {
        padding: 1.5rem 1rem;
    }

    .price-table-rich-text {
        gap: 1.5rem;
    }
}
@media (max-width: 767px) {
  .gls-online-info-image{
    aspect-ratio: 16 / 10;   
    height: auto;            
  }

  .gls-full-image{
    display: block;         
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #w-node-online-left.div-block-38,
  #w-node-online-left {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 1.5rem;
    overflow: hidden;
  }

  #w-node-online-left .full-image,
  #w-node-online-left .full-image.rounded {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}