/* Global Styles
   - Organized: design tokens, base, layout, components, sections, breakpoints
*/

:root {
  /* Typography */
  --ff-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Base / Brand colors */
  --c-white: #ffffff;
  --c-black: #000000;
  --c-navy:  #0C152E;
  --c-aqua:  #00D1E8;
  --c-orange: #F4792D;

  /* CTA colors */
  --c-cta-pink: #AC1A6F;
  --c-cta-red: #EE382D;
  --c-cta-salmon: #DA5846;
  --c-cta-orange: #F4792D;
  --c-cta-teal: #00C8C2;

  /* CTA gradient */
  --g-cta: linear-gradient(90deg, #ECB128 -7.63%, #F6911E 118.64%);

  /* Text */
  --c-text: var(--c-navy);
  --c-muted: rgba(12, 21, 46, 0.72);

  /* Layout */
  --container: 1150px;
  --gutter: 20px;

  /* Radius / Shadow */
  --r-pill: 999px;
  --r-md: 16px;
  --shadow-sm: 0 6px 18px rgba(12, 21, 46, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 180ms;
}

/* Base / Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 107px;
}

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 209, 232, 0.55);
  outline-offset: 3px;
}

/* Layout helpers */
.l-container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.l-container-large {
  width: min(1170px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.l-container-libertas {
  width: min(1210px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.l-container-network {
  width: min(1235px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.l-container-speak {
  width: min(1265px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.l-container-speaking-bio {
  width: min(1184px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

/* Typography (global) */
.t-h1 {
  font-weight: 700;
  font-size: clamp(2rem, 1.2rem + 2vw, 2.8125rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

.t-h2 {
  font-weight: 700;
  font-size: clamp(2rem, 1.2rem + 2vw, 2.8125rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.t-h3 {
  font-weight: 700;
  font-size: clamp(2.125rem, 1.25rem + 2.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.t-h4 {
  font-weight: 700;
  font-size: clamp(1.75rem, 1.1rem + 1.6vw, 2.375rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}

.t-p1 {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0;
}

.t-p2 {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

.t-p3 {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.t-muted {
  color: var(--c-muted);
}

.t-center {
  text-align: center;
}

/* Buttons */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    filter var(--dur) var(--ease);
}

.c-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.c-btn:active {
  transform: translateY(0);
}

.c-btn--pink {
  background: var(--c-cta-pink);
  color: var(--c-white);
}

.c-btn--red {
  background: var(--c-cta-red);
  color: var(--c-white);
}

.c-btn--salmon {
  background: var(--c-cta-salmon);
  color: var(--c-white);
}

.c-btn--orange {
  background: var(--c-cta-orange);
  color: var(--c-white);
}

.c-btn--teal {
  background: var(--c-cta-teal);
  color: var(--c-white);
}

.c-btn--gradient {
  background: var(--g-cta);
  color: var(--c-white);
}

/* Utilities */
.u-hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .c-btn {
    transition: none;
  }

  .gallery__desktop img,
  .gallery__mobile-page img {
    transition: none !important;
  }
}

/* =========================
   Header / Nav
========================= */
.c-header {
  height: 107px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--c-white);
  box-shadow: 0 6px 18px rgba(12, 21, 46, 0.08);
}

#main-content {
  padding-top: 107px;
}



.c-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.c-header__logo {
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
}

.c-header__logo img {
  display: block;
  height: auto;
  max-height: 115px;
  width: auto;
}

.c-nav {
  display: block;
}

.c-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.c-nav__item {
  position: relative;
}

.c-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 16px;
  background: none;
  border: 0;
  padding: 10px 0;
}

.c-nav__link:hover,
.c-nav__link:focus-visible,
.c-nav__link:active {
  color: var(--c-aqua);
}

.c-nav__caret {
  display: inline-flex;
  color: currentColor;
}

.c-nav__caret svg {
  width: 12px;
  height: 6px;
}

/* Dropdown */
.c-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 258px;
  border-radius: 8px;
  background: var(--c-white);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.25);
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    visibility 0s linear var(--dur);
  z-index: 50;
}

.c-dropdown__item {
  display: block;
  padding: 0;
  color: #000;
  font-family: var(--ff-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}

/* Hover/focus open state */
.c-nav__item--has-dropdown:hover > .c-dropdown,
.c-nav__item--has-dropdown:focus-within > .c-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

/* Click/tap open state */
.c-nav__item--has-dropdown.is-open > .c-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.c-dropdown__item:hover,
.c-dropdown__item:focus-visible,
.c-dropdown__item:active {
  color: var(--c-aqua);
  background: transparent;
}

/* =========================
   Hero / Intro section
========================= */
.hero {
  position: relative;
  overflow: hidden;
  height: 686px;
  background-image: url('../assets/images/cb-banner-desktop.webp');
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
}

.hero__overlay {
  display: none;
}

.hero .l-container {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__figure {
  position: absolute;
  top: 63%;
  right: -155px;
  transform: translateY(-50%);
  width: 625px;
  max-width: 625px;
  z-index: 1;
}

.hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__content {
  max-width: 800px;
  color: #fff;
  z-index: 2;
  position: relative;
}

.hero .t-h1 {
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.9px;
  margin: 0 0 26px 0;
}

.hero .t-h1 .t-accent {
  color: #00D1E8;
}

.hero .t-h1__wrap {
  display: block;
  min-height: 2.4em;
}

/* Typed.js cursor color to match accent */
.typed-cursor {
  color: #00D1E8;
}

.hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 26px;
  width: 725px;
}

.hero__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 25px 0;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.hero__item .icon {
  width: 18px;
  height: 18px;
  display: block;
  margin-top: 4px;
  flex: 0 0 18px;
}

.hero__item a {
  color: #00D1E8;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
}

.hero__item:last-child {
  margin-bottom: 0;
}

/* =========================
   Stats section
========================= */
.stats {
  padding-top: 40px;
  padding-bottom: 50px;
  background-color: #D8E5F0;
}

.l-container-stats {
  width: min(1400px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.stats__item {
  position: relative;
  overflow: hidden;
}

.stats__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 23, 50, 0) 68.7%, rgba(14, 23, 50, 0.5) 102.07%, #0e1732 138.39%),
    linear-gradient(180deg, rgba(14, 23, 50, 0) 68.7%, rgba(14, 23, 50, 0.5) 102.07%, #0e1732 138.39%),
    linear-gradient(180deg, rgba(14, 23, 50, 0) 50%, rgba(14, 23, 50, 0.5) 72.34%, #0e1732 96.65%),
    linear-gradient(180deg, rgba(14, 23, 50, 0) 50%, rgba(14, 23, 50, 0.5) 72.34%, #0e1732 96.65%),
    linear-gradient(180deg, rgba(14, 23, 50, 0) 50%, rgba(14, 23, 50, 0.5) 72.34%, #0e1732 96.65%);
  pointer-events: none;
  z-index: 1;
}

.stats__img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.stats__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.stats__number {
  color: #fff;
  font-family: Poppins;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.64px;
}

.stats__count {
  font-weight: 700;
}

.stats__suffix {
  font-weight: 700;
}

.stats__suffix--plus {
  font-weight: 300;
}

.stats__label {
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
}

/* =========================
   Gallery section
========================= */
.gallery {
  background: white;
  padding: 35px 0 44px;
}

.gallery__inner {
  width: min(1840px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.gallery__desktop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery__item,
.gallery__mobile-item {
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 320ms var(--ease);
  will-change: transform;
}

.gallery__mobile {
  display: none;
}

.gallery__mobile-viewport {
  overflow: hidden;
}

.gallery__mobile-track {
  display: flex;
  transition: transform 260ms var(--ease);
  will-change: transform;
}

.gallery__mobile-page {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery__mobile-page img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 320ms var(--ease);
  will-change: transform;
}

.gallery__item img:hover,
.gallery__mobile-item img:hover {
  transform: scale(1.06);
}

.gallery__arrow {
  border: 0;
  background: transparent;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.gallery__arrow img {
  width: 59px;
  height: 59px;
}

.gallery__arrow--prev {
  left: calc((100vw - 100%) / -1.2);
}

.gallery__arrow--next {
  right: calc((100vw - 100%) / -1.2);
}

/* =========================
   Families section
========================= */
.families {
  background: white;
  padding-top: 100px;
  padding-bottom: 125px;
}

.families__grid {
  display: grid;
  grid-template-columns: minmax(320px, 500px) minmax(0, 1fr);
  grid-template-areas:
    "media title"
    "media copy";
  column-gap: 112px;
  row-gap: 35px;
  align-items: start;
}

.families__title {
  grid-area: title;
  margin: 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.96px;
}

.families__title span {
  color: #3e80ba;
}

.families__media {
  grid-area: media;
}

.families__media img {
  width: 100%;
  height: auto;
}

.families__copy {
  grid-area: copy;
}

.families__copy p {
  margin: 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.families__copy p + p {
  margin-top: 30px;
}

/* =========================
   Kids Market section
========================= */
.kids-market {
  padding-top: 117px;
  padding-bottom: 130px;
  background-color: white;
  background-image: url("../assets/images/cb-kids-market-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.kids-market__content {
  max-width: 560px;
}

.kids-market__logo {
  width: 331px;
  height: auto;
  margin-bottom: 10px;
}

.kids-market__title {
  margin: 0;
  color: #3c3c3d;
  font-family: Poppins, var(--ff-sans);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.96px;
}

.kids-market__title span {
  color: #b8177e;
}

.kids-market__mobile-image {
  display: none;
}

.kids-market__copy {
  margin-top: 32px;
  max-width: 540px;
}

.kids-market__copy p {
  margin: 0;
  color: #3c3c3d;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.kids-market__copy p + p {
  margin-top: 30px;
}

.kids-market__btn {
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #ac1a6f;
  color: #fff;
  padding: 25px 40px;
  font-family: Poppins, var(--ff-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 220ms var(--ease),
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.kids-market__btn:hover {
  background: #7f1352;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(127, 19, 82, 0.28);
}

.kids-market__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(127, 19, 82, 0.22);
}

/* =========================
   Tuttle Twins section
========================= */
.tuttle-twins {
  padding-top: 124px;
  padding-bottom: 113px;
  background-color: white;
  background-image: url("../assets/images/cb-tuttle-twins-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.tuttle-twins__content {
  max-width: 545px;
  margin-left: auto;
}

.tuttle-twins__logo {
  width: 376px;
  height: auto;
  margin-bottom: 23px;
}

.tuttle-twins__title {
  margin: 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.88px;
}

.tuttle-twins__title span {
  color: #04aed8;
}

.tuttle-twins__mobile-image {
  display: none;
}

.tuttle-twins__copy {
  margin-top: 24px;
  max-width: 510px;
}

.tuttle-twins__copy p {
  margin: 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.tuttle-twins__btn {
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #da5846;
  color: #fff;
  padding: 25px 40px;
  font-family: Poppins, var(--ff-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 220ms var(--ease),
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.tuttle-twins__btn:hover {
  background: #a94436;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(169, 68, 54, 0.28);
}

.tuttle-twins__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(169, 68, 54, 0.22);
}

/* =========================
   Tuttle Twins TV section
========================= */
.tuttle-tv {
  padding-top: 117px;
  padding-bottom: 95px;
  background:
    radial-gradient(77.87% 76.94% at 9.87% -64.38%, #008985 0%, rgba(0, 137, 133, 0) 100%),
    radial-gradient(97.34% 82.78% at 57.98% 113.22%, #008985 0%, rgba(0, 137, 133, 0) 100%),
    #00c8c2;
}

.tuttle-tv__heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  margin-bottom: 255px;
}

.tuttle-tv__logo {
  width: 126px;
  height: auto;
  flex: 0 0 auto;
}

.tuttle-tv__title {
  margin: 0;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.88px;
  max-width: 700px;
  text-align: center;
}

.tuttle-tv__title span {
  color: #000;
}

.tuttle-tv__panel {
  margin: 0 auto;
  width: min(1150px, 100%);
  height: 550px;
  background: var(--c-white);
  padding: 250px 32px 45px;
  position: relative;
}

.tuttle-tv__panel::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 20px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.tuttle-tv__image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -265px;
  z-index: 2;
}

.tuttle-tv__image--desktop {
  width: min(795px, calc(100% - 80px));
  height: auto;
  display: block;
}

.tuttle-tv__image--mobile {
  display: none;
}

.tuttle-tv__content {
  max-width: 833px;
  margin: 0 auto;
  text-align: center;
}

.tuttle-tv__lead {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.tuttle-tv__body {
  margin: 14px 0 0;
  color: #000;
  text-align: center;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.tuttle-tv__btn {
  margin-top: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 25px 40px;
  border-radius: 100px;
  background: #00c8c2;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  transition:
    background-color 220ms var(--ease),
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.tuttle-tv__btn:hover {
  background: #009994;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 137, 133, 0.28);
}

.tuttle-tv__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(0, 137, 133, 0.22);
}

/* =========================
   Praxis section
========================= */
.praxis {
  background-color: #fff;
  background-image:
    linear-gradient(268deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.9) 49%, rgba(255, 255, 255, 0.98) 56%, #fff 94%),
    linear-gradient(269deg, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.88) 52%, rgba(255, 255, 255, 0.98) 60%, #fff 96%),
    radial-gradient(66% 40% at 0% 61.07%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 70%, rgba(255, 255, 255, 0.82) 84%, rgba(255, 255, 255, 0) 100%),
    url("../assets/images/cb-praxis-bg.webp");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: 0 0, 0 0, 0 0, right 0 top -30px;
  background-size: 100% 100%, 100% 100%, 100% 100%, auto 110.245%;
  padding-top: 107px;
  padding-bottom: 95px;

}

.praxis__content {
  max-width: 612px;
}

.praxis__logo {
  width: 269px;
  height: auto;
  margin-bottom: 15px;
}

.praxis__title {
  margin: 0 0 24px;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.88px;
}

.praxis__title span {
  color: #a72831;
}

.praxis__mobile-image {
  display: none;
}

.praxis__copy {
  margin-bottom: 40px;
  max-width: 575px;
}

.praxis__copy p {
  margin: 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.praxis__copy p + p {
  margin-top: 30px;
}

.praxis__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #ee382d;
  padding: 25px 40px;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  transition:
    background-color 220ms var(--ease),
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.praxis__btn:hover {
  background: #bc2c24;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(188, 44, 36, 0.28);
}

.praxis__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(188, 44, 36, 0.22);
}

/* =========================
   Libertas section
========================= */
.libertas {
  padding-top: 130px;
  padding-bottom: 124px;
  background-color: #0e2f57;
  background-image: url("../assets/images/cb-libertas-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.libertas__grid {
  display: grid;
  grid-template-columns: 510px minmax(0, 1fr);
  gap: 84px;
  align-items: center;
}

.libertas__media img {
  width: 100%;
  height: auto;
}

.libertas__content {
  max-width: 620px;
}

.libertas__mobile-media {
  display: none;
}

.libertas__logo {
  width: 280px;
  height: auto;
  margin-bottom: 16px;
}

.libertas__title {
  margin: 0 0 22px;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.88px;
}

.libertas__title span {
  color: #f6911e;
}

.libertas__copy {
  margin-bottom: 45px;
}

.libertas__copy p {
  margin: 0;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.libertas__copy p + p {
  margin-top: 30px;
}

.libertas__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 25px 40px;
  border-radius: 100px;
  background: linear-gradient(90deg, #ecb128 -7.63%, #f6911e 118.64%), #00c8c2;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    filter 220ms var(--ease);
}

.libertas__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(171, 104, 11, 0.3);
  filter: brightness(0.9);
}

.libertas__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(171, 104, 11, 0.24);
}

/* =========================
   Libertas Network section
========================= */
.libertas-network {
  padding-top: 0;
  padding-bottom: 130px;
  background:
    radial-gradient(97.34% 82.78% at 57.98% 140.22%, #3e80ba 0%, rgba(0, 20, 39, 0) 100%),
    #0e1732;
}

.libertas-network__hero {
  width: 100%;
  margin-bottom: -325px;
}

.libertas-network__hero img {
  width: 100%;
  height: 913px;
  object-fit: cover;
}

.libertas-network__top {
  max-width: 1100px;
  padding-left: 40px;
}

.libertas-network__logo {
  width: 317px;
  height: auto;
  margin-left: -20px;
}

.libertas-network__top p {
  margin: 5px 0 0;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.libertas-network__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 10px;
}

.libertas-network__card {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: var(--c-white);
  padding: 40px;
  text-align: center;
  display: grid;
  grid-template-rows: 109px auto auto;
  align-items: start;
}

.libertas-network__card img {
  align-self: center;
  justify-self: center;
  margin: 0 auto 10px;
}

.libertas-network__card-logo--01 {
  width: 245px;
  height: 105px;
  object-fit: contain;
}

.libertas-network__card-logo--02 {
  width: 245px;
  height: 105px;
  object-fit: contain;
}

.libertas-network__card-logo--03 {
  width: 245px;
  height: 105px;
  object-fit: contain;
}

.libertas-network__card-logo--04 {
  width: 245px;
  height: 105px;
  object-fit: contain;
}

.libertas-network__card p {
  margin: 0 0 15px;
  color: #000;
  text-align: center;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.libertas-network__card a {
  color: #00c8c2;
  text-align: center;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}

/* =========================
   Books section
========================= */
.books {
  background-color: #F2F2E8;
  position: relative;
  overflow: hidden;
}

.books__inner {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: stretch;
  column-gap: 72px;
}

.books__content {
  max-width: 560px;
  padding-bottom: 97px;
  padding-top: 150px;
  z-index: 2;
}

.books__title {
  margin: 0 0 24px;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.88px;
}

.books__title span {
  color: #3e80ba;
}

.books__copy {
  margin-bottom: 48px;
}

.books__copy p {
  margin: 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.books__copy p + p {
  margin-top: 40px;
}

.books__mobile-image {
  display: none;
}

.books__hero {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  justify-self: end;
  align-self: stretch;
  margin-top: 0;
}

.books__hero img {
  display: block;
  width: auto;
  max-width: 630px;
  margin-right: -60px;
  height: auto;
}

.books__cta {
  display: flex;
  justify-content: flex-start;
}

.books__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #f4792d;
  padding: 25px 40px;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  transition:
    background-color 220ms var(--ease),
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.books__btn:hover {
  background: #c65f23;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(198, 95, 35, 0.28);
}

.books__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(198, 95, 35, 0.22);
}

/* =========================
   Speak section
========================= */
.speak {
  padding-top: 218px;
  padding-bottom: 189px;
  background:
    url("../assets/images/cb-speak-bg.webp") center center / cover no-repeat,
    radial-gradient(97.34% 82.78% at 57.98% 113.22%, #3e80ba 0%, rgba(0, 20, 39, 0) 100%),
    #0e1732;
}

.speak__content {
  max-width: 100%;
}

.speak__title {
  margin: 0 0 40px 40px;
  max-width: 698px;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.8px;
}

.speak__title span {
  color: #00d1e8;
}

.speak__slider {
  display: flex;
  align-items: center;
  gap: 15px;
}

.speak__swiper {
  flex: 1;
}

.speak__swiper .swiper-wrapper {
  align-items: stretch;
}

.speak__slide {
  height: auto;
}

.speak__card-shell {
  height: 100%;
  padding: 5px;
  background: rgba(255, 255, 255, 0.4);
}

.speak__card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
}

.speak__card h3 {
  margin: 0 0 10px;
  color: var(--c-navy);
  font-family: Poppins, var(--ff-sans);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.speak__card p {
  margin: 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.speak__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
}

.speak__arrow img {
  width: 36px;
  height: 36px;
}

.speak__arrow:disabled {
  pointer-events: none;
}

.speak__dots {
  display: none;
}

.speak__dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.speak__dots .swiper-pagination-bullet-active {
  background: #00d1e8;
}

/* =========================
   Speaking Bio section
========================= */
.speaking-bio {
  position: relative;
  background: var(--c-white);
  padding-top: 130px;
  padding-bottom: 125px;
  overflow: hidden;
}

.speaking-bio__bg-gradient {
  position: absolute;
  left: 0;
  top: 70%;
  transform: translateY(-50%);
  width: 1200px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.speaking-bio__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(0, 1fr);
  grid-template-areas:
    "media heading"
    "media content";
  column-gap: 32px;
  row-gap: 0;
  align-items: start;
}

.speaking-bio__heading {
  grid-area: heading;
}

.speaking-bio__media {
  grid-area: media;
}

.speaking-bio__content {
  grid-area: content;
  max-width: 558px;
}

.speaking-bio__frame {
  position: relative;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.27) 100%);
}

.speaking-bio__frame::before {
  content: none;
}

.speaking-bio__frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}

.speaking-bio__title {
  margin: 20px 0 0 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.8px;
}

.speaking-bio__copy p {
  margin: 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.speaking-bio__copy p + p {
  margin-top: 30px;
}

/* =========================
   Media section
========================= */
.media {
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    url("../assets/images/cb-media-bg.webp") center center / cover no-repeat,
    radial-gradient(97.34% 82.78% at 57.98% 113.22%, #3e80ba 0%, rgba(0, 20, 39, 0) 100%),
    #0e1732;
}

.media__title {
  margin: 0 0 20px;
  color: #fff;
  text-align: center;
  font-family: Poppins, var(--ff-sans);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.96px;
}

.media__video-wrap {
  position: relative;
  max-width: 973px;
  margin: 0 auto 75px;
  border: 5px solid rgba(255, 255, 255, 0.5);
}

.media__video-thumb {
  width: 100%;
  height: auto;
}

.media__video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.media__video-wrap.is-playing .media__video-thumb,
.media__video-wrap.is-playing .media__play {
  opacity: 0;
  pointer-events: none;
}

.media__video-wrap.is-playing .media__video-frame {
  opacity: 1;
  pointer-events: auto;
}

.media__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 97px;
  height: 97px;
  border: 0;
  background: transparent;
  padding: 0;
}

.media__play img {
  width: 97px;
  height: 97px;
}

.media__slider-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.media__slider {
  overflow: hidden;
}

.media__slider .swiper-wrapper {
  align-items: stretch;
}

.media__slide {
  width: 420px;
  height: auto;
  display: flex;
}

.media__card-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.media__card {
  min-height: 155px;
  height: 100%;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  padding: 26px 10px 26px 26px;
  display: flex;
  align-items: flex-start;
  gap: 19px;
}

.media__card img,
.media__logo-placeholder {
  width: 103px;
  height: 103px;
  flex: 0 0 103px;
}

.media__logo-placeholder {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
}

.media__card-content h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.media__card-content p {
  margin: 0;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.media__nav {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.media__arrow {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--c-white);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.media__arrow img {
  width: 36px;
  height: 36px;
}

/* =========================
   Testimonials section
========================= */
.testimonials {
  padding-top: 100px;
  padding-bottom: 235px;
  background:
    linear-gradient(249deg, rgba(255, 255, 255, 0) 71.49%, #fff 106.63%),
    linear-gradient(63deg, rgba(255, 255, 255, 0) 62.8%, #fff 100.77%),
    #edf6ff;
}

.testimonials__title {
  margin: 0 0 60px;
  color: var(--c-navy);
  text-align: center;
  font-family: Poppins, var(--ff-sans);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.88px;
}

.testimonials__featured {
  width: min(1000px, 100%);
  margin: 0 auto 35px;
  padding: 112px 48px 35px;
  background: url("../assets/images/cb-testimonial-img-main.webp") center center / cover no-repeat;
  box-shadow: 10px 20px 20px 0 rgba(0, 0, 0, 0.08);
}

.testimonials__featured-quote {
  margin: 0 0 90px;
  max-width: 560px;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.testimonials__featured-quote span {
  color: #00d1e8;
}

.testimonials__featured-author h3 {
  margin: 0;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.testimonials__featured-author p {
  margin: 0;
  color: #fff;
  font-family: Poppins, var(--ff-sans);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.testimonials__slider-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.testimonials__slider {
  overflow: hidden;
}

.testimonials__slider .swiper-wrapper {
  align-items: stretch;
  padding: 50px 0;
}

.testimonials__slide {
  width: 430px;
  height: auto;
}

.testimonials__card {
  height: 100%;
  background: var(--c-white);
  padding: 73px 50px 60px;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 20px 20px 0 rgba(0, 0, 0, 0.08);
}

.testimonials__quote {
  margin: 0 0 25px;
  height: 90px;
  max-height: 90px;
  overflow: hidden;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.testimonials__person {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonials__person img {
  width: 78px;
  height: 78px;
  border-radius: 999px;
}

.testimonials__person h3 {
  margin: 0;
  color: #3e80ba;
  font-family: Poppins, var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.testimonials__person p {
  margin: 0;
  color: #000;
  font-family: Poppins, var(--ff-sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.testimonials__nav {
  margin-top: -20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--c-white);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonials__arrow img {
  width: 36px;
  height: 36px;
}

/* =========================
   Footer
========================= */
.s-footer {
  position: relative;
}

.s-footer__bg {
  height: 331px;
  padding-bottom: 58px;
  background: var(--c-navy) url("../assets/images/cb-footer-bg.webp") center center / cover no-repeat;
}

.s-footer__bg-inner {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.s-footer__logo img {
  width: auto;
  height: auto;
  max-height: 90px;
}

/* Connect card */
.s-footer__connect {
  position: absolute;
  top: -154px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1544px, calc(100% - (var(--gutter) * 2)));
  background: var(--c-white);
  padding: 74px 30px;
  z-index: 2;
}

.s-footer__connect-inner {
  text-align: center;
}

.s-footer__title {
  color: var(--c-navy);
  font-family: var(--ff-sans);
  font-size: clamp(2rem, 1.2rem + 1.6vw, 44px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.88px;
  margin: 0 0 22px;
}

.s-footer__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.s-footer__subtitle {
  color: var(--c-navy);
  font-family: var(--ff-sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.s-footer__socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.s-footer__social {
  display: inline-flex;
  border-radius: 999px;
}

.s-footer__social img {
  width: 60px;
  height: 60px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 10px 22px rgba(12, 21, 46, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease),
    visibility 220ms var(--ease);
  z-index: 998;
}

.back-to-top.is-visible {
  opacity: 0.88;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  opacity: 1;
}

.back-to-top__icon {
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--c-aqua);
  border-left: 3px solid var(--c-aqua);
  transform: rotate(45deg) translate(1px, 1px);
}

/* =========================
   Breakpoints
========================= */
@media (max-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery {
    padding: 20px 0 28px;
  }

  .gallery__desktop {
    display: none;
  }

  .gallery__mobile {
    display: block;
    position: relative;
  }

  .families {
    padding-top: 45px;
    padding-bottom: 32px;
  }

  .families__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "media"
      "copy";
    row-gap: 20px;
  }

  .families__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .families__copy p {
    font-size: 16px;
  }

  .families__copy p + p {
    margin-top: 20px;
  }

  .kids-market {
    padding-top: 0;
    padding-bottom: 54px;
    background-image: none;
  }

  .kids-market .l-container-large {
    width: min(1170px, calc(100% - 50px));
  }

  .kids-market__content {
    max-width: none;
  }

  .kids-market__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .kids-market__mobile-image {
    display: block;
    width: 100vw;
    max-width: none;
    height: auto;
    margin-top: 10px;
    margin-left: calc(50% - 50vw);
  }

  .kids-market__copy {
    margin-top: 32px;
  }

  .kids-market__copy p {
    font-size: 16px;
  }

  .kids-market__btn {
    margin-top: 24px;
    padding: 19px 32px;
    font-size: 18px;
  }

  .tuttle-twins {
    padding-top: 0;
    padding-bottom: 54px;
    background-image: none;
  }

  .tuttle-twins__content {
    max-width: none;
    margin-left: 0;
  }

  .tuttle-twins__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .tuttle-twins__mobile-image {
    display: block;
    width: 100vw;
    max-width: none;
    height: auto;
    margin-top: 10px;
    margin-left: calc(50% - 50vw);
  }

  .tuttle-twins__copy {
    margin-top: 30px;
    max-width: 100%;
  }

  .tuttle-twins__copy p {
    font-size: 16px;
  }

  .tuttle-twins__btn {
    margin-top: 24px;
    padding: 20px 32px;
    font-size: 18px;
  }

  .c-btn,
  .kids-market__btn,
  .tuttle-twins__btn,
  .tuttle-tv__btn,
  .praxis__btn,
  .books__btn {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .praxis {
    background-image: none;
    padding-top: 40px;
    padding-bottom: 60px;
    overflow-x: hidden;
  }

  .praxis__logo {
    width: 205px;
  }

  .praxis__mobile-image {
    display: block;
    width: 120vw;
    max-width: none;
    height: auto;
    margin-left: calc(50% - 50vw);
    transform: none;
    margin-bottom: 24px;
  }

  .praxis__title br {
    display: none;
  }

  .praxis__copy {
    margin-bottom: 40px;
    max-width: 100%;
  }

  .libertas {
    padding-top: 48px;
    padding-bottom: 64px;
    background-image: url("../assets/images/cb-libertas-bg-mobile.webp");
  }

  .libertas__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .libertas__content {
    max-width: 100%;
  }

  .libertas__logo {
    width: 205px;
    margin-bottom: 16px;
  }

  .libertas__title {
    margin-bottom: 15px;
  }

  .libertas__title br {
    display: none;
  }
  .libertas-network__card p br {
    display: none;
  }
  .libertas__media {
    display: none;
  }

  .libertas__mobile-media {
    display: block;
    margin-bottom: 24px;
  }

  .libertas__mobile-media img {
    width: 100%;
    height: auto;
  }

  .libertas__copy {
    margin-bottom: 24px;
  }

  .libertas__copy p {
    font-size: 20px;
  }
  .libertas__btn {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .books__inner {
    grid-template-columns: 1fr;
  }

  .books__content {
    max-width: 100%;
    padding-bottom: 63px;
    padding-top: 54px;

  }

  .books__hero {
    display: none;
  }

  .books__mobile-image {
    display: block;
    margin-bottom: -24px;
    width: calc(100% + (var(--gutter) * 2));
    margin-left: calc(var(--gutter) * -1);
  }

  .books__mobile-image img {
    width: 100%;
    height: auto;
  }

  .books__btn {
    margin-inline: 0;
  }

  .books__cta {
    justify-content: center;
  }
  .books__copy {
    margin-bottom: -70px;
    position: relative;
  }

  .speak {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .speaking-bio {
    padding-top: 52px;
    padding-bottom: 48px;
  }
  .speaking-bio__copy p br{ 
    display: none;
  }
  .speaking-bio__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "media"
      "content";
    row-gap: 15px;
  }

  .speaking-bio__content {
    max-width: 100%;
  }

  .speaking-bio__title {
    margin-bottom: 0;
  }
  .speaking-bio__bg-gradient {
    top: 40%;
    width: 100%;

  }

  .media__slide {
    width: 380px;
  }

  .media__play {
    width: 54.576px;
    height: 54.576px;
  }
  .media__play img {
    width: 54.576px;
    height: 54.576px;
  }
 
}

@media (max-width: 991px) {
  .c-nav__list {
    gap: 22px;
  }

  .c-nav__link {
    font-size: 16px;
  }

  .c-dropdown__item {
    font-size: 18px;
  }

  .s-footer__subtitle {
    font-size: 18px;
  }

  .s-footer__connect {
    top: -164px;
  }

  .s-footer__bg {
    height: 300px;
  }

  .hero {
    background-position: center right;
    height: auto;
    padding: 60px 0;
  }

  .hero .l-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__figure {
    display: none;
  }
}

@media (max-width: 767px) {
  .c-nav {
    display: none;
  }

  .c-header__inner {
    justify-content: center;
  }

  .s-footer__connect {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 3;
    padding: 74px 30px 48px;
    width: min(1544px, calc(100% - (var(--gutter) * 2)));
  }

  .s-footer__bg {
    height: auto;
    padding-top: 195px;
    padding-bottom: 36px;
    background-image: url("../assets/images/cb-footer-bg-mobile.webp");
    background-position: center top;
    background-size: cover;
  }

  .hero {
    background-image: url('../assets/images/cb-banner-mobile.webp');
    height: auto;
  }

  .hero .l-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
  }

  .hero .t-h1 {
    font-size: 26px;
    letter-spacing: -0.52px;
    min-height: 7.2em;
    width: 300px;
  }

  .hero__item {
    font-size: 16px;
    margin: 0 0 12px 0;
  }

  .hero__figure {
    display: block;
    position: absolute;
    right: 0px;
    top: 275px;
    transform: translateY(-50%);
    width: 300px;
    max-width: 300px;
    z-index: 1;
  }

  .hero__overlay {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    height: 100%;
    background-image: url('../assets/images/cb-banner-mobile-overlay.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    pointer-events: none;
    z-index: 2;
  }

  .hero__list {
    width: 100%;
  }

  .media {
    padding-top: 50px;
    padding-bottom: 50px;
    background:
      url("../assets/images/cb-media-bg-mobile.webp") center center / cover no-repeat,
      radial-gradient(97.34% 82.78% at 57.98% 113.22%, #3e80ba 0%, rgba(0, 20, 39, 0) 100%),
      #0e1732;
  }

  .media__title {
    font-size: 38px;
    line-height: 56px;
    letter-spacing: -0.76px;
  }

  .media__video-wrap {
    margin-bottom: 50px;
  }

  .media__slider-bleed {
    width: auto;
    margin-left: 0;
    padding-inline: var(--gutter);
  }

  .media__slide {
    width: min(420px, calc(100vw - 56px));
  }

  .media__card-content h3 {
    font-size: 18px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 168px;
  }

  .testimonials__title {
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 120%;
    letter-spacing: -0.68px;
  }

  .testimonials__featured {
    padding: 42px 20px 35px;
    margin-bottom: 12px;
    background-image: url("../assets/images/cb-testimonial-img-main-mobile.webp");
  }
  
  .testimonials__featured-quote {
    margin-bottom: 35px;
    font-size: 36px;
    line-height: 120%;
    max-width: 450px;
  }

  .testimonials__featured-author h3 {
    font-size: 18px;
    line-height: 150%;
  }

  .testimonials__featured-author p {
    font-size: 16px;
    line-height: 150%;
  }

  .testimonials__slider-bleed {
    width: auto;
    margin-left: 0;
    padding-inline: var(--gutter);
  }

  .testimonials__slide {
    width: min(430px, calc(100vw - (var(--gutter) * 2)));
  }

  .testimonials__person {
    gap: 14px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats__content {
    padding: 18px 20px;
  }

  .stats__img {
    height: 215px;
  }

  .tuttle-tv {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .tuttle-tv__heading-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 105px;
  }

  .tuttle-tv__title {
    max-width: 520px;
    text-align: center;
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .tuttle-tv__panel {
    margin-top: 0;
    height: auto;
    padding: 160px 27px 32px;
  }

  .tuttle-tv__panel::before {
    inset: -8px;
    border-width: 8px;
  }

  .tuttle-tv__image {
    top: -100px;
  }

  .tuttle-tv__image--desktop {
    display: none;
  }

  .tuttle-tv__image--mobile {
    display: block;
    width: min(405px, calc(100% - 16px));
    height: auto;
  }

  .tuttle-tv__content {
    max-width: 833px;
  }

  .tuttle-tv__lead {
    font-size: 16px;
  }

  .tuttle-tv__body {
    font-size: 16px;
  }

  .tuttle-tv__btn {
    margin-top: 20px;
    padding: 20px 29px;
    font-size: 14.93px;
    line-height: 20.735px;
  }

  .praxis__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .tuttle-tv__title br {
    display: none;
  }
  .praxis__copy p {
    font-size: 16px;
  }

  .books__title {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.48px;
  }

  .books__copy p {
    font-size: 16px;
  }

  .libertas__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  .libertas__copy p {
    font-size: 16px;
  }

  .libertas-network {
    padding-top: 0;
    padding-bottom: 80px;
    background:
      radial-gradient(97.34% 82.78% at 57.98% 113.22%, #3e80ba 0%, rgba(0, 20, 39, 0) 100%),
      #0e1732;
  }

  .libertas-network__top p {
    font-size: 16px;
  }

  .libertas-network__grid {
    grid-template-columns: 1fr;
  }

  .libertas-network__card p {
    font-size: 16px;
  }
  .libertas-network__card img {
    max-width: 100%;
    height: auto;
  }
  .libertas-network__hero {
    margin-bottom: 0;
  }
  .libertas-network__hero img {
    height: auto;
  }
  .libertas-network__top {
    padding-top: 30px;
    padding-left: 0;
  }
  .libertas-network__logo {
    width: 199px;
    margin-left: -10px;
  }

  .speak {
    padding-top: 60px;
    padding-bottom: 116px;
    background:
      url("../assets/images/cb-speak-bg-mobile.webp") center top / cover no-repeat,
      radial-gradient(97.34% 82.78% at 57.98% 113.22%, #3e80ba 0%, rgba(0, 20, 39, 0) 100%),
      #0e1732;
  }

  .speak__title {
    margin-bottom: 30px;
    margin-left: 0;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.48px;
    width: 285px;
  }

  .speak__slider {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "swiper swiper"
      "prev next";
    width: 100%;
    row-gap: 24px;
    column-gap: 12px;
  }

  .speak__swiper {
    grid-area: swiper;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .speak__arrow {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--c-white);
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .speak__arrow--prev {
    grid-area: prev;
    justify-self: end;
  }

  .speak__arrow--next {
    grid-area: next;
    justify-self: start;
  }

  .speak__card {
    padding: 40px;
  }

  .speak__card p {
    overflow-wrap: anywhere;
  }

  .speak__dots {
    display: none;
  }
  .kids-market__logo {
    width: 254px;
  }
  .tuttle-twins__logo {
    width: 260px;
  }

  .c-header__logo img {
    max-height: 80px;
  }

}

@media (max-width: 479px) {
  .c-header {
    height: 92px;
  }

  #main-content {
    padding-top: 92px;
  }

  html {
    scroll-padding-top: 92px;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 92px;
  }

  .c-header__logo img {
    max-height: 60px;
  }

  .s-footer__connect {
    padding: 74px 30px 48px;
  }

  .s-footer__social img {
    width: 52px;
    height: 52px;
  }

  .c-btn,
  .kids-market__btn,
  .tuttle-twins__btn,
  .tuttle-tv__btn,
  .praxis__btn,
  .books__btn,
  .libertas__btn {
    height: 50px;
    min-height: 50px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .s-footer__bg {
    padding-top: 235px;
  }

  .s-footer__logo img {
    width: 204px;
  }

  .hero .t-h1 {
    width: 248px;
  }

  .gallery__inner {
    width: calc(100% - (var(--gutter) * 2));
  }
  .kids-market__logo {
    position: relative;
    z-index: 2;
  }
  .kids-market__title {
    position: relative;
    z-index: 2;
  }
  .kids-market__mobile-image {
    margin-top: -116px;
    height: 515px;
    object-fit: cover;
  }
  .tuttle-twins__logo {
    width: 260px;
    position: relative;
    z-index: 2;
  }
  .tuttle-twins__title {
    position: relative;
    z-index: 2;
  }
   .tuttle-twins__mobile-image {
    margin-top: -95px;
    height: 515px;
    object-fit: cover;
  }
  .tuttle-tv__title {
    max-width: 335px;
  }

  .tuttle-tv__image--mobile {
    width: 330px;
    max-width: none;
  }

  .praxis__mobile-image {
    width: 100vw;
  }

  .speak__card {
    padding: 30px;
  }

  .speaking-bio__copy p {
    font-size: 16px;
  }

  .books__copy {
    margin-bottom: -40px;
  }

  .testimonials__card {
    padding: 60px 40px 60px;
  }

  .testimonials__quote {
    height: auto;
    max-height: none;
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

   .testimonials__featured {
    padding: 42px 20px 12px;
  }

  .testimonials__featured-quote {
    max-width: 280px;
    font-size: 24px;
  }
  .testimonials__featured-author h3 {
    font-size: 16px;
  }

  .testimonials__featured-author p {
    font-size: 14px;
  }
}
