:root {
  --navy: #173a63;
  --blue: #347fcb;
  --blue-dark: #286fae;
  --blue-light: #e7f3ff;

  --orange: #e87500;
  --teal: #41c4bb;
  --yellow: #ffbd2e;
  --pink: #f25db1;

  --text: #52677d;
  --white: #ffffff;
  --cream: #fffaf3;
  --border: #dce8f1;

  --page-width: min(100% - 40px, 1260px);

  --shadow:
    0 24px 60px rgba(23, 58, 99, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: var(--navy);
  background: var(--white);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page-shell {
  width: var(--page-width);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;
  clip: rect(0, 0, 0, 0);

  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;

  top: 10px;
  left: 10px;

  padding: 10px 16px;

  color: var(--white);
  background: var(--navy);

  border-radius: 8px;

  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  position: relative;
  z-index: 20;

  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e8f0f6;
}

.header-inner {
  min-height: 106px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

.brand {
  flex: 0 1 400px;
}

.brand img {
  width: min(100%, 400px);
  height: auto;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 24px;

  font-size: 15px;
  font-weight: 750;

  white-space: nowrap;
}

.primary-navigation > a:not(.button) {
  text-decoration: none;

  transition: color 160ms ease;
}

.primary-navigation > a:not(.button):hover,
.primary-navigation > a:not(.button):focus-visible {
  color: var(--orange);
}

.menu-toggle {
  display: none;
}

/* Buttons */

.button {
  min-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 27px;

  color: var(--white);
  background: var(--blue);

  border: 2px solid var(--blue);
  border-radius: 999px;

  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;

  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);

  box-shadow:
    0 12px 28px rgba(52, 127, 203, 0.24);

  transform: translateY(-2px);
}

.header-button {
  min-height: 48px;
  padding: 10px 22px;

  font-size: 14px;
}

.button-outline {
  color: var(--orange);
  background: var(--white);

  border-color: var(--orange);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);

  box-shadow:
    0 12px 28px rgba(232, 117, 0, 0.2);
}

/* Hero */

.hero {
  position: relative;

  min-height: 814px;

  padding: 52px 0 110px;

  overflow: hidden;
  background: var(--cream);
}

.hero-circle {
  position: absolute;

  border-radius: 50%;
  pointer-events: none;
}

.hero-circle-blue {
  top: -118px;
  left: -92px;

  width: 340px;
  height: 340px;

  background: rgba(65, 196, 187, 0.09);
}

.hero-circle-pink {
  right: 27%;
  bottom: -180px;

  width: 430px;
  height: 430px;

  background: rgba(242, 93, 177, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(420px, 0.88fr);

  align-items: center;

  gap: clamp(44px, 6vw, 86px);
}

.hero-content {
  padding-top: 12px;
}

.hero-batch-information {
  width: fit-content;
  max-width: 100%;

  margin: 0 0 34px;
}

.batch-pill {
  width: fit-content;
  max-width: 100%;

  margin: 0;
  padding: 11px 18px;

  display: flex;
  align-items: center;

  gap: 10px;

  color: var(--blue-dark);
  background: var(--blue-light);

  border: 1px solid #cfe4f5;
  border-radius: 999px;

  box-shadow:
    0 8px 22px rgba(52, 127, 203, 0.1);

  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.batch-pill > span:last-child {
  min-width: 0;
}

.batch-pill-copy {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.batch-pill-details {
  color: var(--text);

  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.future-intakes strong {
  color: var(--orange);
  font-weight: 850;
}

.batch-pill strong {
  font-weight: 850;
}

.batch-pill-dot {
  width: 11px;
  height: 11px;

  flex: 0 0 11px;

  background: var(--orange);
  border-radius: 50%;
}

.future-intakes {
  width: fit-content;
  max-width: 100%;

  margin: 11px 0 0 17px;
  padding: 7px 13px;

  color: #8b4a0a;
  background: #fff3e6;

  border: 1px solid #f5d4b2;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.batch-announcement {
  width: fit-content;

  margin: 0 0 58px;
  padding: 10px 17px;

  display: flex;
  align-items: center;

  gap: 12px;

  color: var(--blue-dark);
  background: var(--blue-light);

  border-radius: 999px;

  font-size: 12px;
  font-weight: 850;

  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.batch-announcement span {
  width: 13px;
  height: 13px;

  flex: 0 0 13px;

  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  max-width: 680px;

  margin: 0;

  font-size: clamp(44px, 4.3vw, 63px);
  line-height: 1.08;

  letter-spacing: -2.6px;
}

.hero-description {
  max-width: 650px;

  margin: 34px 0 0;

  color: var(--text);

  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 16px;

  margin-top: 34px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;

  gap: 22px;

  margin: 44px 0 0;
  padding: 0;

  color: #445e75;

  font-size: 14px;
  font-weight: 750;

  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;

  gap: 9px;
}

.highlight-icon {
  width: 23px;
  height: 23px;

  display: inline-grid;
  place-items: center;

  color: var(--white);

  border-radius: 50%;

  font-size: 14px;
  font-weight: 900;
}

.highlight-icon.teal {
  background: var(--teal);
}

.highlight-icon.yellow {
  background: var(--yellow);
}

.highlight-icon.pink {
  background: var(--pink);
}

/* Hero image */

.hero-image-card {
  position: relative;

  min-height: 650px;

  margin: 0;

  overflow: hidden;

  background: var(--blue-light);
  border: 1px solid #d4e8f8;
  border-radius: 42px;

  box-shadow: var(--shadow);
}

.hero-image-card > img {
  width: 100%;
  height: 650px;

  object-fit: cover;
  object-position: center 43%;
}

.hero-image-card figcaption {
  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  min-height: 136px;

  padding: 29px 34px 25px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: var(--white);
  background: rgba(16, 46, 80, 0.9);
}

.hero-image-card figcaption span {
  margin-bottom: 10px;

  color: var(--yellow);

  font-size: 12px;
  font-weight: 850;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-image-card figcaption strong {
  font-size: 17px;
  line-height: 1.5;
}

/* Why cybersecurity */

.about-lte-section,
.mentor-section,
.home-pathways {
  scroll-margin-top: 100px;
}

.about-lte-section {
  padding: 110px 0;

  background: var(--white);
}

.why-section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(380px, 1.05fr);

  align-items: end;

  gap: clamp(45px, 7vw, 100px);

  margin-bottom: 56px;
}

.section-kicker {
  margin: 0 0 16px;

  color: var(--orange);

  font-size: 12px;
  font-weight: 850;

  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.why-section-heading h2 {
  max-width: 630px;

  margin: 0;

  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;

  letter-spacing: -2px;
}

.why-section-heading h2 span {
  display: block;

  color: var(--blue);
}

.section-introduction {
  max-width: 600px;

  margin: 0;

  color: var(--text);

  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.why-card {
  position: relative;

  min-height: 350px;

  padding: 37px 32px 34px;

  overflow: hidden;

  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 28px;

  box-shadow:
    0 18px 45px rgba(23, 58, 99, 0.07);
}

.why-card::before {
  position: absolute;

  top: 0;
  right: 0;
  left: 0;

  height: 5px;

  content: "";
}

.why-card-blue::before {
  background: var(--blue);
}

.why-card-orange::before {
  background: var(--orange);
}

.why-card-pink::before {
  background: var(--pink);
}

.why-card-number {
  display: block;

  margin-bottom: 31px;

  color: #b8c9d8;

  font-size: 13px;
  font-weight: 850;

  letter-spacing: 2px;
}

.why-card h3 {
  margin: 0 0 19px;

  font-size: 23px;
  line-height: 1.24;

  letter-spacing: -0.5px;
}

.why-card p {
  margin: 0;

  color: var(--text);

  font-size: 16px;
  line-height: 1.7;
}

.why-closing-message {
  margin-top: 28px;
  padding: 22px 27px;

  display: flex;
  align-items: center;

  gap: 17px;

  color: var(--navy);
  background: var(--blue-light);

  border: 1px solid #cee3f4;
  border-radius: 20px;
}

.why-closing-message > span {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: inline-grid;
  place-items: center;

  color: var(--white);
  background: var(--teal);

  border-radius: 50%;

  font-weight: 900;
}

.why-closing-message p {
  margin: 0;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

/* Mentor experience */

.mentor-section {
  padding: 0 0 120px;

  background: var(--white);
}

.mentor-panel {
  position: relative;

  padding: clamp(50px, 6vw, 78px);

  display: grid;
  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(480px, 1.15fr);

  align-items: center;

  gap: clamp(50px, 7vw, 100px);

  overflow: hidden;

  color: var(--white);
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(65, 196, 187, 0.2),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #173a63 0%,
      #102f51 100%
    );

  border-radius: 38px;

  box-shadow:
    0 28px 65px rgba(23, 58, 99, 0.18);
}

.mentor-panel::after {
  position: absolute;

  right: -100px;
  bottom: -130px;

  width: 330px;
  height: 330px;

  background: rgba(242, 93, 177, 0.08);
  border-radius: 50%;

  content: "";
  pointer-events: none;
}

.section-kicker-light {
  color: var(--yellow);
}

.mentor-introduction,
.mentor-value {
  position: relative;
  z-index: 1;
}

.mentor-introduction h2 {
  margin: 0;

  font-size: clamp(37px, 3.6vw, 51px);
  line-height: 1.1;

  letter-spacing: -1.7px;
}

.mentor-value p {
  margin: 0;

  color: #cbd9e5;

  font-size: 16px;
  line-height: 1.7;
}

.mentor-value p + p {
  margin-top: 18px;
}

.mentor-value .mentor-value-lead {
  color: var(--white);

  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.mentor-proof {
  position: relative;
  z-index: 1;

  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 15px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.mentor-proof li {
  min-height: 78px;

  padding: 17px 20px;

  display: flex;
  align-items: center;

  gap: 12px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.mentor-proof li > span {
  width: 27px;
  height: 27px;

  flex: 0 0 27px;

  display: inline-grid;
  place-items: center;

  color: var(--navy);
  background: var(--yellow);

  border-radius: 50%;

  font-size: 14px;
  font-weight: 900;
}

.mentor-proof strong {
  color: var(--white);

  font-size: 14px;
  line-height: 1.45;
}

/* New homepage sections — tablet */

@media (max-width: 860px) {
  .about-lte-section {
    padding: 88px 0;
  }

  .why-section-heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .section-introduction {
    max-width: 720px;
  }

  .why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .mentor-section {
    padding-bottom: 90px;
  }

  .mentor-panel {
    grid-template-columns: 1fr;
  }
}

/* New homepage sections — small mobile */

@media (max-width: 560px) {
  .about-lte-section {
    padding: 72px 0;
  }

  .why-section-heading {
    margin-bottom: 38px;
  }

  .why-section-heading h2 {
    font-size: 38px;
    letter-spacing: -1.4px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-card:last-child {
    grid-column: auto;

    min-height: auto;

    padding: 31px 25px;
  }

  .why-closing-message {
    align-items: flex-start;

    padding: 19px;
  }

  .mentor-section {
    padding-bottom: 72px;
  }

  .mentor-panel {
    width: min(100% - 20px, 520px);

    padding: 39px 25px;

    border-radius: 28px;
  }

  .mentor-introduction h2 {
    font-size: 37px;
  }

    .mentor-proof {
    grid-template-columns: 1fr;
    }

    .mentor-proof li {
    min-height: auto;
    }
}

/* Homepage course pathways */

    .home-pathways {
    padding: 110px 0;

    background: #f5f9fc;
    }

    .home-pathways-heading {
    max-width: 900px;

    margin-bottom: 47px;
    }

    .home-pathways-heading h2 {
    max-width: 780px;

    margin: 0;

    font-size: clamp(39px, 4vw, 56px);
    line-height: 1.08;

    letter-spacing: -2px;
    }

    .home-learning-promise {
    max-width: 850px;

    margin-top: 29px;
    padding: 27px 30px;

    background: var(--white);

    border: 1px solid var(--border);
    border-left: 6px solid var(--teal);
    border-radius: 18px;

    box-shadow:
        0 14px 34px rgba(23, 58, 99, 0.07);
    }

    .home-learning-promise strong {
    display: block;

    margin-bottom: 10px;

    color: var(--navy);

    font-size: 18px;
    line-height: 1.5;
    }

    .home-learning-promise p {
    margin: 0;

    color: var(--text);

    font-size: 15px;
    line-height: 1.7;
    }

    .home-learning-promise p + p {
    margin-top: 8px;
    }

    .home-pathway-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
    }

    .home-pathway-card {
    position: relative;

    min-height: 285px;

    padding: 34px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    color: var(--navy);
    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 24px;

    box-shadow:
        0 16px 38px rgba(23, 58, 99, 0.07);

    text-decoration: none;

    transition:
        transform 170ms ease,
        box-shadow 170ms ease,
        border-color 170ms ease;
    }

    .home-pathway-card::before {
    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 6px;

    background: var(--blue);

    content: "";
    }

    .home-pathway-card-1::before {
    background: var(--pink);
    }

    .home-pathway-card-2::before {
    background: var(--teal);
    }

    .home-pathway-card-3::before {
    background: var(--orange);
    }

    .home-pathway-card-4::before {
    background: var(--blue);
    }

    .home-pathway-card:hover,
    .home-pathway-card:focus-visible {
    border-color: #c6dbe9;

    box-shadow:
        0 23px 50px rgba(23, 58, 99, 0.13);

    transform: translateY(-5px);
    }

    .home-pathway-card:focus-visible {
    outline: 4px solid rgba(52, 127, 203, 0.25);
    outline-offset: 3px;
    }

    .home-pathway-number {
    margin-bottom: 26px;

    color: #9eb2c3;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
    }

    .home-pathway-card h3 {
    margin: 0 0 15px;

    color: var(--navy);

    font-size: 25px;
    line-height: 1.25;

    letter-spacing: -0.5px;
    }

    .home-pathway-card p {
    margin: 0 0 28px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.7;
    }

    .home-pathway-link {
    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--blue-dark);

    font-size: 14px;
    font-weight: 850;
    }

    .home-pathway-link > span {
    transition: transform 170ms ease;
    }

    .home-pathway-card:hover
    .home-pathway-link > span,
    .home-pathway-card:focus-visible
    .home-pathway-link > span {
    transform: translateX(5px);
    }

    .home-pathways-action {
    margin-top: 36px;

    display: flex;
    justify-content: center;
    }

    /* Homepage pathways — tablet */

    @media (max-width: 860px) {
    .home-pathways {
        padding: 88px 0;
    }

    .home-pathway-card {
        min-height: 310px;

        padding: 30px;
    }
    }

    /* Homepage pathways — small mobile */

    @media (max-width: 560px) {
    .home-pathways {
        padding: 72px 0;
    }

    .home-pathways-heading h2 {
        font-size: 38px;
        letter-spacing: -1.4px;
    }

    .home-learning-promise {
        padding: 23px 21px;

        border-radius: 16px;
    }

    .home-pathway-grid {
        grid-template-columns: 1fr;
    }

    .home-pathway-card {
        min-height: 0;

        padding: 29px 25px;
    }

    .home-pathways-action .button {
        width: 100%;
    }
    }

/* Footer */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-main {
  min-height: 190px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 50px;
}

.footer-brand img {
  width: 340px;
}

.footer-brand p {
  margin: 18px 0 4px;

  color: var(--text);
}

.footer-brand > a {
  color: var(--blue-dark);
  text-decoration: none;
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;

  gap: 25px;

  font-weight: 750;
}

.footer-navigation a {
  text-decoration: none;
}

.footer-navigation a:hover {
  color: var(--orange);
}

.footer-bottom {
  color: var(--white);
  background: var(--navy);
}

.footer-bottom-inner {
  min-height: 66px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  font-size: 13px;
}

.footer-bottom-inner span {
  color: #9ab0c2;
}

/* Tablet */

@media (max-width: 1080px) {
  .brand {
    flex-basis: 320px;
  }

  .primary-navigation {
    gap: 16px;
    font-size: 14px;
  }

  .header-button {
    display: none;
  }

  .hero-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(370px, 0.82fr);

    gap: 38px;
  }

  .hero h1 {
    font-size: 50px;
  }
}

/* Mobile navigation */

@media (max-width: 860px) {
  :root {
    --page-width: min(100% - 32px, 720px);
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand {
    flex-basis: 272px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;

    display: inline-grid;
    place-items: center;

    color: var(--navy);
    background: var(--blue-light);

    border: 0;
    border-radius: 50%;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    width: 21px;
    height: 2px;

    display: block;

    background: currentColor;
    border-radius: 4px;

    content: "";
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before {
    position: absolute;
    top: -7px;
  }

  .menu-icon::after {
    position: absolute;
    top: 7px;
  }

  .primary-navigation {
    position: absolute;

    top: calc(100% + 1px);
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 20px 24px;

    background: var(--white);
    border-bottom: 1px solid var(--border);

    box-shadow:
      0 18px 35px rgba(23, 58, 99, 0.12);
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation > a:not(.button) {
    padding: 13px 4px;
  }

  .primary-navigation .header-button {
    display: inline-flex;
    margin-top: 12px;
  }

  .hero {
    padding: 40px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .batch-announcement {
    margin-bottom: 38px;
  }

  .hero h1 {
    max-width: 690px;

    font-size:
      clamp(47px, 8.7vw, 66px);
  }

  .hero-image-card,
  .hero-image-card > img {
    min-height: 680px;
    height: 680px;
  }

  .hero-image-card > img {
    object-position: center 42%;
  }

  .footer-main {
    padding-block: 58px;

    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small mobile */

@media (max-width: 560px) {
  :root {
    --page-width: min(100% - 28px, 520px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    flex-basis: 224px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 26px;
  }

  .batch-announcement {
    width: 100%;

    margin-bottom: 32px;
    padding: 10px 13px;

    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size:
      clamp(40px, 12.3vw, 58px);

    letter-spacing: -2px;
  }

  .hero-description {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px 10px;

    margin-top: 34px;
  }

  .hero-highlights li:last-child {
    grid-column: 1 / -1;
  }

  .hero-image-card,
  .hero-image-card > img {
    min-height: 530px;
    height: 530px;
  }

  .hero-image-card {
    border-radius: 30px;
  }

  .hero-image-card figcaption {
    min-height: 126px;
    padding: 24px;
  }

    .hero-batch-information {
    width: 100%;
    margin-bottom: 28px;
  }

  .batch-pill {
    width: 100%;

    align-items: flex-start;

    padding: 11px 14px;

    border-radius: 18px;

    font-size: 12px;
    line-height: 1.5;
  }

  .batch-pill-dot {
    margin-top: 3px;
  }

  .future-intakes {
    width: 100%;

    margin-top: 9px;
    margin-left: 0;

    padding: 8px 13px;

    border-radius: 14px;

    font-size: 12px;
    line-height: 1.55;
  }

  .footer-brand img {
    width: min(100%, 300px);
  }

  .footer-navigation {
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom-inner {
    min-height: 84px;

    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    gap: 5px;
  }
}