/* =============================================================
   COURSE DETAIL PAGE — FIT Institute
   Applies to all individual course pages
   Uses full-width template (no sidebar)
   ============================================================= */

/* ------------------------------------------------------------------
   Hero section
   ------------------------------------------------------------------ */

.fit-meta-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    background-color: #1a8bbd;
    color: #ffffff;
}

.fit-meta-pill--outline {
    background-color: transparent;
    color: #1a8bbd;
    border: 1.5px solid #1a8bbd;
}


/* ------------------------------------------------------------------
   Accreditation band
   ------------------------------------------------------------------ */
.fit-accred-band {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background-color: #e8f4fa;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 24px;
}

.fit-accred-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a8bbd;
    flex-shrink: 0;
}

.fit-accred-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fit-accred-chip {
    font-size: 12px;
    font-weight: 500;
    color: #0d2d3d;
    background-color: #ffffff;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid #c8e4f0;
}

/* ------------------------------------------------------------------
   Disclaimer box
   ------------------------------------------------------------------ */
.fit-disclaimer {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 16px;
}

.fit-disclaimer__title {
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
}

.fit-disclaimer__text {
    font-size: 12px;
    color: #666666;
    line-height: 1.65;
}

/* ------------------------------------------------------------------
   Sticky dates panel
   ------------------------------------------------------------------ */
.fit-dates-panel {
    padding-top: 36px;
    position: fixed;
    top: 24px; /* Distance from top of viewport when sticky */
}

.fit-dates-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 16px;
}

.fit-dates-card__head {
    background-color: #1a8bbd;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fit-dates-card__title {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.fit-dates-card__count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.fit-date-row {
    padding: 16px 18px;
    border-bottom: 1px solid #eeeeee;
}

.fit-date-row:last-child {
    border-bottom: none;
}

.fit-date-row__city {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 3px;
}

.fit-date-row__range {
    font-size: 12px;
    color: #888888;
    margin-bottom: 10px;
}

.fit-btn-register {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 6px;
    background-color: #1a8bbd;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.fit-btn-register:hover {
    background-color: #166f96;
    color: #ffffff;
}

.fit-btn-closed {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 6px;
    background-color: #f5f5f5;
    color: #999999;
    border: 1px solid #e0e0e0;
}

/* ------------------------------------------------------------------
   Course details quick-facts card
   ------------------------------------------------------------------ */
.fit-info-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
}

.fit-info-card__head {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888888;
    padding: 12px 18px;
    border-bottom: 1px solid #eeeeee;
}

.fit-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    border-bottom: 1px solid #eeeeee;
    font-size: 13px;
}

.fit-info-row:last-child {
    border-bottom: none;
}

.fit-info-row__label {
    color: #888888;
}

.fit-info-row__value {
    font-weight: 600;
    color: #222222;
}

/* ------------------------------------------------------------------
   CTA Banner
   ------------------------------------------------------------------ */
.fit-cta-banner {
    background-color: #166f96;
    padding: 60px 40px;
}

.fit-cta-banner__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.fit-cta-banner__title {
    font-size: 1.3rem, 2.5vw, 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 6px 0 8px;
    line-height: 1.25;
}

.fit-cta-banner__sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.fit-cta-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------ */
@media (max-width: 768px) {

    .fit-course-hero {
        padding: 36px 0 32px;
    }

    /* Stack the two-column layout on mobile */
    /* SiteOrigin handles column stacking automatically,
       but we override the sticky panel on mobile */
    .fit-dates-panel {
        position: static;
        padding-top: 0;
        padding-bottom: 36px;
    }

    .fit-cta-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .fit-cta-banner__actions {
        width: 100%;
    }
}

/* -----------------------------------------------
   Sticky dates panel fix — SiteOrigin column cell
   The panel ID targets only the right column cell
   on the course detail page. Replace 1508452 with
   your actual panel grid ID if it differs.
   ----------------------------------------------- */
#pgc-1508452-1-1 {
    position: sticky;
    top: 24px;
    align-self: flex-start;
}

/* Remove sticky from the inner div since we've
   moved it up to the column cell level */
.fit-dates-panel {
    position: static;
}

/* Ensure the parent row uses flexbox so align-self works */
#pg-1508452-1 {
    display: flex;
    align-items: flex-start;
}

/* Registration opening soon — neutral grey pending state */
.fit-btn-pending {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 6px;
    background-color: #e8f4fa;
    color: #1a8bbd;
    border: 1px solid #c8e4f0;
}

/* Closed date row — slightly muted so open dates stand out */
.fit-date-row--closed {
    opacity: 0.65;
}

/* No dates fallback message */
.fit-no-dates {
    font-size: 13px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

.fit-no-dates a {
    color: #1a8bbd;
    text-decoration: none;
}


/* Course Bubble */
.course-bubble {
    display: inline-block;
    background: #ffffff;
    color: #1a8bbd;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
		border: 1px solid #c8e4f0;
}

/* -------------------------------------------------------
   Homepage — Stats Strip
   Dark band directly below the hero
   ------------------------------------------------------- */
.fit-stats-strip {
    background-color: #0d2d3d;
    padding: 0;
    width: 100%;
}


.fit-stats-strip__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.fit-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.fit-stat:last-child {
    border-right: none;
}

.fit-stat__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(86, 175, 213, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fit-stat__num {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
}

.fit-stat__label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
    white-space: nowrap;
}

/* Responsive — stack vertically on mobile */
@media (max-width: 768px) {
    .fit-stats-strip__inner {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .fit-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0 0 20px;
        width: 100%;
    }

    .fit-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Force stats strip to true full viewport width */
.fit-stats-strip {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

/* Remove bottom margin/padding from SiteOrigin slider on homepage */
.home .sow-slider-base {
    margin-bottom: 0 !important;
}

.home .siteorigin-widget-slider {
    margin-bottom: 0 !important;
}

/* Also target the row containing the slider */
.home .panel-grid:first-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove bottom margin from Physio theme slider
   so stats strip sits flush beneath it */
#jumbotron-fullwidth {
    margin-bottom: 0 !important;
}

/* Remove top bar link separators */
.header-topbar-sidebar .menu > li::after {
    display: none !important;
}

/* -------------------------------------------------------
   Service Pages — At a Glance + Ready to Try sidebar cards
   ------------------------------------------------------- */

/* At a Glance card */
.fit-glance-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 14px;
}

.fit-glance-card__head {
    background-color: #1a8bbd;
    padding: 12px 18px;
}

.fit-glance-card__title {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.fit-glance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    border-bottom: 1px solid #eeeeee;
    font-size: 13px;
}

.fit-glance-row:last-child {
    border-bottom: none;
}

.fit-glance-row__label {
    color: #888888;
}

.fit-glance-row__value {
    font-weight: 600;
    color: #222222;
    text-align: right;
}

/* Ready to Try card */
.fit-try-card {
    background-color: #166f96;
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
}

.fit-try-card__title {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.fit-try-card__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 16px;
}

.fit-try-card__btn {
    display: inline-block;
    background-color: #ffffff;
    color: #166f96;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.fit-try-card__btn:hover {
    background-color: #e8f4fa;
    color: #166f96;
}

.blue-divider {
  border: none;
  height: 1px;
  background-color: #3498db; /* Solid blue color */
}

/* Eyebrow Subtitle */
.eyebrow {
    color: #56afd5;
}

/* Blockquote left vertical line */
blockquote {
  border-left-color: #56afd5;
}