/* ============================================================
   Mobile compaction for the homepage.

   Carousels use 100% of the content area (no 100vw hacks — those
   caused right-edge clipping inside padded sections). Programs cards
   are a clean vertical layout: wide banner image + readable text.
   ============================================================ */

@media (max-width: 768px) {

  /* ---- Carousel shell: clips off-screen slides + holds arrows -------- */
  .mobile-carousel-shell {
    position: relative;
    width: calc(100% + (2 * var(--mobile-carousel-inset, 16px)));
    max-width: calc(100% + (2 * var(--mobile-carousel-inset, 16px)));
    margin-inline: calc(-1 * var(--mobile-carousel-inset, 16px));
    overflow: hidden;
  }

  /* ---- Shared swipe carousel (track inside shell) -------------------- */
  .about-principles,
  .courses-grid,
  .schedule-cards,
  .testimonial-grid,
  .trust-strip-grid,
  .instructors-grid--lead {
    --mobile-carousel-gap: 14px;
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    gap: var(--mobile-carousel-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 0 8px;
    box-sizing: border-box;
    scrollbar-width: none;
  }
  .about-principles::-webkit-scrollbar,
  .courses-grid::-webkit-scrollbar,
  .schedule-cards::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar,
  .trust-strip-grid::-webkit-scrollbar,
  .instructors-grid--lead::-webkit-scrollbar {
    display: none;
  }

  /* One slide = full shell width; shell overflow hides neighbors. */
  .about-principles > .about-principle,
  .courses-grid > .course-card,
  .schedule-cards > .schedule-card,
  .testimonial-grid > .testimonial-card,
  .trust-strip-grid > .trust-card,
  .instructors-grid--lead > .instructor-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* Prev/next arrows — light pill, orange chevron (visible but not loud). */
  .mobile-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--orange, #ea580c);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.14);
    cursor: pointer;
    opacity: 0.82;
    transform: translateY(-50%);
    transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  }
  /* Course cards: center arrows on the 16:9 banner (~top quarter of the slide). */
  .mobile-carousel-shell:has(.courses-grid) .mobile-carousel-arrow {
    top: calc(100vw * 9 / 32);
    transform: translateY(-50%);
  }
  .mobile-carousel-shell:has(.instructors-grid--lead) .mobile-carousel-arrow {
    top: 14%;
  }
  .mobile-carousel-shell:has(.schedule-cards) .mobile-carousel-arrow,
  .mobile-carousel-shell:has(.about-principles) .mobile-carousel-arrow {
    top: 18%;
  }
  .mobile-carousel-shell:has(.testimonial-grid) .mobile-carousel-arrow {
    top: 14%;
  }
  .mobile-carousel-shell:has(.trust-strip-grid) .mobile-carousel-arrow {
    top: calc(100vw * 10 / 32);
  }
  .mobile-carousel-shell--dark .mobile-carousel-arrow {
    background: rgba(255, 255, 255, 0.78);
    color: var(--orange, #ea580c);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  }
  .mobile-carousel-arrow--prev { left: 8px; }
  .mobile-carousel-arrow--next { right: 8px; }
  .mobile-carousel-arrow:active:not(.is-disabled) {
    transform: translateY(-50%) scale(0.94);
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
  }
  .mobile-carousel-arrow.is-disabled {
    opacity: 0;
    pointer-events: none;
  }
  .mobile-carousel-arrow:focus-visible {
    outline: 2px solid var(--orange, #ea580c);
    outline-offset: 2px;
    opacity: 0.95;
  }
  .mobile-carousel-shell:focus-within .mobile-carousel-arrow:not(.is-disabled),
  .mobile-carousel-shell:hover .mobile-carousel-arrow:not(.is-disabled) {
    opacity: 0.92;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.18);
  }

  /* How far each carousel breaks out of its parent padding (set per section). */
  #courses .container {
    --mobile-carousel-inset: 16px;
  }
  #schedule .container,
  #instructors .container,
  #instagram .container {
    --mobile-carousel-inset: 16px;
  }
  .early-quotes {
    --mobile-carousel-inset: 0;
  }
  #trust-strip .container {
    --mobile-carousel-inset: 0;
  }

  #about.about-teaser--light,
  #courses,
  #schedule,
  #instructors,
  .early-quotes,
  #trust-strip {
    overflow-x: clip;
    overflow-y: visible;
  }

  .course-card:hover,
  .testimonial-card:hover,
  .trust-card:hover,
  .instructor-card:hover {
    transform: none;
  }

  /* ---- Programs cards -------------------------------------------- */
  #courses .courses-grid {
    margin-top: 6px;
  }
  .courses-grid > .course-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 16px;
    overflow: hidden;
  }
  .courses-grid > .course-card .course-card-media {
    display: block;
    width: 100%;
    margin: 0 0 14px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    flex-shrink: 0;
  }
  .courses-grid > .course-card .course-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .courses-grid > .course-card .course-card-top,
  .courses-grid > .course-card .course-who-for,
  .courses-grid > .course-card .course-meta,
  .courses-grid > .course-card .course-card__schedule-row,
  .courses-grid > .course-card .course-card-actions {
    padding-left: 40px;
    padding-right: 40px;
    min-width: 0;
    text-align: center;
  }
  .courses-grid > .course-card .course-card-top {
    align-items: center;
  }
  .courses-grid > .course-card .course-meta {
    justify-content: center;
  }
  .courses-grid > .course-card .course-card__schedule {
    justify-content: center;
  }
  .courses-grid > .course-card .course-tag {
    margin-left: auto;
    margin-right: auto;
  }
  .courses-grid > .course-card h3 {
    font-size: 1.08rem;
    line-height: 1.28;
    margin-bottom: 6px;
    overflow-wrap: break-word;
  }
  .courses-grid > .course-card .course-who-for {
    font-size: 0.88rem;
    line-height: 1.45;
    margin-bottom: 8px;
    flex-grow: 0;
  }
  .courses-grid > .course-card .course-meta {
    font-size: 0.86rem;
    margin-bottom: 8px;
  }
  /* Meta row: class length only on mobile (hide schedule type + price). */
  .courses-grid > .course-card .course-meta .course-length ~ span,
  .courses-grid > .course-card .course-meta .course-price {
    display: none;
  }
  .courses-grid > .course-card .course-card__schedule {
    margin-bottom: 12px;
  }
  .courses-grid > .course-card .course-card-actions {
    padding-top: 0;
    margin-top: auto;
  }

  /* ---- Carousel pagination dots (paired with home-mobile-carousel-dots.js) */
  .mobile-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin: 10px 0 4px;
    padding: 0;
  }
  .mobile-carousel-dot {
    appearance: none;
    border: none;
    padding: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(30, 58, 95, 0.28);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  }
  .mobile-carousel-dot.is-active {
    background: var(--orange, #ea580c);
    transform: scale(1.35);
  }
  .mobile-carousel-dot:focus-visible {
    outline: 2px solid var(--orange, #ea580c);
    outline-offset: 2px;
  }
  /* Light dots on dark photo sections */
  .mobile-carousel-dots--light .mobile-carousel-dot {
    background: rgba(255, 255, 255, 0.38);
  }
  .mobile-carousel-dots--light .mobile-carousel-dot.is-active {
    background: #ffffff;
  }

  /* ---- Employer marquee (mobile) ----------------------------------- */
  #employers.employer-showcase--float .employer-showcase__head .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.65rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
  }
  #employers.employer-showcase--float .employer-showcase__head .section-title .employers-headline-line {
    display: block;
  }
  #employers.employer-showcase--float .employer-showcase__head .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.42;
    margin-bottom: 8px;
  }
  #employers.employer-showcase--float .employer-showcase__accent {
    margin-top: 8px;
  }

  /* ---- Hide associate instructors on mobile homepage ---------------- */
  #instructors .instructors-tier-divider,
  #instructors .instructors-grid--associates {
    display: none !important;
  }

  /* ---- Tighter vertical rhythm (main sections only — not hero) -------- */
  #main-sections > section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  section.hero {
    align-items: center !important;
    justify-content: center !important;
    min-height: 100dvh !important;
    min-height: 100svh !important;
    box-sizing: border-box !important;
    padding-top: var(--site-nav-stack, 80px) !important;
    padding-bottom: max(20px, env(safe-area-inset-bottom, 0px)) !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  section.hero .hero-est {
    margin-top: 0;
    margin-bottom: 10px;
  }

  /* Hero: light outline on key lines — readability without a box/scrim */
  section.hero .hero-headline-main,
  section.hero .hero-headline-sub {
    -webkit-text-stroke: 0.4px rgba(15, 23, 42, 0.55);
    paint-order: stroke fill;
    text-shadow:
      0 1px 4px rgba(0, 0, 0, 0.5),
      1px 0 0 rgba(15, 23, 42, 0.3),
      -1px 0 0 rgba(15, 23, 42, 0.3),
      0 1px 0 rgba(15, 23, 42, 0.3),
      0 -1px 0 rgba(15, 23, 42, 0.3);
  }
  section.hero .hero-headline-sub {
    -webkit-text-stroke: 0.45px rgba(15, 23, 42, 0.7);
  }
  #main-sections > section .section-label {
    margin-bottom: 8px;
  }
  #main-sections > section .section-title {
    margin-bottom: 10px;
    font-size: 1.75rem;
  }
  #main-sections > section .section-subtitle {
    margin-bottom: 14px !important;
    font-size: 1rem;
    line-height: 1.45;
  }
  #about.about-teaser--light .about-teaser__inner {
    padding: 28px 16px 32px;
    --mobile-carousel-inset: 16px;
  }
  #about.about-teaser--light .about-teaser-head {
    margin-bottom: 14px;
  }
  #about.about-teaser--light .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.65rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    text-align: center;
  }
  #about.about-teaser--light .section-title .about-headline-line {
    display: block;
  }
  /* Lighter mobile stack: drop redundant headline layers + card eyebrows */
  #about.about-teaser--light .section-subtitle,
  #about.about-teaser--light .about-teaser__tagline,
  #about .about-principle__eyebrow {
    display: none;
  }
  .about-teaser-cta-row {
    margin-top: 10px;
    gap: 10px;
  }
  .about-principle {
    padding: 14px 40px 18px;
    text-align: center;
    align-items: center;
    border-top: 4px solid var(--orange, #ea580c);
  }
  .mobile-carousel-shell:has(.about-principles) .mobile-carousel-arrow {
    top: 50%;
  }
  #courses {
    padding-top: 32px !important;
    padding-bottom: 36px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  #courses .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.65rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    text-align: center;
  }
  #courses .section-title .programs-headline-line {
    display: block;
  }
  /* Lighter mobile stack: hide section subtitle only */
  #courses .section-subtitle {
    display: none;
  }
  #courses .section-subtitle:last-of-type {
    margin-bottom: 12px !important;
  }
  #courses .courses-grid {
    margin-top: 6px;
  }
  .courses-section-footer {
    margin-top: 8px;
  }
  #schedule {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  #schedule .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.65rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    text-align: center;
  }
  #schedule .section-title .schedule-headline-line {
    display: block;
  }
  #schedule .section-subtitle {
    display: none;
  }
  .schedule-cards {
    margin: 8px 0;
    padding-bottom: 8px;
  }
  .schedule-cards-footer {
    margin-top: 8px;
  }
  .schedule-card {
    padding: 14px 40px 16px;
    text-align: center;
    align-items: center;
    border-top: 4px solid var(--orange, #ea580c);
  }
  .schedule-cards > .schedule-card .schedule-card__tag {
    margin-left: auto;
    margin-right: auto;
  }
  .schedule-cards > .schedule-card .schedule-card__date {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-top: 2px;
  }
  .schedule-cards > .schedule-card .schedule-card__date-label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange, #ea580c);
  }
  .schedule-cards > .schedule-card .schedule-card__title {
    font-size: 0.98rem;
    line-height: 1.35;
    margin-top: 4px;
  }
  /* Tag covers format — hide redundant meta row on mobile. */
  .schedule-cards > .schedule-card .schedule-card__meta {
    display: none;
  }
  .schedule-cards > .schedule-card .schedule-card__cta,
  .schedule-cards > .schedule-card .schedule-card__status {
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    box-sizing: border-box;
  }
  .schedule-cards > .schedule-card .schedule-card__cta {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  #instructors {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  #instructors .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.65rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    text-align: center;
  }
  #instructors .section-title .instructors-headline-line {
    display: block;
  }
  #instructors .section-subtitle {
    display: none;
  }
  .instructors-grid--lead > .instructor-card.instructor-card--lead {
    padding: 18px 40px 20px;
  }
  .instructors-grid--lead > .instructor-card .instructor-card__badge,
  .instructors-grid--lead > .instructor-card .instructor-card__bio-link {
    display: none;
  }
  .instructor-card--lead .instructor-avatar {
    width: 96px;
    height: 96px;
    margin-left: auto;
    margin-right: auto;
  }
  .instructor-card--lead .instructor-avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .instructor-card--lead h3 {
    font-size: 1.12rem;
    margin-bottom: 4px;
  }
  .instructor-card--lead .role {
    font-size: 0.82rem;
    margin-bottom: 8px;
    line-height: 1.35;
  }
  .instructor-card--lead p {
    font-size: 0.86rem;
    line-height: 1.45;
    margin-bottom: 0;
  }
  .instructors-section-footer {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    text-align: center;
  }
  .instructors-section-footer-link {
    display: inline-block;
    color: #ffb380;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: color 0.15s ease, border-color 0.15s ease;
  }
  .instructors-section-footer-link:hover,
  .instructors-section-footer-link:focus-visible {
    color: #ffd4b8;
    border-bottom-color: rgba(255, 211, 184, 0.55);
  }
  #employers.employer-showcase--float .employer-showcase__inner {
    padding: 28px 18px 24px !important;
  }
  #employers.employer-showcase--float .employer-showcase__head {
    margin-bottom: 14px;
  }
  .early-quotes {
    padding: 32px 16px !important;
    background-color: #0a1628;
    background-image:
      linear-gradient(180deg, rgba(10, 22, 44, 0.80) 0%, rgba(10, 22, 44, 0.66) 45%, rgba(10, 22, 44, 0.84) 100%),
      url('gallery/section-bg/reviews-bg-relay-parts.png');
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
  }
  .early-quotes .mobile-carousel-shell {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }
  .early-quotes .testimonial-grid {
    padding: 0;
    scroll-padding-inline: 0;
  }
  .early-quotes .mobile-carousel-shell:has(.testimonial-grid) .mobile-carousel-arrow {
    display: none;
  }
  .early-quotes .mobile-carousel-dots {
    margin-top: 12px;
  }
  .early-quotes__head {
    margin-bottom: 14px;
  }
  .early-quotes__head .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.65rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
  }
  .early-quotes__head .section-title .reviews-headline-line {
    display: block;
  }
  .early-quotes__subtitle--full {
    display: none !important;
  }
  .early-quotes__subtitle--mobile {
    display: block !important;
    max-width: none;
    margin-bottom: 0 !important;
    font-size: 0.95rem;
    line-height: 1.42;
  }
  .early-quotes .testimonial-google-badge {
    display: none;
  }
  .early-quotes .testimonial-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-areas:
      "stars tag"
      "quote quote"
      "name link";
    gap: 10px 12px;
    padding: 18px 18px 16px;
    align-content: start;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  }
  .early-quotes .testimonial-card__meta,
  .early-quotes .testimonial-card__foot {
    display: contents;
  }
  .early-quotes .testimonial-card__stars {
    grid-area: stars;
    font-size: 0.95rem;
  }
  .early-quotes .testimonial-card__tag {
    grid-area: tag;
    align-self: center;
    justify-self: end;
    margin: 0;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.1);
    border: 1px solid rgba(234, 88, 12, 0.18);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .early-quotes .testimonial-card__quote {
    grid-area: quote;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2px;
  }
  .early-quotes .testimonial-card__quote p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #475569;
  }
  .early-quotes .testimonial-card__name {
    grid-area: name;
    align-self: end;
    font-size: 0.92rem;
    padding-right: 8px;
  }
  .early-quotes .testimonial-card__source {
    grid-area: link;
    justify-self: end;
    align-self: end;
    margin-top: 0;
    font-size: 0.74rem;
    white-space: nowrap;
    color: #64748b;
  }
  .early-quotes .testimonial-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px !important;
    max-width: none;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .early-quotes .testimonial-footer__lead {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.35;
  }
  .early-quotes .testimonial-footer__lead::after {
    content: none;
  }
  .early-quotes .testimonial-footer__cta {
    padding: 0;
    background: transparent;
    border: none;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: none;
    color: #ffffff;
  }
  .early-quotes .testimonial-footer__cta:hover,
  .early-quotes .testimonial-footer__cta:focus-visible {
    background: transparent;
    transform: none;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .early-quotes .mobile-carousel-persona {
    display: none;
  }

  /* ---- Recognition & reach (trust strip) --------------------------- */
  #trust-strip {
    padding: 32px 16px !important;
  }
  #trust-strip .section-label,
  #trust-strip .section-title,
  #trust-strip .trust-strip__subtitle {
    text-align: center;
  }
  #trust-strip .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.65rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    margin-bottom: 0;
  }
  #trust-strip .section-title .trust-headline-line {
    display: block;
  }
  #trust-strip .trust-strip__subtitle--full {
    display: none !important;
  }
  #trust-strip .trust-strip__subtitle--mobile {
    display: none !important;
  }
  #trust-strip .mobile-carousel-shell {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }
  #trust-strip .mobile-carousel-shell:has(.trust-strip-grid) .mobile-carousel-arrow {
    top: calc(10px + min(calc((100vw - 32px) / 2), 108px));
    transform: translateY(-50%);
  }
  #trust-strip .mobile-carousel-arrow--prev {
    left: 4px;
  }
  #trust-strip .mobile-carousel-arrow--next {
    right: 4px;
  }
  #trust-strip .trust-strip-grid {
    margin-top: 10px;
    padding: 0;
    scroll-padding-inline: 0;
  }
  #trust-strip .mobile-carousel-dots {
    margin-top: 10px;
  }
  #trust-strip .trust-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.07);
    overflow: hidden;
  }
  #trust-strip.trust-strip--compact .trust-card__media,
  #trust-strip.trust-strip--compact .trust-card__media--square,
  #trust-strip.trust-strip--compact .trust-card__media--landscape {
    width: min(100%, 216px);
    max-width: 216px;
    margin: 10px auto 0;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
  }
  #trust-strip.trust-strip--compact .trust-card__media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
  }
  #trust-strip.trust-strip--compact .trust-card__body {
    padding: 12px 14px 14px;
    text-align: left;
    gap: 4px;
  }
  #trust-strip .trust-card__eyebrow {
    margin-bottom: 4px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
  #trust-strip .trust-card__title {
    font-size: 0.98rem;
    line-height: 1.24;
    margin-bottom: 4px;
  }
  #trust-strip .trust-card__body p {
    font-size: 0.84rem;
    line-height: 1.45;
  }
  #trust-strip .trust-card__cta {
    margin-top: 8px;
    max-width: 100%;
    padding: 4px 9px;
    font-size: 0.76rem;
    line-height: 1.25;
  }
  #trust-strip .trust-card__cta--bryan {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
    gap: 4px;
    padding: 7px 9px;
    font-size: 0.72rem;
  }
  #trust-strip .trust-card__cta-logo {
    width: min(128px, 68%);
  }
  #trust-strip .trust-card__cta-sub {
    font-size: 0.64rem;
  }
  #instagram {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  #instagram .insta-section-actions {
    margin-top: 14px;
    gap: 10px;
  }
  .home-location {
    padding: 24px 16px 20px !important;
  }
  .home-location__inner {
    gap: 10px;
  }
  .home-location__map {
    height: min(48vw, 240px) !important;
    min-height: 180px !important;
  }
  .mobile-carousel-dots {
    margin: 6px 0 0;
  }
  .about-principles,
  .courses-grid,
  .schedule-cards,
  .testimonial-grid,
  .trust-strip-grid,
  .instructors-grid--lead {
    padding-bottom: 8px;
  }
}
