.mtp-landing-page {
  --mtp-font-family: Calibri, 'Open Sans', sans-serif;
  --mtp-body-color: #333;
  --mtp-primary: #084d5f;
  --mtp-primary-hover: #063f4d;
  --mtp-teal-accent: #0c6b83;
  --mtp-teal-accent-hover: #0a5970;
  --mtp-light-bg: #f7f7f7;
  --mtp-content-max: 1080px;
  --mtp-content-intro: 1054px;
  --mtp-radius: 0.375rem;
  --mtp-focus-ring: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);

  color: var(--mtp-body-color);
  font-family: var(--mtp-font-family);
  background: #fff;
}

.mtp-landing-page * {
  box-sizing: border-box;
}

.mtp-container {
  max-width: var(--mtp-content-max);
  margin: 0 auto;
}

.mtp-section {
  padding: 3.75rem 0;
}

.mtp-landing-page h1,
.mtp-landing-page h2,
.mtp-landing-page h3 {
  margin: 0;
  font-family: var(--mtp-font-family);
  font-weight: 700;
  color: #222;
}

.mtp-landing-page h1 {
  font-size: 2.25rem;
  line-height: 1.2;
}

.mtp-landing-page h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  text-align: center;
}

.mtp-landing-page h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.mtp-landing-page p,
.mtp-landing-page a,
.mtp-landing-page button,
.mtp-landing-page li {
  font-family: var(--mtp-font-family);
  font-size: 1rem;
  line-height: 1.6;
}

.mtp-underlined-title {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25rem;
}

.mtp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  max-width: 220px;
  padding: 0.625rem 1.125rem;
  background: var(--mtp-primary);
  border: 1px solid var(--mtp-primary);
  border-radius: var(--mtp-radius);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mtp-btn:hover,
.mtp-btn:focus-visible {
  background: var(--mtp-primary-hover);
  border-color: var(--mtp-primary-hover);
  color: #fff;
}

.mtp-landing-page a:focus-visible,
.mtp-landing-page button:focus-visible {
  outline: none;
  box-shadow: var(--mtp-focus-ring);
}



.mtp-section--intro {
  background: #fff;
}

.mtp-section--intro h2 {
  margin-bottom: 1rem;
}

.mtp-section--intro p {
  margin: 0 0 0.7rem;
  font-family: Calibri, 'Open Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.25rem;
  text-align: left;
  max-width: 100ch;
}

.mtp-role-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.6rem 0;
}

.mtp-intro-footnote {
  margin-top: 0;
  max-width: 80ch;
}

.mtp-intro-footnote + .mtp-intro-footnote {
  margin-top: 1rem;
}

.mtp-intro-footnote a {
  color: inherit;
  text-decoration: underline;
}

.mtp-section--virtuous {
  padding-top: 1.25rem;
}

.mtp-section--virtuous h2 {
  max-width: 940px;
  margin: 0 auto 3.5rem;
}

.mtp-section--virtuous .mtp-container {
  width: min(100% - 2.5rem, 1320px);
}

/* Virtuous circle — three-row flexbox + negative margins */
.mtp-virtuous-circle {
  max-width: 1320px;
  margin: 0 auto;
}

/* Top row: 3 circles spread across full width */
.mtp-vc-top-row {
  display: flex;
  justify-content: space-between;
}

/*
 * Arrow row: 2 SVGs side by side.
 * padding: 0 10% offsets them inward by half a column (1/10 of container),
 * aligning the arrow span from ~circle-1-center to ~circle-3-center.
 * Negative margin-top pulls the row up to overlap the bottom of the top circles,
 * making the arrow strokes appear to emanate from the circles.
 */
.mtp-vc-arrow-row {
  display: flex;
  padding: 0 10%;
  margin-top: -2.5rem;
}


/*
 * Bottom row: 2 circles centered under the gaps between top circles.
 * padding: 0 20% (≈ one column width each side) staggers them under the gaps.
 * Negative margin-top pulls the circles up to create the staggered overlap.
 */
.mtp-vc-bottom-row {
  display: flex;
  justify-content: space-between;
  padding: 0 20%;
  margin-top: -2.5rem;
}

.mtp-virtuous-circle .mtp-node {
  flex-shrink: 0;
  width: 15.5rem;
  height: 15.5rem;
  padding: 2.8rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--mtp-teal-accent);
  border-radius: 50%;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.35;
  margin: 0;
}

.mtp-section--partner {
  background: #fff;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.mtp-partner-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.92fr);
  gap: 2.2rem;
  place-content: center;
  max-width: 1040px;
  margin: 0 auto;
}

.mtp-partner-image-wrap {
  margin: 0;
}

.mtp-partner-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 0.375rem;
}

.mtp-partner-content h3 {
  margin: 0 0 0.95rem;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: #111;
}

.mtp-partner-content p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.24;
  color: #2a2a2a;
}

.mtp-btn-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 0.5rem;
}

.mtp-section--partner .mtp-btn {
  min-width: 13.75rem;
  min-height: 2.875rem;
  font-size: 1.125rem;
  line-height: 1;
  border-radius: 0.5rem;
  padding: 0.625rem 1.75rem;
}

.mtp-section--four-stages {
  padding-top: 2.25rem;
  padding-bottom: 1.875rem;
}

.mtp-section--four-stages h2 {
  margin-bottom: 1.6rem;
}

/* Screen-reader / SEO hidden content */
.mtp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Four Stages: CSS Grid composition ── */
.mtp-four-stages-composition {
  display: grid;
  grid-template-columns: 60% 1fr;
  column-gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  /* default stretch lets .mtp-stage-descs fill the SVG column height */
}

.mtp-four-stages-image {
  display: block;
  width: 100%;
  height: auto;
  align-self: start;       /* prevents the <img> from stretching */
}

/* Inner grid: fr spacer rows push each description to align with
   its SVG stage name (~25%, ~42%, ~61%, ~77% from top).
   HTML order: 4→3→2→1 (Lead at top, Foundation at bottom).
   Trailing 12fr absorbs space below the Foundation item. */
.mtp-stage-descs {
  display: grid;
  grid-template-rows: 22fr auto 6fr auto 7fr auto 5fr auto 12fr;
  align-self: stretch;
}

.mtp-stage-desc {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #1e1e1e;
  margin: 0;
}

.mtp-stage-desc--4 { grid-row: 2; } /* Lead         */
.mtp-stage-desc--3 { grid-row: 4; } /* Accomplished */
.mtp-stage-desc--2 { grid-row: 6; } /* Proficient   */
.mtp-stage-desc--1 { grid-row: 8; } /* Foundation   */

/* Mobile: hide the grid composition; show the stacked fallback */
.mtp-four-stages-mobile {
  display: none;
}
.mtp-four-stages-mobile dt {
  font-weight: 700;
  color: #0c6b83;
  margin: 0.75rem 0 0.2rem;
}
.mtp-four-stages-mobile dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #1e1e1e;
}

.mtp-section--roles-modules {
  padding-top: 1.25rem;
}

.mtp-section--roles-modules h2 {
  margin-bottom: 0.55rem;
}

.mtp-roles-modules-subtext {
  margin: 0 auto 1.9rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 80ch;
}

/* ===== Pathway Carousel ===== */
.pathway-carousel {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
  margin-top: 1.5rem;
}

.pathway-carousel__nav {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.125rem;
  line-height: 0;
}

.pathway-carousel__nav--prev {
  margin-right: 1rem;
}

.pathway-carousel__nav--next {
  margin-left: 1rem;
}

.pathway-carousel__nav svg {
  width: 0.75rem;
  height: 1.75rem;
  stroke: #0C6B83;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pathway-carousel__nav:hover svg {
  stroke: #10B5D0;
}

.pathway-carousel__nav:disabled {
  cursor: default;
  opacity: 0.25;
}

.pathway-carousel__nav:disabled:hover svg {
  stroke: #0C6B83;
}

.pathway-carousel__viewport {
  flex: 1;
  min-width: 0;
  border-radius: 0.625rem;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background: #fff;
}

.pathway-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pathway-carousel__slide {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  padding: 2rem;
}

/* Per-slide headings */
.pathway-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pathway-heading__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #189EBF;
  line-height: 1.3;
  margin-bottom: 1.875rem;
}

.pathway-heading__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #189EBF;
  line-height: 1.3;
}

/* Learning plan (5 stage blocks + arrows) */
.learning-plan {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  margin-bottom: 1.5rem;
}

.lp-stage {
  flex: 1 1 0%;
  min-width: 0;
  border-radius: 0.5rem;
  padding: 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.lp-stage--prerequisite { background: #3A92A8; }
.lp-stage--foundation   { background: #189EBF; }
.lp-stage--proficient   { background: #0D80A7; }
.lp-stage--accomplished { background: #036289; }
.lp-stage--lead         { background: #01466B; }

.lp-stage__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: center;
}

.lp-stage__body {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #fff;
}

.lp-stage__body p {
  margin-bottom: clamp(2px, 0.35vw, 8px);
}

.lp-stage__body p:last-child {
  margin-bottom: 0;
}

.lp-arrow {
  flex: 0 0 2.375rem;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.lp-arrow__icon {
  width: 2.375rem;
  height: 2.625rem;
  flex-shrink: 0;
}


.mtp-section--testimonials {
  background: var(--mtp-primary);
}

.mtp-section--testimonials h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.mtp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem 5rem;
}

.mtp-testimonial {
  margin: 0;
  padding: 0;
  border: 0;
}

.mtp-quote-icon {
  width: 9.75rem;
  height: 7.125rem;
  margin-bottom: 1.2rem;
}

.mtp-testimonial p {
  max-width: 50ch;
  margin: 0 0 0.7rem;
  font-size: 1.125rem;
  color: #fff;
}

.mtp-testimonial cite {
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

/* .mtp-section--universities {
  background: var(--mtp-light-bg);
} */

.mtp-section--universities h2 {
  margin-bottom: 1.6rem;
}

.mtp-university-placeholders {
  display: flex;
  justify-content: space-around;
  gap: 2.5rem;
}

.mtp-circle-placeholder {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: #c4c4c4;
}

.mtp-section--pathways {
  background: #fff;
}

.mtp-section--pathways h2 {
  margin-bottom: 2rem;
}

.mtp-pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mtp-pathway-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  padding: 1rem;
  border: 1px solid var(--mtp-teal-accent);
  border-radius: var(--mtp-radius);
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: var(--mtp-teal-accent);
  font-size: 1.75rem !important;
  /* transition: 200ms ease-in-out background-color, 200ms ease-in-out color; */
}

.mtp-pathway-card:hover,
.mtp-pathway-card:focus-visible {
  background: var(--mtp-teal-accent-hover);
}

.mtp-section--faq {
  background: #fff;
}

.mtp-section--faq h2 {
  margin-bottom: 0.8rem;
}

.mtp-faq-subtext {
  max-width: 80ch;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.mtp-faq-subtext a {
  color: inherit;
  text-decoration: underline;
}

.mtp-accordion .accordion-item {
  border: 1px solid rgba(117, 117, 117, 0.8);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #f4f4f4;
}

.mtp-accordion .accordion-button {
  position: relative;
  width: 100%;
  background: none;
  border: none;
  box-shadow: none;
  padding: 16px 56px 16px 20px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: #2d2d2d;
  font-family: inherit;
  line-height: 1.4;
}

.mtp-accordion .accordion-button:not(.collapsed) {
  color: #2d2d2d;
  background: #ffffff;
  box-shadow: none !important;
  border-bottom: 0;
}

.mtp-accordion .accordion-button:focus {
  box-shadow: var(--mtp-focus-ring);
}

.mtp-accordion .accordion-button::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #cccccc;
  background: #cccccc;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mtp-accordion .accordion-button:not(.collapsed)::after {
  display: none;
}

.mtp-accordion .accordion-button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mtp-accordion .accordion-body {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  background: #fff;
  max-width: none;
}

/* === Section: PD for Teacher Registration === */
.mtp-section--pd-registration {
  background: #fff;
  padding: 0;
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}

.mtp-pd-reg-grid {
  --mtp-content-max: 69.625rem; /* 1114px */
  display: grid;
  grid-template-columns: 506fr 548fr;
  gap: 3.75rem;
  margin: 0 auto;
  align-items: start;
}

.mtp-pd-reg-image-wrap {
  margin: 0;
}

.mtp-pd-reg-content h2 {
  text-align: left;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #222;
}

.mtp-pd-reg-content p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #2a2a2a;
  margin-bottom: 1rem;
}

.mtp-pd-reg-content a:not(.mtp-btn) {
  color: var(--mtp-teal-accent);
  text-decoration: underline;
}

.mtp-image-placeholder {
  width: 100%;
  background: #d9d9d9;
  border-radius: 0.5rem;
}

.mtp-pd-reg-image-wrap .mtp-image-placeholder {
  aspect-ratio: 506 / 271;
}

/* === Section: Recognition of Prior Learning === */
.mtp-section--rpl {
  background: #fff;
  padding: 0;
  margin-bottom: 3.75rem;
}

.mtp-rpl-grid {
  --mtp-content-max: 69.625rem; /* 1114px */
  display: grid;
  grid-template-columns: 506fr 548fr;
  gap: 3.75rem;
  margin: 0 auto;
  align-items: end;
}

.mtp-rpl-content {
  display: flex;
  flex-direction: column;
}

.mtp-rpl-image-wrap {
  margin: 0;
}

.mtp-rpl-image-wrap .mtp-image-placeholder {
  width: 100%;
  aspect-ratio: 548 / 273;
}

.mtp-section--rpl h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.mtp-section--rpl p {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

/* === Section: Tailored Consultations === */
.mtp-section--consultations {
  background: #fff;
}

.mtp-consultations-intro {
  max-width: 100ch;
  margin: 0 auto 0.8rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.4;
}

.mtp-consultation-topics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto;
}

.mtp-topic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.mtp-topic-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--mtp-teal-accent);
  flex-shrink: 0;
}

.mtp-topic-item span {
  line-height: 1.1rem;
}

.mtp-btn-row--center {
  justify-content: center;
}

/* === Section: Video Introduction === */
.mtp-section--video {
  background: #fff;
}

.mtp-video-wrapper {
  max-width: 885px;
  margin: 0 auto;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.mtp-video-player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background: #2a2a2a;
}

/* Fallback poster styling if image doesn't load */
.mtp-video-player:not([poster]) {
  background: linear-gradient(135deg, #074A5E 0%, #0C6B83 40%, #0E7D96 70%, #0C6B83 100%);
  position: relative;
}

.mtp-video-player:not([poster])::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

@media (max-width: 1023px) {
  .mtp-section {
    padding: 3.25rem 0;
  }

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

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

  .mtp-virtuous-circle .mtp-node {
    width: 13.75rem;
    height: 13.75rem;
    padding: 2.1rem !important;
    font-size: 1rem;
  }

  .mtp-partner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }

  .mtp-partner-content h3 {
    font-size: 2rem;
  }

  .mtp-partner-content p {
    font-size: 1.3125rem;
  }

  .mtp-section--partner .mtp-btn {
    min-height: 2.875rem;
    min-width: 10.625rem;
    font-size: 1.375rem;
    padding: 0.5rem 1.125rem;
  }

  .mtp-four-stages-composition {
    max-width: 820px;
    column-gap: 1rem;
  }

  .mtp-stage-desc {
    font-size: 0.875rem;
  }

  .pathway-heading__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .pathway-heading__subtitle {
    font-size: 1.25rem;
  }

  .lp-stage {
    padding: 0.75rem;
  }

  .lp-stage__title {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .lp-arrow {
    flex: 0 0 1.875rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .lp-arrow__icon {
    width: 1.875rem;
    height: 2.0625rem;
  }



  .mtp-pd-reg-grid,
  .mtp-rpl-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }

  .mtp-section--pd-registration,
  .mtp-section--rpl {
    padding: 3.25rem 0;
  }

  .mtp-rpl-grid {
    align-items: start;
  }

  .mtp-consultation-topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 767px) {
  /* Four stages: hide grid composition, show stacked fallback list */
  .mtp-four-stages-composition {
    display: none;
  }

  .mtp-four-stages-mobile {
    display: block;
    margin-top: 1.25rem;
  }

  .mtp-landing-page h1 {
    font-size: 1.75rem;
  }

  .mtp-landing-page h2 {
    font-size: 1.5rem;
  }

  .mtp-landing-page h3 {
    font-size: 1.25rem;
  }

  .mtp-landing-page p,
  .mtp-landing-page a,
  .mtp-landing-page button,
  .mtp-landing-page li {
    font-size: 0.875rem;
  }

  .mtp-container {
    width: min(100% - 1.5rem, var(--mtp-content-max));
  }



  .mtp-role-nav,
  .mtp-testimonials-grid,
  .mtp-pathway-grid,
  .mtp-partner-grid {
    grid-template-columns: 1fr;
  }

  .mtp-virtuous-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /*
   * Flatten the row wrappers so their circle children become direct
   * flex items of .mtp-virtuous-circle and can be reordered with `order`.
   */
  .mtp-vc-top-row,
  .mtp-vc-bottom-row {
    display: contents;
  }



  /* Reorder circles to match zigzag flow: 1 → 4 → 2 → 5 → 3 */
  .mtp-node--1 { order: 1; }
  .mtp-node--4 { order: 2; }
  .mtp-node--2 { order: 3; }
  .mtp-node--5 { order: 4; }
  .mtp-node--3 { order: 5; }

  .mtp-virtuous-circle .mtp-node {
    width: min(15.5rem, 100%);
    height: min(15.5rem, 100vw - 3rem);
    font-size: 0.9375rem;
    padding: 2rem !important;
  }

  .mtp-btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .mtp-btn-row .mtp-btn,
  .mtp-role-nav .mtp-btn {
    width: 100%;
  }

  .mtp-partner-content h3 {
    font-size: 1.75rem;
  }

  .mtp-partner-content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .mtp-section--partner .mtp-btn {
    min-width: 0;
    font-size: 1.125rem;
  }

  .pathway-heading__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .pathway-heading__subtitle {
    font-size: 1.1rem;
  }

  .pathway-carousel__slide {
    padding: 0.75rem;
  }

  .learning-plan {
    flex-wrap: wrap;
    gap: 4px;
  }

  .lp-stage {
    flex: 1 1 calc(50% - 1rem);
    padding: 0.6rem;
  }

  .lp-stage__title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .lp-arrow {
    flex: 0 0 1.5rem;
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .lp-arrow__icon {
    width: 1.5rem;
    height: 1.6875rem;
  }



  .mtp-university-placeholders {
    gap: 1.2rem;
  }

  .mtp-pd-reg-grid,
  .mtp-rpl-grid {
    grid-template-columns: 1fr;
  }

  .mtp-section--pd-registration,
  .mtp-section--rpl {
    padding: 2.75rem 0;
  }

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

  .mtp-section {
    padding: 2.75rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mtp-btn,
  .mtp-pathway-card,
  .mtp-accordion .accordion-button {
    transition: none;
  }

  html:focus-within {
    scroll-behavior: auto;
  }
}

.mtp-universities{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 100px;
}



.mtp-vc-mobile {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.mtp-vc-mobile .mtp-vc-arrow  {
  width: 40px;
  height: 50px;
  position: relative;
}


.mtp-vc-mobile .mtp-vc-arrow img {
  width: 40px;
  position: absolute;
  bottom: -3px;
}

@media (min-width: 768px) {
  .mtp-vc-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .mtp-vc-desktop {
    display: none;
  }

}

.section-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 140ch;
  margin: 0 auto;
}