/* ============================================================
   CSS CUSTOM PROPERTIES — Design Tokens
   Pulled directly from Figma variables
   ============================================================ */
body.sa-schedule-page-active,
.sa-schedule-page-lp {
  /* --- Colors --- */
  --color-navy:         #001629;       /* Primary dark (headings, bg) */
  --color-navy-mid:     #162b3e;       /* Secondary dark (dark buttons) */
  --color-slate-bg:     #f1f5f9;       /* Light slate section background */
  --color-off-white:    #f9f9f9;       /* Page background */
  --color-white:        #ffffff;
  --color-border:       #c3c7cd;       /* Dividers, card borders */
  --color-text-body:    #43474c;       /* Body copy */
  --color-text-muted:   #74777d;       /* De-emphasised labels */
  --color-orange:       #ff6432;       /* Accent / eyebrow labels */

  --color-white-80: rgba(255, 255, 255, 0.80);
  --color-white-70: rgba(255, 255, 255, 0.70);
  --color-white-10: rgba(255, 255, 255, 0.10);

  /* --- Typography --- */
  --font-serif:   'EB Garamond', Georgia, serif;      /* Headings H1, H2 */
  --font-sans:    'Hanken Grotesk', system-ui, sans-serif; /* Body copy */
  --font-display: 'Poppins', system-ui, sans-serif;   /* Buttons, labels, step headings */

  /* --- Spacing scale (matches Figma 8-pt grid) --- */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* --- Border radii --- */
  --radius-pill: 9999px;
  --radius-card:   8px;
  --radius-card-lg: 18px;

  /* --- Shadows --- */
  --shadow-btn:  0px 14.881px 29.762px -7.143px rgba(0, 0, 0, 0.25);
  --shadow-card: 0px 24px 25px rgba(0, 0, 0, 0.08);
}


/* ============================================================
   RESET & BASE
   ============================================================ */
.sa-schedule-page-lp *, .sa-schedule-page-lp *::before, .sa-schedule-page-lp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.sa-schedule-page-active {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body.sa-schedule-page-active {
  font-family: var(--font-sans);
  background-color: var(--color-off-white);
  color: var(--color-navy);
  line-height: 1.5;
}

.sa-schedule-page-lp img {
  display: block;
  max-width: 100%;
}

.sa-schedule-page-lp ul[role="list"] {
  list-style: none;
}

.sa-schedule-page-lp a {
  text-decoration: none;
  color: inherit;
}


/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* --- Button --- */
.sa-schedule-page-lp .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-width: 245px;          /* matches Figma fixed width (244.908px) */
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-display);
  font-size: 11.905px;
  font-weight: 700;
  letter-spacing: 0.7143px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.1s ease;
}

.sa-schedule-page-lp .btn:hover  { background-color: var(--color-orange); color: var(--color-white); }
.sa-schedule-page-lp .btn:active { transform: scale(0.98); }

.sa-schedule-page-lp .btn--white {
  background-color: var(--color-white);
  color: var(--color-navy);
}

.sa-schedule-page-lp .btn--dark {
  background-color: var(--color-navy-mid);
  color: var(--color-white);
}

/* ============================================================
   SECTION 1: HERO — "Meet Your Growth Expert"
   Full-bleed dark section, content left, hero photo right
   ============================================================ */
.sa-schedule-page-lp .hero {
  position: relative;
  background-color: var(--color-navy);
  padding: 60px var(--space-6);  /* mobile-first: tighter padding */
  overflow: hidden;
  min-height: 480px;
}

/* Layered decorative backgrounds — texture then hero photo */
.sa-schedule-page-lp .hero__backgrounds {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sa-schedule-page-lp .hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sa-schedule-page-lp .hero__bg-texture { opacity: 0.32; }
.sa-schedule-page-lp .hero__bg-photo   { opacity: 0.88; }

/* Content column floats above the backgrounds */
.sa-schedule-page-lp .hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* prevents children (btn) from stretching full width */
  gap: var(--space-8);
  width: 100%;
}

/* Heading + subtitle group */
.sa-schedule-page-lp .hero__text-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.sa-schedule-page-lp .hero__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 8vw, 64px);
  line-height: 1.125;       /* 72px / 64px from Figma */
  letter-spacing: -1.28px;
  color: var(--color-white);
}

.sa-schedule-page-lp .hero__subtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;           /* mobile: 14px per spec */
  line-height: 1.571;
  color: var(--color-white-80);
  max-width: 576px;
}

/* Social proof: label below avatars on mobile, inline on desktop */
.sa-schedule-page-lp .hero__social-proof {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}

/* Overlapping circular avatars */
.sa-schedule-page-lp .avatar-stack {
  display: flex;
  align-items: center;
}

.sa-schedule-page-lp .avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-navy);
  object-fit: cover;
  flex-shrink: 0;
}

.sa-schedule-page-lp .avatar + .avatar {
  margin-left: -12px;   /* overlap amount from Figma */
}

/* "VETTED BY …" label */
.sa-schedule-page-lp .trust-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-white);
}

/* Session info wrapper — top border acts as the Figma divider */
.sa-schedule-page-lp .hero__session-info {
  border-top: 1px solid var(--color-white-10);
  padding-top: 17px;
}

/* Session details list (time, format, timezone) */
.sa-schedule-page-lp .hero__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sa-schedule-page-lp .hero__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: 14px;           /* mobile: 14px per spec */
  line-height: 1.5;
  color: var(--color-white-70);
}

.sa-schedule-page-lp .hero__meta-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}


/* ============================================================
   SECTION 2: TRUST BAR
   White band with top/bottom borders, 3 stat columns
   ============================================================ */
.sa-schedule-page-lp .trust-bar {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 49px var(--space-6);
}

.sa-schedule-page-lp .trust-bar__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  max-width: 1280px;
  margin: 0 auto;
}

.sa-schedule-page-lp .trust-bar__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sa-schedule-page-lp .trust-bar__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.333;
  letter-spacing: -0.24px;
  color: var(--color-navy);
}

.sa-schedule-page-lp .trust-bar__body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-body);
}

/* Vertical divider — hidden on mobile, shown on desktop */
.sa-schedule-page-lp .trust-bar__divider {
  display: none;
}


/* ============================================================
   SECTION 3: THE PROCESS
   Slate background, centered heading, 3-up card grid
   ============================================================ */
.sa-schedule-page-lp .process {
  background-color: var(--color-slate-bg);
  padding: var(--space-12) var(--space-6);
}

.sa-schedule-page-lp .process__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  max-width: 1280px;
  margin: 0 auto;
}

/* Centered heading + subtitle */
.sa-schedule-page-lp .process__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
}

.sa-schedule-page-lp .process__heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.167;   /* 56px / 48px from Figma */
  color: var(--color-navy);
}

.sa-schedule-page-lp .process__subtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.556;
  color: var(--color-text-body);
  max-width: 672px;
}

/* Card grid: 1-col mobile → 3-col desktop */
.sa-schedule-page-lp .process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  width: 100%;
}

/* Step card */
.sa-schedule-page-lp .process-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Decorative corner icon (positioned, decorative only) */
.sa-schedule-page-lp .process-card__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  opacity: 0.35;
}

/* Numbered circle badge */
.sa-schedule-page-lp .process-card__badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background-color: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sa-schedule-page-lp .process-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.333;
  letter-spacing: -0.24px;
  color: var(--color-navy);
  padding-top: var(--space-2);
}

.sa-schedule-page-lp .process-card__body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-body);
}


/* ============================================================
   SECTION 4: TESTIMONIALS — "What Our Clients Say"
   Off-white bg, eyebrow, 2-column card grid, drop shadow cards
   ============================================================ */
.sa-schedule-page-lp .testimonials {
  background-color: var(--color-off-white);
  padding: var(--space-16) var(--space-6);
}

.sa-schedule-page-lp .testimonials__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  max-width: 1280px;
  margin: 0 auto;
}

/* Eyebrow + heading */
.sa-schedule-page-lp .testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.sa-schedule-page-lp .testimonials__eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-orange);
}

.sa-schedule-page-lp .testimonials__heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.167;
  color: var(--color-navy);
}

/* Video testimonial grid */
.sa-schedule-page-lp .tg-wrap { width: 100%; }

.sa-schedule-page-lp .tg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  width: 100%;
}

.sa-schedule-page-lp .tg-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sa-schedule-page-lp .tg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

/* 16:9 video thumbnail area */
.sa-schedule-page-lp .tg-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--color-navy-mid);
  cursor: pointer;
  flex-shrink: 0;
}

.sa-schedule-page-lp .tg-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.4s, opacity 0.4s; z-index: 1;
}
.sa-schedule-page-lp .tg-video:hover .tg-thumb { transform: scale(1.03); }

.sa-schedule-page-lp .tg-video video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; display: block;
}

.sa-schedule-page-lp .tg-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 2; pointer-events: none;
}

/* Top-left logo */
.sa-schedule-page-lp .tg-video-top-left { position: absolute; top: 14px; left: 14px; z-index: 3; }
.sa-schedule-page-lp .tg-logo {
  height: 32px !important; width: auto !important;
  max-width: 110px !important; max-height: 32px !important;
  object-fit: contain; display: block;
}

/* Bottom name + company */
.sa-schedule-page-lp .tg-video-bottom { position: absolute; bottom: 14px; left: 16px; right: 16px; z-index: 3; }
.sa-schedule-page-lp .tg-vid-name    { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--color-white); margin: 0 0 2px; line-height: 1.2; }
.sa-schedule-page-lp .tg-vid-company { font-family: var(--font-display); font-size: 12px; font-weight: 400; color: var(--color-white-80); margin: 0; }

/* Play button */
.sa-schedule-page-lp .tg-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; background: rgba(255,255,255,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 4; transition: transform 0.2s, opacity 0.3s;
}
.sa-schedule-page-lp .tg-video:hover .tg-play { transform: translate(-50%, -50%) scale(1.1); }
.sa-schedule-page-lp .tg-play svg { width: 20px; height: 20px; fill: var(--color-navy-mid); margin-left: 3px; }

/* Playback states */
.sa-schedule-page-lp .tg-video.is-playing .tg-thumb,
.sa-schedule-page-lp .tg-video.is-paused  .tg-thumb,
.sa-schedule-page-lp .tg-video.is-ended   .tg-thumb  { opacity: 0; pointer-events: none; }

.sa-schedule-page-lp .tg-video.is-playing video,
.sa-schedule-page-lp .tg-video.is-paused  video,
.sa-schedule-page-lp .tg-video.is-ended   video { z-index: 5; }

.sa-schedule-page-lp .tg-video.is-playing .tg-video-overlay,
.sa-schedule-page-lp .tg-video.is-playing .tg-video-top-left,
.sa-schedule-page-lp .tg-video.is-playing .tg-video-bottom,
.sa-schedule-page-lp .tg-video.is-paused  .tg-video-overlay,
.sa-schedule-page-lp .tg-video.is-paused  .tg-video-top-left,
.sa-schedule-page-lp .tg-video.is-paused  .tg-video-bottom,
.sa-schedule-page-lp .tg-video.is-ended   .tg-video-overlay,
.sa-schedule-page-lp .tg-video.is-ended   .tg-video-top-left,
.sa-schedule-page-lp .tg-video.is-ended   .tg-video-bottom { z-index: 6; opacity: 1; }

.sa-schedule-page-lp .tg-video.is-playing .tg-play,
.sa-schedule-page-lp .tg-video.is-playing:hover .tg-play { opacity: 0; pointer-events: none; }
.sa-schedule-page-lp .tg-video.is-paused  .tg-play,
.sa-schedule-page-lp .tg-video.is-ended   .tg-play { opacity: 1; pointer-events: auto; z-index: 7; }

/* Card text body */
.sa-schedule-page-lp .tg-info { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.sa-schedule-page-lp .tg-position { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--color-navy-mid); margin: 0 0 10px; line-height: 1.3; }
.sa-schedule-page-lp .tg-quote    { font-family: var(--font-display); font-size: 10px; font-style: italic; color: var(--color-navy); line-height: 1.65; margin: 0; }

/* Load more */
.sa-schedule-page-lp .tg-loadmore-wrap { width: 100%; display: flex; justify-content: center; }
.sa-schedule-page-lp .tg-loadmore-btn {
  background: transparent; color: var(--color-orange);
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 0; border-radius: 24px; padding: 13px 36px;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.sa-schedule-page-lp .tg-loadmore-btn:hover { background: var(--color-orange); color: var(--color-white); }


/* Mobile logo size for tg-grid */
@media (max-width: 600px) {
  .sa-schedule-page-lp .tg-logo { height: 20px !important; max-width: 70px !important; }
}

/* Mobile-only line break — hidden at tablet and above */
.sa-schedule-page-lp .mobile-break { display: block; }

/* ============================================================
   RESPONSIVE — 768px (tablet)
   ============================================================ */
@media (min-width: 768px) {
  .sa-schedule-page-lp .hero {
    padding: var(--space-20) var(--space-10);
  }

  .sa-schedule-page-lp .hero__heading {
    font-size: clamp(48px, 6vw, 64px);
  }

  .sa-schedule-page-lp .hero__subtitle {
    font-size: 18px;
    line-height: 1.556;
  }

  .sa-schedule-page-lp .hero__meta-item {
    font-size: 16px;
  }

  .sa-schedule-page-lp .hero__social-proof {
    flex-direction: row;
    align-items: center;
    gap: var(--space-4);
  }

  .sa-schedule-page-lp .trust-label {
    white-space: nowrap;
  }

  .sa-schedule-page-lp .mobile-break { display: none; }

  /* Trust bar: step up heading + body size at tablet */
  .sa-schedule-page-lp .trust-bar {
    padding: 49px var(--space-10);
  }

  .sa-schedule-page-lp .trust-bar__heading {
    font-size: 24px;
  }

  .sa-schedule-page-lp .trust-bar__body {
    font-size: 16px;
  }

  /* Process: step up body text at tablet */
  .sa-schedule-page-lp .process__subtitle  { font-size: 18px; }
  .sa-schedule-page-lp .process-card__body { font-size: 16px; }
}




/* ============================================================
   RESPONSIVE — 1024px (desktop)
   ============================================================ */
@media (min-width: 1024px) {
  .sa-schedule-page-lp .hero {
    min-height: 636px;          /* matches Figma section height */
  }

  .sa-schedule-page-lp .hero__content {
    max-width: 599px;           /* left column width from Figma */
  }

  .sa-schedule-page-lp .hero__bg-img {
    object-position: right center;
  }

  .sa-schedule-page-lp .hero__heading {
    font-size: 64px;
  }

  /* Testimonials */
  .sa-schedule-page-lp .testimonials {
    padding: var(--space-16) var(--space-10);
  }

  .sa-schedule-page-lp .tg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sa-schedule-page-lp .tg-logo { height: 32px !important; max-width: 110px !important; }

  /* Testimonials: 3-column grid */
  .sa-schedule-page-lp .tg-grid { grid-template-columns: repeat(3, 1fr); }

  /* Process: switch to 3-column grid */
  .sa-schedule-page-lp .process {
    padding: var(--space-12) var(--space-10);
  }

  .sa-schedule-page-lp .process__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Trust bar: switch to horizontal row with dividers */
  .sa-schedule-page-lp .trust-bar__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .sa-schedule-page-lp .trust-bar__item {
    flex: 1;
  }

  .sa-schedule-page-lp .trust-bar__divider {
    display: block;
    width: 1px;
    height: 48px;
    background-color: var(--color-border);
    flex-shrink: 0;
    margin: 0 var(--space-8);
  }
}
/* ============================================================
   HEADER, FOOTER & SHORTCODE INIT
   ============================================================ */
body.sa-schedule-page-active .header-lp-fde,
body.sa-schedule-page-active .sa-footer {
  --navy-950: #0b1520;
  --navy-800: #1a2b3d;
}

body.sa-schedule-page-active .header-lp-fde *,
body.sa-schedule-page-active .sa-footer * {
  box-sizing: border-box;
}

body.sa-schedule-page-active .header-lp-fde {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin: 0;
  background: var(--navy-950);
  text-align: center;
}

body.sa-schedule-page-active .header-lp-fde img {
  display: block;
  max-width: 235px;
  width: 100%;
  height: auto;
}

body.sa-schedule-page-active .sa-footer {
  width: 100%;
  background: var(--navy-800);
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
}

body.sa-schedule-page-active .sa-footer__inner {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1.4fr;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px 80px 86px;
  gap: 70px;
}

body.sa-schedule-page-active .sa-footer__logo {
  display: block;
  width: 235px;
  max-width: 100%;
  height: auto;
  margin-bottom: 55px;
}

body.sa-schedule-page-active .sa-footer__tagline {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.3px;
}

body.sa-schedule-page-active .sa-footer__col h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
}

body.sa-schedule-page-active .sa-footer__col a,
body.sa-schedule-page-active .sa-footer__col p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
  letter-spacing: 0.2px;
}

body.sa-schedule-page-active .sa-footer__col a {
  display: block;
  margin-bottom: 22px;
  transition: opacity 0.2s ease;
}

body.sa-schedule-page-active .sa-footer__col a:hover {
  opacity: 0.7;
}

body.sa-schedule-page-active .sa-footer__contact p {
  margin: 0 0 20px;
}

body.sa-schedule-page-active .sa-footer__contact strong {
  font-weight: 700;
}

body.sa-schedule-page-active .sa-footer__contact p a {
  display: inline-block;
  margin: 10px 0 0;
}

body.sa-schedule-page-active .sa-footer__socials {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 28px;
}

body.sa-schedule-page-active .sa-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #ffffff;
}

body.sa-schedule-page-active .sa-footer__socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

body.sa-schedule-page-active .sa-footer__socials a:nth-child(2) svg,
body.sa-schedule-page-active .sa-footer__socials a:nth-child(3) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.sa-schedule-page-active .sa-schedule-page-shortcode-init {
  display: none !important;
}

@media (max-width: 1024px) {
  body.sa-schedule-page-active .sa-footer__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 80px 40px;
    gap: 55px 70px;
  }
}

@media (max-width: 767px) {
  body.sa-schedule-page-active .sa-footer__inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 42px;
  }

  body.sa-schedule-page-active .sa-footer__logo {
    width: 210px;
    margin-bottom: 32px;
  }

  body.sa-schedule-page-active .sa-footer__tagline {
    font-size: 18px;
  }

  body.sa-schedule-page-active .sa-footer__col h3 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  body.sa-schedule-page-active .sa-footer__col a,
  body.sa-schedule-page-active .sa-footer__col p {
    font-size: 16px;
  }

  body.sa-schedule-page-active .sa-footer__socials {
    gap: 28px;
  }
}
