

/*==================================================
WHAT YOU'LL LEARN — NURSING
==================================================*/

.nursing-core-learning,
.nursing-core-learning * {
  box-sizing: border-box;
}

.nursing-core-learning {
  position: relative;
  padding: 145px 6vw;
  overflow: hidden;
  background: #f5f2eb;
  color: #06162f;
}

.nursing-core-learning-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}


/*==================================================
SECTION HEADER
==================================================*/

.nursing-core-learning-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 75px;
}

.nursing-core-learning-heading > span {
  display: inline-block;
  margin-bottom: 24px;
  color: #b58b2b;
  font-size: .75rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.nursing-core-learning-heading h2 {
  max-width: 950px;
  margin: 0;
  color: #06162f;
  font-size: clamp(3.6rem, 6.5vw, 7.2rem);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 850;
}

.nursing-core-learning-heading h2 em {
  display: block;
  margin-top: 12px;
  color: #b58b2b;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.nursing-core-learning-header > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: rgba(6, 22, 47, .64);
  font-size: 1rem;
  line-height: 1.85;
}


/*==================================================
MAIN LAYOUT
==================================================*/

.nursing-core-learning-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(480px, .96fr);
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 34px;
  box-shadow: 0 42px 110px rgba(6, 22, 47, .12);
}


/*==================================================
LARGE VISUAL
==================================================*/

.nursing-core-learning-visual {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background: #06162f;
}

.nursing-core-learning-image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity .9s ease,
    transform 1.5s cubic-bezier(.2, .7, .2, 1);
}

.nursing-core-learning-image.active {
  opacity: 1;
  transform: scale(1);
}

.nursing-core-learning-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.nursing-core-learning-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      0deg,
      rgba(3, 12, 27, .91) 0%,
      rgba(3, 12, 27, .16) 48%,
      rgba(3, 12, 27, .08) 100%
    );
}


/*==================================================
IMAGE CAPTION
==================================================*/

.nursing-core-learning-image-caption {
  position: absolute;
  left: 48px;
  right: 100px;
  bottom: 46px;
  z-index: 4;
}

.nursing-core-learning-image-caption span {
  display: block;
  margin-bottom: 12px;
  color: #d6ae4c;
  font-size: .68rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nursing-core-learning-image-caption strong {
  display: block;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.3vw, 4rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 800;
}


/*==================================================
IMAGE INDEX
==================================================*/

.nursing-core-learning-image-index {
  position: absolute;
  right: 42px;
  bottom: 49px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .62);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.nursing-core-learning-image-index i {
  width: 1px;
  height: 42px;
  display: block;
  background: rgba(255, 255, 255, .3);
}


/*==================================================
SPECIALITY PANEL
==================================================*/

.nursing-core-learning-specialities {
  padding: 38px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.nursing-core-learning-item {
  border-bottom: 1px solid rgba(6, 22, 47, .12);
}

.nursing-core-learning-item:first-child {
  border-top: 1px solid rgba(6, 22, 47, .12);
}


/*==================================================
SPECIALITY TRIGGER
==================================================*/

.nursing-core-learning-trigger {
  width: 100%;
  min-height: 87px;
  padding: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 30px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #06162f;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.nursing-core-learning-number {
  color: rgba(6, 22, 47, .38);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  transition: color .35s ease;
}

.nursing-core-learning-name {
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 760;
  transition:
    color .35s ease,
    transform .35s ease;
}

.nursing-core-learning-symbol {
  position: relative;
  width: 26px;
  height: 26px;
}

.nursing-core-learning-symbol::before,
.nursing-core-learning-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #b58b2b;
  transform: translate(-50%, -50%);
  transition: transform .35s ease;
}

.nursing-core-learning-symbol::before {
  width: 18px;
  height: 1px;
}

.nursing-core-learning-symbol::after {
  width: 1px;
  height: 18px;
}


/*==================================================
ACTIVE TRIGGER
==================================================*/

.nursing-core-learning-item.active
.nursing-core-learning-number {
  color: #b58b2b;
}

.nursing-core-learning-item.active
.nursing-core-learning-name {
  color: #b58b2b;
  transform: translateX(7px);
}

.nursing-core-learning-item.active
.nursing-core-learning-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}


/*==================================================
COLLAPSIBLE CONTENT
==================================================*/

.nursing-core-learning-content {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition:
    grid-template-rows .55s cubic-bezier(.2, .7, .2, 1);
}

.nursing-core-learning-item.active
.nursing-core-learning-content {
  grid-template-rows: 1fr;
}

.nursing-core-learning-content-inner {
  min-height: 0;
  padding: 0 0 0 66px;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity .4s ease,
    transform .5s ease,
    padding .5s ease;
}

.nursing-core-learning-item.active
.nursing-core-learning-content-inner {
  padding-bottom: 34px;
  opacity: 1;
  transform: translateY(0);
}

.nursing-core-learning-content p {
  max-width: 500px;
  margin: 0 0 20px;
  color: rgba(6, 22, 47, .62);
  font-size: .92rem;
  line-height: 1.75;
}

.nursing-core-learning-content ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  list-style: none;
}

.nursing-core-learning-content li {
  position: relative;
  padding-left: 18px;
  color: rgba(6, 22, 47, .81);
  font-size: .82rem;
  line-height: 1.5;
  font-weight: 650;
}

.nursing-core-learning-content li::before {
  content: "";
  position: absolute;
  top: .57em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d6ae4c;
}


/*==================================================
HOVER
==================================================*/

@media (hover: hover) {

  .nursing-core-learning-item:not(.active)
  .nursing-core-learning-trigger:hover
  .nursing-core-learning-name {
    color: #b58b2b;
    transform: translateX(7px);
  }

  .nursing-core-learning-item:not(.active)
  .nursing-core-learning-trigger:hover
  .nursing-core-learning-number {
    color: #b58b2b;
  }

}


/*==================================================
LARGE TABLET
==================================================*/

@media screen and (max-width: 1100px) {

  .nursing-core-learning {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .nursing-core-learning-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nursing-core-learning-header > p {
    max-width: 600px;
  }

  .nursing-core-learning-layout {
    grid-template-columns: .92fr 1.08fr;
  }

  .nursing-core-learning-specialities {
    padding-left: 34px;
    padding-right: 34px;
  }

  .nursing-core-learning-content-inner {
    padding-left: 50px;
  }

}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 880px) {

  .nursing-core-learning {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .nursing-core-learning-layout {
    display: block;
    border-radius: 26px;
  }

  .nursing-core-learning-visual {
    min-height: 610px;
  }

  .nursing-core-learning-specialities {
    padding: 34px 42px 45px;
  }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 650px) {

  .nursing-core-learning {
    padding: 85px 22px;
  }

  .nursing-core-learning-header {
    margin-bottom: 45px;
  }

  .nursing-core-learning-heading h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .nursing-core-learning-layout {
    border-radius: 22px;
  }

  .nursing-core-learning-visual {
    min-height: 480px;
  }

  .nursing-core-learning-image-caption {
    left: 24px;
    right: 70px;
    bottom: 27px;
  }

  .nursing-core-learning-image-caption strong {
    font-size: 2rem;
  }

  .nursing-core-learning-image-index {
    right: 23px;
    bottom: 29px;
  }

  .nursing-core-learning-specialities {
    padding: 24px;
  }

  .nursing-core-learning-trigger {
    min-height: 78px;
    grid-template-columns: 36px minmax(0, 1fr) 25px;
    gap: 10px;
  }

  .nursing-core-learning-name {
    font-size: 1.16rem;
  }

  .nursing-core-learning-content-inner {
    padding-left: 46px;
  }

  .nursing-core-learning-item.active
  .nursing-core-learning-content-inner {
    padding-bottom: 29px;
  }

  .nursing-core-learning-content ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width: 400px) {

  .nursing-core-learning {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nursing-core-learning-visual {
    min-height: 430px;
  }

  .nursing-core-learning-specialities {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nursing-core-learning-content-inner {
    padding-left: 40px;
  }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

  .nursing-core-learning-image,
  .nursing-core-learning-content,
  .nursing-core-learning-content-inner,
  .nursing-core-learning-number,
  .nursing-core-learning-name,
  .nursing-core-learning-symbol::after {
    transition: none !important;
  }

}










/*==================================================
NURSING — CAREER OPPORTUNITIES
==================================================*/

.nursing-careers,
.nursing-careers * {
  box-sizing: border-box;
}

.nursing-careers {
  position: relative;
  padding: 145px 0 135px;
  overflow: hidden;
  background: #06162f;
  color: #ffffff;
}

.nursing-careers-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}


/*==================================================
HEADER
==================================================*/

.nursing-careers-header {
  width: calc(100% - 12vw);
  max-width: 1400px;
  margin: 0 auto 76px;

  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
  gap: 80px;
  align-items: end;
}

.nursing-careers-heading > span {
  display: inline-block;
  margin-bottom: 24px;

  color: #d6ae4c;
  font-size: .74rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.nursing-careers-heading h2 {
  max-width: 1000px;
  margin: 0;

  color: #ffffff;
  font-size: clamp(3.8rem, 6.6vw, 7.6rem);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 850;
}

.nursing-careers-heading h2 em {
  display: block;
  margin-top: 12px;

  color: #d6ae4c;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.nursing-careers-header-side p {
  max-width: 440px;
  margin: 0;

  color: rgba(255, 255, 255, .62);
  font-size: 1rem;
  line-height: 1.82;
}


/*==================================================
CONTROLS
==================================================*/

.nursing-careers-controls {
  margin-top: 30px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.nursing-careers-control {
  width: 54px;
  height: 54px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;

  background: rgba(255, 255, 255, .04);
  color: #ffffff;

  cursor: pointer;

  transition:
    background .35s ease,
    border-color .35s ease,
    color .35s ease,
    transform .35s ease;
}

.nursing-careers-control svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nursing-careers-control:hover {
  border-color: #d6ae4c;
  background: #d6ae4c;
  color: #06162f;
  transform: translateY(-3px);
}

.nursing-careers-control:disabled {
  opacity: .3;
  cursor: not-allowed;
  transform: none;
}


/*==================================================
HORIZONTAL TRACK
==================================================*/

.nursing-careers-track {
  display: flex;
  gap: 24px;

  padding: 0 6vw 28px;

  overflow-x: auto;
  overscroll-behavior-inline: contain;

  scroll-snap-type: x mandatory;
  scroll-padding-left: 6vw;
  scroll-behavior: smooth;

  scrollbar-width: none;
}

.nursing-careers-track::-webkit-scrollbar {
  display: none;
}


/*==================================================
EDITORIAL CARD
==================================================*/

.nursing-career-card {
  position: relative;

  flex: 0 0 min(76vw, 1030px);
  min-height: 690px;

  overflow: hidden;
  border-radius: 34px;

  background: #020814;
  scroll-snap-align: start;
  isolation: isolate;

  box-shadow: 0 38px 100px rgba(0, 0, 0, .3);
}

.nursing-career-card img {
  position: absolute;
  inset: 0;
  z-index: -3;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center;

  transform: scale(1.01);

  transition:
    transform 1.3s cubic-bezier(.2, .7, .2, 1),
    filter .6s ease;
}

.nursing-career-card:hover img {
  transform: scale(1.07);
}


/*==================================================
OVERLAY
==================================================*/

.nursing-career-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(2, 8, 20, .92) 0%,
      rgba(2, 8, 20, .68) 42%,
      rgba(2, 8, 20, .15) 76%,
      rgba(2, 8, 20, .08) 100%
    ),
    linear-gradient(
      0deg,
      rgba(2, 8, 20, .96) 0%,
      rgba(2, 8, 20, .2) 55%,
      rgba(2, 8, 20, .08) 100%
    );

  transition: background .5s ease;
}

.nursing-career-card:hover .nursing-career-card-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(2, 8, 20, .95) 0%,
      rgba(2, 8, 20, .73) 44%,
      rgba(2, 8, 20, .2) 78%,
      rgba(2, 8, 20, .1) 100%
    ),
    linear-gradient(
      0deg,
      rgba(2, 8, 20, .98) 0%,
      rgba(2, 8, 20, .24) 55%,
      rgba(2, 8, 20, .1) 100%
    );
}


/*==================================================
CARD TOP
==================================================*/

.nursing-career-card-top {
  position: absolute;
  top: 38px;
  left: 42px;
  right: 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.nursing-career-card-top span {
  color: #d6ae4c;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nursing-career-card-top strong {
  color: rgba(255, 255, 255, .54);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
}


/*==================================================
CARD CONTENT
==================================================*/

.nursing-career-card-content {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 42px;

  max-width: 660px;

  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.nursing-career-card:hover .nursing-career-card-content {
  transform: translateY(-8px);
}

.nursing-career-card-content::before {
  content: "";

  width: 48px;
  height: 2px;
  margin-bottom: 22px;

  display: block;
  background: #d6ae4c;

  transform: scaleX(.48);
  transform-origin: left;

  transition: transform .5s ease;
}

.nursing-career-card:hover
.nursing-career-card-content::before {
  transform: scaleX(1);
}

.nursing-career-card-content h3 {
  max-width: 650px;
  margin: 0;

  color: #ffffff;
  font-size: clamp(3.2rem, 5.2vw, 6.4rem);
  line-height: .86;
  letter-spacing: -.07em;
  font-weight: 850;
}

.nursing-career-card-content h3 em {
  display: block;
  margin-top: 10px;

  color: #d6ae4c;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.nursing-career-card-content p {
  max-width: 540px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, .72);
  font-size: .98rem;
  line-height: 1.78;
}


/*==================================================
CAREER PATHS
==================================================*/

.nursing-career-card-paths {
  margin-top: 28px;

  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.nursing-career-card-paths span {
  min-height: 37px;
  padding: 0 15px;

  display: inline-flex;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;

  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .82);

  font-size: .7rem;
  font-weight: 750;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


/*==================================================
PROGRESS
==================================================*/

.nursing-careers-progress {
  width: calc(100% - 12vw);
  max-width: 1400px;
  margin: 42px auto 0;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.nursing-careers-progress-track {
  position: relative;

  width: 100%;
  height: 1px;

  overflow: hidden;
  background: rgba(255, 255, 255, .14);
}

.nursing-careers-progress-track span {
  position: absolute;
  inset: 0 auto 0 0;

  width: 16.666%;
  background: #d6ae4c;

  transition:
    width .4s ease,
    transform .4s ease;
}

.nursing-careers-progress-count {
  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, .48);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.nursing-careers-progress-count strong {
  color: #d6ae4c;
  font-weight: 800;
}

.nursing-careers-progress-count i {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 1000px) {

  .nursing-careers {
    padding-top: 110px;
    padding-bottom: 105px;
  }

  .nursing-careers-header {
    width: calc(100% - 10vw);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .nursing-careers-header-side p {
    max-width: 610px;
  }

  .nursing-career-card {
    flex-basis: 82vw;
    min-height: 650px;
  }

  .nursing-careers-track {
    padding-left: 5vw;
    padding-right: 5vw;
    scroll-padding-left: 5vw;
  }

  .nursing-careers-progress {
    width: calc(100% - 10vw);
  }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 650px) {

  .nursing-careers {
    padding: 88px 0 82px;
  }

  .nursing-careers-header {
    width: auto;
    margin: 0 22px 48px;
  }

  .nursing-careers-heading h2 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .nursing-careers-header-side p {
    font-size: .96rem;
    line-height: 1.72;
  }

  .nursing-careers-controls {
    display: none;
  }

  .nursing-careers-track {
    gap: 15px;
    padding: 0 22px 20px;
    scroll-padding-left: 22px;
  }

  .nursing-career-card {
    flex: 0 0 87vw;
    min-height: 620px;
    border-radius: 25px;
  }

  .nursing-career-card-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(2, 8, 20, .98) 0%,
        rgba(2, 8, 20, .72) 50%,
        rgba(2, 8, 20, .12) 100%
      );
  }

  .nursing-career-card-top {
    top: 25px;
    left: 24px;
    right: 24px;
  }

  .nursing-career-card-content {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .nursing-career-card-content h3 {
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }

  .nursing-career-card-content p {
    margin-top: 22px;
    font-size: .91rem;
    line-height: 1.67;
  }

  .nursing-career-card-paths {
    margin-top: 21px;
  }

  .nursing-careers-progress {
    width: auto;
    margin: 30px 22px 0;
  }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width: 400px) {

  .nursing-careers-header {
    margin-left: 18px;
    margin-right: 18px;
  }

  .nursing-careers-track {
    padding-left: 18px;
    padding-right: 18px;
    scroll-padding-left: 18px;
  }

  .nursing-career-card {
    flex-basis: 89vw;
    min-height: 590px;
  }

  .nursing-careers-progress {
    margin-left: 18px;
    margin-right: 18px;
  }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

  .nursing-careers-track {
    scroll-behavior: auto;
  }

  .nursing-career-card img,
  .nursing-career-card-content,
  .nursing-career-card-content::before,
  .nursing-careers-progress-track span {
    transition: none !important;
  }

}






/*==================================================
PROGRAMME INFORMATION
==================================================*/

.nursing-info{

    padding:140px 6vw;

    background:#f7f5ef;

}

.nursing-info-container{

    max-width:1400px;
    margin:auto;

}

.nursing-info-header{

    margin-bottom:70px;

}

.nursing-info-header span{

    display:inline-block;

    margin-bottom:18px;

    color:#b58b2b;

    font-size:.72rem;

    letter-spacing:.22em;

    text-transform:uppercase;

    font-weight:700;

}

.nursing-info-header h2{

    margin:0;

    color:#06162f;

    font-size:clamp(3rem,6vw,6rem);

    line-height:.92;

    letter-spacing:-.06em;

}

.nursing-info-header h2 em{

    display:block;

    margin-top:10px;

    color:#b58b2b;

    font-family:Georgia,serif;

    font-style:italic;

    font-weight:400;

}

.nursing-info-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.nursing-info-card{

    padding:36px;

    background:#fff;

    border-radius:24px;

    transition:.35s;

    border:1px solid rgba(6,22,47,.08);

}

.nursing-info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(6,22,47,.12);

}

.nursing-info-card small{

    display:block;

    margin-bottom:16px;

    color:#b58b2b;

    text-transform:uppercase;

    letter-spacing:.18em;

    font-size:.68rem;

    font-weight:700;

}

.nursing-info-card h3{

    margin:0 0 10px;

    color:#06162f;

    font-size:1.6rem;

    line-height:1.1;

}

.nursing-info-card p{

    margin:0;

    color:#6b7280;

    line-height:1.7;

}

@media(max-width:1100px){

.nursing-info-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.nursing-info{

padding:90px 22px;

}

.nursing-info-grid{

grid-template-columns:1fr;

}

.nursing-info-card{

padding:28px;

}

}






/*==================================================
NURSING FAQ
==================================================*/

.nursing-faq{

padding:140px 6vw;

background:#06162f;

color:#fff;

}

.nursing-faq-container{

max-width:1200px;

margin:auto;

}

.nursing-faq-header{

max-width:720px;

margin-bottom:70px;

}

.nursing-faq-header span{

display:inline-block;

margin-bottom:18px;

color:#d6ae4c;

font-size:.72rem;

letter-spacing:.22em;

text-transform:uppercase;

font-weight:700;

}

.nursing-faq-header h2{

margin:0;

font-size:clamp(3rem,6vw,6rem);

line-height:.9;

letter-spacing:-.06em;

}

.nursing-faq-header h2 em{

display:block;

margin-top:12px;

color:#d6ae4c;

font-family:Georgia,serif;

font-style:italic;

font-weight:400;

}

.nursing-faq-header p{

margin-top:24px;

color:rgba(255,255,255,.65);

line-height:1.8;

}

.nursing-faq-item{

border-top:1px solid rgba(255,255,255,.12);

}

.nursing-faq-item:last-child{

border-bottom:1px solid rgba(255,255,255,.12);

}

.nursing-faq-question{

width:100%;

padding:32px 0;

background:none;

border:none;

display:grid;

grid-template-columns:55px 1fr 30px;

gap:20px;

align-items:center;

cursor:pointer;

color:#fff;

text-align:left;

}

.nursing-faq-question span{

color:#d6ae4c;

font-size:.7rem;

font-weight:700;

letter-spacing:.18em;

}

.nursing-faq-question h3{

margin:0;

font-size:1.45rem;

font-weight:600;

line-height:1.3;

}

.nursing-faq-question i{

position:relative;

width:22px;

height:22px;

}

.nursing-faq-question i::before,

.nursing-faq-question i::after{

content:"";

position:absolute;

top:50%;

left:50%;

background:#d6ae4c;

transform:translate(-50%,-50%);

transition:.35s;

}

.nursing-faq-question i::before{

width:18px;

height:2px;

}

.nursing-faq-question i::after{

width:2px;

height:18px;

}

.nursing-faq-item.active i::after{

transform:translate(-50%,-50%) rotate(90deg);

}

.nursing-faq-answer{

display:grid;

grid-template-rows:0fr;

transition:.45s;

overflow:hidden;

}

.nursing-faq-item.active .nursing-faq-answer{

grid-template-rows:1fr;

}

.nursing-faq-answer p{

overflow:hidden;

margin:0;

padding:0 0 30px 75px;

color:rgba(255,255,255,.72);

line-height:1.9;

max-width:760px;

}

@media(max-width:768px){

.nursing-faq{

padding:90px 22px;

}

.nursing-faq-question{

grid-template-columns:35px 1fr 20px;

gap:12px;

}

.nursing-faq-question h3{

font-size:1.1rem;

}

.nursing-faq-answer p{

padding-left:48px;

}

}








/*==================================================
NURSING CINEMATIC CTA
==================================================*/

.nursing-cta{

position:relative;

height:92vh;

min-height:760px;

overflow:hidden;

background:#06162f;

display:flex;

align-items:center;

justify-content:center;

isolation:isolate;

}

.nursing-cta-bg{

position:absolute;

inset:0;

z-index:-2;

overflow:hidden;

}

.nursing-cta-bg img{

width:100%;

height:100%;

display:block;

object-fit:cover;

object-position:center;

animation:nursingKenBurns 18s ease-in-out infinite alternate;

transform:scale(1.08);

}

.nursing-cta-overlay{

position:absolute;

inset:0;

background:
linear-gradient(90deg,
rgba(6,22,47,.92) 0%,
rgba(6,22,47,.72) 40%,
rgba(6,22,47,.40) 70%,
rgba(6,22,47,.82) 100%),

linear-gradient(180deg,
rgba(6,22,47,.15) 0%,
rgba(6,22,47,.78) 100%);

}

.nursing-cta-content{

width:min(760px,90vw);

margin:auto;

padding:0 20px;

text-align:center;

color:#fff;

}

.nursing-cta-content span{

display:inline-block;

margin-bottom:22px;

color:#d6ae4c;

font-size:.72rem;

font-weight:800;

letter-spacing:.22em;

text-transform:uppercase;

}

.nursing-cta-content h2{

margin:0;

font-size:clamp(3.4rem,8vw,7rem);

line-height:.88;

letter-spacing:-.07em;

font-weight:800;

}

.nursing-cta-content h2 em{

display:block;

margin-top:12px;

color:#d6ae4c;

font-family:"Libre Baskerville",Georgia,serif;

font-style:italic;

font-weight:400;

}

.nursing-cta-content p{

max-width:620px;

margin:34px auto 0;

font-size:1.05rem;

line-height:1.9;

color:rgba(255,255,255,.76);

}

.nursing-cta-buttons{

margin-top:48px;

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:18px;

}

.nursing-btn-primary,

.nursing-btn-secondary{

height:60px;

padding:0 34px;

display:inline-flex;

align-items:center;

justify-content:center;

border-radius:999px;

font-weight:700;

font-size:.95rem;

text-decoration:none;

transition:.4s;

}

.nursing-btn-primary{

background:#d6ae4c;

color:#06162f;

}

.nursing-btn-primary:hover{

background:#fff;

transform:translateY(-4px);

}

.nursing-btn-secondary{

border:1px solid rgba(255,255,255,.28);

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

-webkit-backdrop-filter:blur(12px);

color:#fff;

}

.nursing-btn-secondary:hover{

background:#fff;

color:#06162f;

transform:translateY(-4px);

}

@keyframes nursingKenBurns{

0%{

transform:scale(1.08) translateX(0);

}

100%{

transform:scale(1.16) translateX(-2%);

}

}

@media(max-width:768px){

.nursing-cta{

height:auto;

min-height:680px;

padding:120px 22px;

}

.nursing-cta-content h2{

font-size:clamp(2.9rem,13vw,4.8rem);

}

.nursing-cta-content p{

font-size:.98rem;

line-height:1.8;

}

.nursing-cta-buttons{

flex-direction:column;

}

.nursing-btn-primary,

.nursing-btn-secondary{

width:100%;

}

}





















/*==================================================
MEDICAL LABORATORY SCIENCE — CINEMATIC HERO
PART 1
==================================================*/

.mls-programme-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 150px 6vw 145px;

  display: flex;
  align-items: center;

  overflow: hidden;
  isolation: isolate;

  background: #06162f;
  color: #ffffff;
}


/*==================================================
BACKGROUND PHOTOGRAPHY
==================================================*/

.mls-programme-hero-media {
  position: absolute;
  inset: 0;
  z-index: -5;

  overflow: hidden;
  background: #06162f;
}

.mls-programme-hero-media img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: 68% center;

  transform: scale(1.03);

  animation:
    mlsHeroImageReveal 1.8s cubic-bezier(.2, .7, .2, 1) both,
    mlsHeroImageDrift 18s ease-in-out 1.8s infinite alternate;
}


/*==================================================
CINEMATIC OVERLAY
==================================================*/

.mls-programme-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -4;

  background:
    linear-gradient(
      90deg,
      rgba(3, 12, 27, .99) 0%,
      rgba(4, 16, 35, .94) 28%,
      rgba(6, 22, 47, .74) 52%,
      rgba(6, 22, 47, .24) 78%,
      rgba(6, 22, 47, .08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 12, 27, .3) 0%,
      rgba(3, 12, 27, .08) 50%,
      rgba(3, 12, 27, .9) 100%
    );
}


/*==================================================
SUBTLE TEXTURE
==================================================*/

.mls-programme-hero-grain {
  position: absolute;
  inset: 0;
  z-index: -3;

  pointer-events: none;
  opacity: .05;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.72'/%3E%3C/svg%3E");
}


/*==================================================
CONTAINER
==================================================*/

.mls-programme-hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.mls-programme-hero-content {
  position: relative;
  z-index: 4;

  width: min(830px, 68vw);
}


/*==================================================
PROGRAMME BADGE
==================================================*/

.mls-programme-badge {
  margin-bottom: 28px;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  color: #d6ae4c;

  font-size: .75rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .21em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(22px);

  animation:
    mlsHeroContentReveal .9s .35s ease forwards;
}

.mls-programme-badge-line {
  width: 42px;
  height: 1px;

  display: block;
  flex-shrink: 0;

  background: #d6ae4c;
}


/*==================================================
MAIN HEADING
==================================================*/

.mls-programme-hero-content h1 {
  max-width: 920px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(4.4rem, 8.4vw, 9rem);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 850;

  opacity: 0;
  transform: translateY(45px);

  animation:
    mlsHeroContentReveal 1.1s .5s
    cubic-bezier(.2, .7, .2, 1) forwards;
}


/*==================================================
SIGNATURE STATEMENT
==================================================*/

.mls-programme-statement {
  max-width: 690px;
  margin: 42px 0 0;

  color: #ffffff;

  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  line-height: 1.3;
  letter-spacing: -.035em;

  opacity: 0;
  transform: translateY(34px);

  animation:
    mlsHeroContentReveal 1s .7s ease forwards;
}

.mls-programme-statement span {
  display: block;

  color: #d6ae4c;
  font-style: italic;
}


/*==================================================
DESCRIPTION
==================================================*/

.mls-programme-description {
  max-width: 650px;
  margin: 30px 0 0;

  color: rgba(255, 255, 255, .7);

  font-size: 1.03rem;
  line-height: 1.82;

  opacity: 0;
  transform: translateY(30px);

  animation:
    mlsHeroContentReveal 1s .85s ease forwards;
}


/*==================================================
ACTIONS
==================================================*/

.mls-programme-actions {
  margin-top: 42px;

  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(28px);

  animation:
    mlsHeroContentReveal 1s 1s ease forwards;
}

.mls-programme-btn {
  min-height: 56px;
  padding: 0 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  border-radius: 999px;

  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;

  transition:
    transform .35s cubic-bezier(.2, .7, .2, 1),
    background .35s ease,
    color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.mls-programme-btn svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform .35s ease;
}

.mls-programme-btn.primary {
  border: 1px solid #d6ae4c;
  background: #d6ae4c;
  color: #06162f;

  box-shadow:
    0 20px 55px rgba(214, 174, 76, .26);
}

.mls-programme-btn.secondary {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: #ffffff;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mls-programme-btn:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.mls-programme-btn.primary:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #06162f;

  box-shadow:
    0 28px 70px rgba(214, 174, 76, .34);
}

.mls-programme-btn.primary:hover svg {
  transform: translateX(5px);
}

.mls-programme-btn.secondary:hover {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .14);
  color: #ffffff;
}


/*==================================================
DECORATIVE PROGRAMME CODE
==================================================*/

.mls-programme-code {
  position: absolute;
  top: 145px;
  right: 5vw;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: flex-end;

  opacity: .65;

  animation:
    mlsCodeReveal 1.2s 1.1s ease both;
}

.mls-programme-code span {
  color: rgba(255, 255, 255, .68);

  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .3em;
}

.mls-programme-code strong {
  margin-top: 5px;

  color: #d6ae4c;

  font-size: 1rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .12em;
}


/*==================================================
PROGRAMME SNAPSHOT
==================================================*/

.mls-programme-snapshot {
  position: absolute;
  right: 6vw;
  bottom: 46px;
  z-index: 5;

  width: min(680px, 52vw);

  border-top: 1px solid rgba(255, 255, 255, .2);

  opacity: 0;
  transform: translateY(25px);

  animation:
    mlsHeroContentReveal 1s 1.15s ease forwards;
}

.mls-programme-snapshot-inner {
  display: grid;
  grid-template-columns: .8fr 1.1fr 1.4fr;
}

.mls-programme-snapshot-item {
  position: relative;
  padding: 19px 22px 0;
}

.mls-programme-snapshot-item:first-child {
  padding-left: 0;
}

.mls-programme-snapshot-item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 18px;
  right: 0;

  width: 1px;
  height: 34px;

  background: rgba(255, 255, 255, .16);
}

.mls-programme-snapshot-item span {
  display: block;
  margin-bottom: 7px;

  color: rgba(255, 255, 255, .48);

  font-size: .62rem;
  line-height: 1.4;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mls-programme-snapshot-item strong {
  display: block;

  color: #ffffff;

  font-size: .82rem;
  line-height: 1.4;
  font-weight: 720;
}


/*==================================================
SCROLL CUE
==================================================*/

.mls-programme-scroll {
  position: absolute;
  left: 6vw;
  bottom: 42px;
  z-index: 6;

  display: flex;
  align-items: center;
  gap: 15px;

  color: rgba(255, 255, 255, .62);
  text-decoration: none;
}

.mls-programme-scroll:hover {
  color: #ffffff;
  text-decoration: none;
}

.mls-programme-scroll > span {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mls-programme-scroll-line {
  position: relative;

  width: 65px;
  height: 1px;

  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.mls-programme-scroll-line i {
  position: absolute;
  inset: 0 auto 0 0;

  width: 28px;

  background: #d6ae4c;

  animation:
    mlsScrollLine 2.3s ease-in-out infinite;
}


/*==================================================
ANIMATIONS
==================================================*/

@keyframes mlsHeroImageReveal {
  from {
    opacity: 0;
    transform: scale(1.13);
  }

  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes mlsHeroImageDrift {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes mlsHeroContentReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mlsCodeReveal {
  from {
    opacity: 0;
    transform: translateX(25px);
  }

  to {
    opacity: .65;
    transform: translateX(0);
  }
}

@keyframes mlsScrollLine {
  0% {
    transform: translateX(-110%);
  }

  50% {
    transform: translateX(110%);
  }

  100% {
    transform: translateX(260%);
  }
}


/*==================================================
LARGE LAPTOP
==================================================*/

@media screen and (max-width: 1200px) {

  .mls-programme-hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .mls-programme-hero-content {
    width: min(780px, 72vw);
  }

  .mls-programme-hero-content h1 {
    font-size: clamp(4rem, 8vw, 7.4rem);
  }

  .mls-programme-snapshot {
    right: 5vw;
    width: min(620px, 55vw);
  }

  .mls-programme-scroll {
    left: 5vw;
  }

}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 950px) {

  .mls-programme-hero {
    min-height: 980px;
    padding: 145px 5vw 210px;

    align-items: center;
  }

  .mls-programme-hero-media img {
    object-position: 65% center;
  }

  .mls-programme-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(3, 12, 27, .98) 0%,
        rgba(4, 16, 35, .86) 48%,
        rgba(6, 22, 47, .35) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 12, 27, .2) 0%,
        rgba(3, 12, 27, .18) 45%,
        rgba(3, 12, 27, .94) 100%
      );
  }

  .mls-programme-hero-content {
    width: min(720px, 84vw);
  }

  .mls-programme-hero-content h1 {
    font-size: clamp(4rem, 10vw, 6.8rem);
  }

  .mls-programme-snapshot {
    left: 5vw;
    right: 5vw;
    bottom: 65px;

    width: auto;
  }

  .mls-programme-scroll {
    display: none;
  }

}





/*==================================================
MEDICAL LABORATORY SCIENCE — CINEMATIC HERO
PART 2
==================================================*/


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 650px) {

  .mls-programme-hero {
    min-height: 980px;
    padding: 135px 22px 255px;

    align-items: flex-end;
  }

  .mls-programme-hero-media img {
    object-position: 62% center;
  }

  .mls-programme-hero-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(3, 12, 27, .99) 0%,
        rgba(3, 12, 27, .95) 36%,
        rgba(6, 22, 47, .6) 69%,
        rgba(6, 22, 47, .18) 100%
      );
  }

  .mls-programme-code {
    top: 115px;
    right: 22px;
  }

  .mls-programme-hero-content {
    width: 100%;
  }

  .mls-programme-badge {
    max-width: 300px;
    margin-bottom: 23px;

    align-items: flex-start;

    font-size: .64rem;
    line-height: 1.55;
    letter-spacing: .17em;
  }

  .mls-programme-badge-line {
    flex: 0 0 26px;
    margin-top: .48em;
  }

  .mls-programme-hero-content h1 {
    max-width: 100%;

    font-size: clamp(3.25rem, 15.5vw, 5.35rem);
    line-height: .9;
    letter-spacing: -.065em;
  }

  .mls-programme-statement {
    margin-top: 31px;

    font-size: clamp(1.4rem, 6.7vw, 1.95rem);
    line-height: 1.35;
  }

  .mls-programme-description {
    margin-top: 22px;

    font-size: .96rem;
    line-height: 1.72;
  }

  .mls-programme-actions {
    margin-top: 32px;

    flex-direction: column;
    align-items: stretch;
  }

  .mls-programme-btn {
    width: 100%;
  }

  .mls-programme-snapshot {
    left: 22px;
    right: 22px;
    bottom: 30px;
  }

  .mls-programme-snapshot-inner {
    grid-template-columns: 1fr 1fr;
  }

  .mls-programme-snapshot-item {
    padding: 16px 14px 0;
  }

  .mls-programme-snapshot-item:first-child {
    padding-left: 0;
  }

  .mls-programme-snapshot-item:nth-child(2)::after {
    display: none;
  }

  .mls-programme-snapshot-item:last-child {
    grid-column: 1 / -1;

    padding-left: 0;
    padding-top: 18px;
  }

  .mls-programme-snapshot-item:last-child::before {
    content: "";

    position: absolute;
    top: 8px;
    left: 0;
    right: 0;

    height: 1px;

    background: rgba(255, 255, 255, .13);
  }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width: 400px) {

  .mls-programme-hero {
    min-height: 1020px;

    padding-left: 18px;
    padding-right: 18px;
  }

  .mls-programme-code {
    right: 18px;
  }

  .mls-programme-snapshot {
    left: 18px;
    right: 18px;
  }

  .mls-programme-hero-content h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .mls-programme-statement {
    font-size: clamp(1.32rem, 6.5vw, 1.75rem);
  }

  .mls-programme-description {
    font-size: .92rem;
  }

  .mls-programme-btn {
    min-height: 54px;
    padding-left: 22px;
    padding-right: 22px;
  }

}


/*==================================================
VERY SMALL MOBILE
==================================================*/

@media screen and (max-width: 340px) {

  .mls-programme-hero {
    min-height: 1050px;
    padding-bottom: 265px;
  }

  .mls-programme-hero-content h1 {
    font-size: 2.75rem;
  }

  .mls-programme-badge {
    font-size: .59rem;
  }

  .mls-programme-description {
    line-height: 1.65;
  }

  .mls-programme-snapshot-item strong {
    font-size: .76rem;
  }

}


/*==================================================
LANDSCAPE MOBILE
==================================================*/

@media screen and (max-height: 620px) and (orientation: landscape) {

  .mls-programme-hero {
    min-height: 780px;
    padding-top: 120px;
    padding-bottom: 190px;
  }

  .mls-programme-hero-content {
    width: min(720px, 76vw);
  }

  .mls-programme-hero-content h1 {
    font-size: clamp(3.4rem, 8vw, 5.8rem);
  }

  .mls-programme-statement {
    margin-top: 24px;
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  }

  .mls-programme-description {
    margin-top: 18px;
    line-height: 1.65;
  }

  .mls-programme-actions {
    margin-top: 26px;
  }

  .mls-programme-snapshot {
    bottom: 26px;
  }

}


/*==================================================
FOCUS STATES
==================================================*/

.mls-programme-btn:focus-visible,
.mls-programme-scroll:focus-visible {
  outline: 3px solid rgba(214, 174, 76, .72);
  outline-offset: 5px;
}


/*==================================================
TEXT SELECTION
==================================================*/

.mls-programme-hero ::selection {
  background: #d6ae4c;
  color: #06162f;
}


/*==================================================
REDUCED MOTION ACCESSIBILITY
==================================================*/

@media (prefers-reduced-motion: reduce) {

  .mls-programme-hero-media img,
  .mls-programme-badge,
  .mls-programme-hero-content h1,
  .mls-programme-statement,
  .mls-programme-description,
  .mls-programme-actions,
  .mls-programme-snapshot,
  .mls-programme-code,
  .mls-programme-scroll-line i {
    animation: none !important;
    transition: none !important;
  }

  .mls-programme-hero-media img {
    opacity: 1;
    transform: none;
  }

  .mls-programme-badge,
  .mls-programme-hero-content h1,
  .mls-programme-statement,
  .mls-programme-description,
  .mls-programme-actions,
  .mls-programme-snapshot {
    opacity: 1;
    transform: none;
  }

  .mls-programme-code {
    opacity: .65;
    transform: none;
  }

  .mls-programme-btn:hover {
    transform: none;
  }

}


/*==================================================
HIGH-CONTRAST SUPPORT
==================================================*/

@media (forced-colors: active) {

  .mls-programme-btn {
    border: 1px solid currentColor;
  }

  .mls-programme-btn.primary,
  .mls-programme-btn.secondary {
    background: Canvas;
    color: CanvasText;
  }

  .mls-programme-badge-line,
  .mls-programme-scroll-line i {
    background: currentColor;
  }

}


/*==================================================
PRINT
==================================================*/

@media print {

  .mls-programme-hero {
    min-height: auto;
    padding: 60px 40px;

    background: #ffffff;
    color: #06162f;
  }

  .mls-programme-hero-media,
  .mls-programme-hero-overlay,
  .mls-programme-hero-grain,
  .mls-programme-code,
  .mls-programme-snapshot,
  .mls-programme-scroll {
    display: none;
  }

  .mls-programme-hero-content {
    width: 100%;
  }

  .mls-programme-badge,
  .mls-programme-hero-content h1,
  .mls-programme-statement,
  .mls-programme-description,
  .mls-programme-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .mls-programme-hero-content h1,
  .mls-programme-statement {
    color: #06162f;
  }

  .mls-programme-description {
    color: rgba(6, 22, 47, .75);
  }

  .mls-programme-actions {
    display: none;
  }

}






/*==================================================
MEDICAL LABORATORY SCIENCE — ABOUT THE PROGRAMME
==================================================*/

.mls-about {
    position: relative;
    padding: 130px 6vw 145px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(214, 174, 76, .08),
            transparent 28%
        ),
        #ffffff;

    color: #06162f;
}

.mls-about::before {
    content: "";

    position: absolute;
    top: 0;
    left: 6vw;
    right: 6vw;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(6, 22, 47, .15),
        transparent
    );
}

.mls-about-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/*==================================================
SECTION HEADER
==================================================*/

.mls-about-header {
    max-width: 1050px;
    margin-bottom: 80px;
}

.mls-about-label {
    margin-bottom: 26px;

    display: flex;
    align-items: center;
    gap: 14px;

    color: #b58b2b;

    font-size: .72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.mls-about-label span {
    width: 44px;
    height: 1px;

    display: block;

    background: #b58b2b;
}

.mls-about-header h2 {
    max-width: 980px;
    margin: 0;

    color: #06162f;

    font-size: clamp(3.2rem, 6.8vw, 7.3rem);
    line-height: .94;
    font-weight: 800;
    letter-spacing: -.065em;
}

.mls-about-header h2 em {
    display: block;

    color: #b58b2b;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}


/*==================================================
EDITORIAL LAYOUT
==================================================*/

.mls-about-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: clamp(55px, 8vw, 125px);
    align-items: center;
}


/*==================================================
IMAGE
==================================================*/

.mls-about-visual {
    position: relative;
    padding: 0 0 62px 48px;
}

.mls-about-image {
    position: relative;

    min-height: 680px;

    overflow: hidden;

    border-radius: 4px 4px 120px 4px;

    background: #e8ebef;

    box-shadow:
        0 38px 90px rgba(6, 22, 47, .17);
}

.mls-about-image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(6, 22, 47, .22) 100%
        );
}

.mls-about-image img {
    width: 100%;
    height: 100%;
    min-height: 680px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.mls-about-visual:hover .mls-about-image img {
    transform: scale(1.045);
}

.mls-about-image-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;

    width: min(310px, 72%);
    min-height: 145px;
    padding: 27px 31px;

    display: flex;
    align-items: flex-start;
    gap: 22px;

    background: #06162f;
    color: #ffffff;

    box-shadow:
        0 24px 60px rgba(6, 22, 47, .22);
}

.mls-about-image-caption span {
    color: #d6ae4c;

    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .18em;
}

.mls-about-image-caption p {
    margin: 0;

    color: #ffffff;

    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.55;
}

.mls-about-accent {
    position: absolute;
    right: -18px;
    top: 70px;
    z-index: -1;

    width: 78px;
    height: 280px;

    border: 1px solid rgba(181, 139, 43, .45);
}


/*==================================================
CONTENT
==================================================*/

.mls-about-content {
    max-width: 590px;
}

.mls-about-lead {
    margin: 0 0 30px;

    color: #06162f;

    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(1.55rem, 2.25vw, 2.3rem);
    line-height: 1.48;
    letter-spacing: -.025em;
}

.mls-about-copy {
    margin: 0 0 24px;

    color: rgba(6, 22, 47, .68);

    font-size: 1rem;
    line-height: 1.9;
}

.mls-about-quote {
    position: relative;

    margin-top: 46px;
    padding: 30px 0 6px 37px;

    border-left: 2px solid #d6ae4c;
}

.mls-about-quote-mark {
    position: absolute;
    top: -15px;
    left: 25px;

    color: rgba(214, 174, 76, .22);

    font-family: Georgia, serif;
    font-size: 6.5rem;
    line-height: 1;
}

.mls-about-quote p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #06162f;

    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 1.22rem;
    line-height: 1.65;
    font-style: italic;
}


/*==================================================
PROGRAMME FOCUS
==================================================*/

.mls-about-focus {
    margin-top: 145px;
    padding-top: 85px;

    border-top: 1px solid rgba(6, 22, 47, .12);
}

.mls-about-focus-heading {
    margin-bottom: 58px;

    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 45px;
    align-items: start;
}

.mls-about-focus-heading > span {
    padding-top: 11px;

    color: #b58b2b;

    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.mls-about-focus-heading h3 {
    max-width: 780px;
    margin: 0;

    color: #06162f;

    font-size: clamp(2.45rem, 4.6vw, 5rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.055em;
}

.mls-about-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid rgba(6, 22, 47, .12);
    border-left: 1px solid rgba(6, 22, 47, .12);
}

.mls-about-focus-card {
    position: relative;

    min-height: 345px;
    padding: 38px 34px 36px;

    overflow: hidden;

    border-right: 1px solid rgba(6, 22, 47, .12);
    border-bottom: 1px solid rgba(6, 22, 47, .12);

    background: rgba(255, 255, 255, .78);

    transition:
        transform .4s cubic-bezier(.2, .7, .2, 1),
        background .4s ease,
        box-shadow .4s ease;
}

.mls-about-focus-card::before {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 4px;

    background: #d6ae4c;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .4s ease;
}

.mls-about-focus-card:hover {
    z-index: 3;

    transform: translateY(-8px);

    background: #06162f;

    box-shadow:
        0 28px 70px rgba(6, 22, 47, .18);
}

.mls-about-focus-card:hover::before {
    transform: scaleX(1);
}

.mls-about-focus-number {
    position: absolute;
    top: 26px;
    right: 27px;

    color: rgba(6, 22, 47, .26);

    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .15em;

    transition: color .35s ease;
}

.mls-about-focus-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(181, 139, 43, .35);
    border-radius: 50%;

    color: #b58b2b;

    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease,
        transform .35s ease;
}

.mls-about-focus-icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mls-about-focus-card h4 {
    margin: 0 0 17px;

    color: #06162f;

    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 800;

    transition: color .35s ease;
}

.mls-about-focus-card p {
    max-width: 320px;
    margin: 0;

    color: rgba(6, 22, 47, .62);

    font-size: .91rem;
    line-height: 1.75;

    transition: color .35s ease;
}

.mls-about-focus-card:hover .mls-about-focus-number {
    color: rgba(255, 255, 255, .35);
}

.mls-about-focus-card:hover .mls-about-focus-icon {
    transform: rotate(-7deg);

    border-color: #d6ae4c;
    background: #d6ae4c;
    color: #06162f;
}

.mls-about-focus-card:hover h4 {
    color: #ffffff;
}

.mls-about-focus-card:hover p {
    color: rgba(255, 255, 255, .67);
}


/*==================================================
SCROLL REVEAL
==================================================*/

.mls-about-reveal {
    opacity: 0;
    transform: translateY(38px);

    transition:
        opacity .85s ease,
        transform .85s cubic-bezier(.2, .7, .2, 1);
}

.mls-about-reveal.mls-about-visible {
    opacity: 1;
    transform: translateY(0);
}

.mls-about-focus-card:nth-child(2) {
    transition-delay: .08s;
}

.mls-about-focus-card:nth-child(3) {
    transition-delay: .16s;
}

.mls-about-focus-card:nth-child(4) {
    transition-delay: .08s;
}

.mls-about-focus-card:nth-child(5) {
    transition-delay: .16s;
}

.mls-about-focus-card:nth-child(6) {
    transition-delay: .24s;
}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 1050px) {

    .mls-about {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .mls-about-editorial {
        grid-template-columns: 1fr 1fr;
        gap: 55px;
    }

    .mls-about-image,
    .mls-about-image img {
        min-height: 610px;
    }

    .mls-about-focus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/*==================================================
SMALL TABLET
==================================================*/

@media screen and (max-width: 820px) {

    .mls-about {
        padding-top: 100px;
        padding-bottom: 110px;
    }

    .mls-about-header {
        margin-bottom: 58px;
    }

    .mls-about-editorial {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .mls-about-visual {
        max-width: 680px;
        padding-left: 34px;
    }

    .mls-about-content {
        max-width: 680px;
    }

    .mls-about-focus {
        margin-top: 105px;
        padding-top: 65px;
    }

    .mls-about-focus-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 600px) {

    .mls-about {
        padding: 84px 22px 95px;
    }

    .mls-about::before {
        left: 22px;
        right: 22px;
    }

    .mls-about-header h2 {
        font-size: clamp(2.7rem, 13vw, 4rem);
        line-height: .96;
    }

    .mls-about-label {
        font-size: .64rem;
        letter-spacing: .16em;
    }

    .mls-about-label span {
        width: 30px;
    }

    .mls-about-visual {
        padding: 0 0 74px;
    }

    .mls-about-image {
        min-height: 500px;
        border-radius: 3px 3px 75px 3px;
    }

    .mls-about-image img {
        min-height: 500px;
    }

    .mls-about-image-caption {
        width: 88%;
        min-height: 130px;
        padding: 24px;
    }

    .mls-about-accent {
        display: none;
    }

    .mls-about-lead {
        font-size: 1.38rem;
    }

    .mls-about-copy {
        font-size: .95rem;
        line-height: 1.78;
    }

    .mls-about-quote {
        padding-left: 27px;
    }

    .mls-about-quote p {
        font-size: 1.08rem;
    }

    .mls-about-focus {
        margin-top: 85px;
        padding-top: 52px;
    }

    .mls-about-focus-heading {
        margin-bottom: 40px;
    }

    .mls-about-focus-heading h3 {
        font-size: clamp(2.25rem, 10vw, 3.4rem);
    }

    .mls-about-focus-grid {
        grid-template-columns: 1fr;
    }

    .mls-about-focus-card {
        min-height: 310px;
        padding: 33px 28px;
    }

    .mls-about-focus-icon {
        margin-bottom: 45px;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .mls-about-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mls-about-image img,
    .mls-about-focus-card,
    .mls-about-focus-icon {
        transition: none;
    }

}








/*==================================================
MEDICAL LABORATORY SCIENCE — PROFESSIONAL JOURNEY
==================================================*/

.mls-journey {
    position: relative;
    padding: 135px 6vw 150px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(214, 174, 76, 0.12),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #06162f 0%,
            #081d3b 55%,
            #06162f 100%
        );

    color: #ffffff;
}

.mls-journey::before {
    content: "";

    position: absolute;
    top: 0;
    right: 8%;
    z-index: 0;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(214, 174, 76, 0.11);
    border-radius: 50%;

    transform: translateY(-58%);
}

.mls-journey::after {
    content: "";

    position: absolute;
    left: -150px;
    bottom: -210px;
    z-index: 0;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.mls-journey-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/*==================================================
SECTION HEADER
==================================================*/

.mls-journey-header {
    max-width: 1050px;
    margin-bottom: 90px;
}

.mls-journey-label {
    margin-bottom: 27px;

    display: flex;
    align-items: center;
    gap: 14px;

    color: #d6ae4c;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mls-journey-label span {
    width: 44px;
    height: 1px;

    display: block;
    flex-shrink: 0;

    background: #d6ae4c;
}

.mls-journey-header h2 {
    max-width: 1040px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(3.2rem, 6.5vw, 7rem);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.mls-journey-header h2 em {
    color: #d6ae4c;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}

.mls-journey-header > p {
    max-width: 720px;
    margin: 36px 0 0;

    color: rgba(255, 255, 255, 0.64);

    font-size: 1.03rem;
    line-height: 1.85;
}


/*==================================================
TIMELINE
==================================================*/

.mls-journey-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mls-journey-timeline::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 0;

    width: 0;
    height: 1px;

    background: #d6ae4c;

    transition: width 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mls-journey-timeline.mls-journey-timeline-visible::before {
    width: 100%;
}


/*==================================================
TIMELINE CARDS
==================================================*/

.mls-journey-card {
    position: relative;

    min-height: 430px;
    padding: 45px 34px 40px;

    border-right: 1px solid rgba(255, 255, 255, 0.11);

    transition:
        transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.mls-journey-card:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.mls-journey-card::before {
    content: "";

    position: absolute;
    top: -7px;
    left: 34px;

    width: 13px;
    height: 13px;

    border: 3px solid #06162f;
    border-radius: 50%;

    background: #d6ae4c;

    box-shadow:
        0 0 0 1px rgba(214, 174, 76, 0.75),
        0 0 24px rgba(214, 174, 76, 0.35);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.mls-journey-card::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 4px;

    background: #d6ae4c;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.42s ease;
}

.mls-journey-card:hover {
    z-index: 3;

    transform: translateY(-10px);

    background: rgba(255, 255, 255, 0.055);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.19);
}

.mls-journey-card:hover::before {
    transform: scale(1.25);

    box-shadow:
        0 0 0 1px rgba(214, 174, 76, 0.9),
        0 0 30px rgba(214, 174, 76, 0.58);
}

.mls-journey-card:hover::after {
    transform: scaleX(1);
}


/*==================================================
STAGE NUMBER
==================================================*/

.mls-journey-number {
    display: inline-block;
    margin-bottom: 68px;

    color: rgba(214, 174, 76, 0.82);

    font-size: 0.74rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.mls-journey-number::before {
    content: "STAGE";

    margin-right: 10px;

    color: rgba(255, 255, 255, 0.37);

    font-size: 0.59rem;
    letter-spacing: 0.17em;
}


/*==================================================
DECORATIVE LINE
==================================================*/

.mls-journey-line {
    width: 52px;
    height: 1px;
    margin-bottom: 30px;

    background: rgba(214, 174, 76, 0.7);

    transition: width 0.4s ease;
}

.mls-journey-card:hover .mls-journey-line {
    width: 86px;
}


/*==================================================
CARD CONTENT
==================================================*/

.mls-journey-card h3 {
    max-width: 270px;
    margin: 0 0 23px;

    color: #ffffff;

    font-size: clamp(1.35rem, 1.8vw, 1.8rem);
    line-height: 1.25;
    font-weight: 760;
    letter-spacing: -0.025em;
}

.mls-journey-card p {
    max-width: 310px;
    margin: 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.92rem;
    line-height: 1.78;

    transition: color 0.35s ease;
}

.mls-journey-card:hover p {
    color: rgba(255, 255, 255, 0.75);
}


/*==================================================
REVEAL ANIMATION
==================================================*/

.mls-journey-reveal {
    opacity: 0;
    transform: translateY(42px);

    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mls-journey-reveal.mls-journey-visible {
    opacity: 1;
    transform: translateY(0);
}

.mls-journey-card:nth-child(1) {
    transition-delay: 0.05s;
}

.mls-journey-card:nth-child(2) {
    transition-delay: 0.15s;
}

.mls-journey-card:nth-child(3) {
    transition-delay: 0.25s;
}

.mls-journey-card:nth-child(4) {
    transition-delay: 0.35s;
}


/*==================================================
LARGE TABLET
==================================================*/

@media screen and (max-width: 1100px) {

    .mls-journey {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .mls-journey-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    .mls-journey-timeline::before {
        top: 0;
        left: -1px;

        width: 1px;
        height: 0;

        transition: height 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
    }

    .mls-journey-timeline.mls-journey-timeline-visible::before {
        width: 1px;
        height: 100%;
    }

    .mls-journey-card {
        min-height: 370px;

        border-top: 1px solid rgba(255, 255, 255, 0.11);
        border-right: 1px solid rgba(255, 255, 255, 0.11);
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

    .mls-journey-card:first-child {
        border-left: none;
    }

    .mls-journey-card::before {
        top: 35px;
        left: -7px;
    }

    .mls-journey-number {
        margin-bottom: 58px;
    }

}


/*==================================================
SMALL TABLET
==================================================*/

@media screen and (max-width: 780px) {

    .mls-journey {
        padding-top: 105px;
        padding-bottom: 115px;
    }

    .mls-journey-header {
        margin-bottom: 70px;
    }

    .mls-journey-header h2 {
        font-size: clamp(3rem, 10vw, 5.2rem);
    }

    .mls-journey-timeline {
        grid-template-columns: 1fr;
    }

    .mls-journey-card {
        min-height: auto;
        padding: 38px 34px 48px;
    }

    .mls-journey-card h3,
    .mls-journey-card p {
        max-width: 650px;
    }

    .mls-journey-number {
        margin-bottom: 48px;
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 600px) {

    .mls-journey {
        padding: 88px 22px 96px;
    }

    .mls-journey::before {
        width: 280px;
        height: 280px;
    }

    .mls-journey-label {
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .mls-journey-label span {
        width: 30px;
    }

    .mls-journey-header h2 {
        font-size: clamp(2.65rem, 12vw, 4rem);
        line-height: 0.98;
    }

    .mls-journey-header > p {
        margin-top: 27px;

        font-size: 0.95rem;
        line-height: 1.75;
    }

    .mls-journey-timeline {
        margin-left: 7px;
    }

    .mls-journey-card {
        padding: 36px 22px 43px 30px;
    }

    .mls-journey-card::before {
        top: 32px;
    }

    .mls-journey-number {
        margin-bottom: 41px;
    }

    .mls-journey-card h3 {
        font-size: 1.45rem;
    }

    .mls-journey-card p {
        font-size: 0.9rem;
        line-height: 1.72;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .mls-journey-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mls-journey-timeline::before {
        width: 100%;
        transition: none;
    }

    .mls-journey-card,
    .mls-journey-card::before,
    .mls-journey-card::after,
    .mls-journey-line {
        transition: none;
    }

}


/*==================================================
PRINT
==================================================*/

@media print {

    .mls-journey {
        padding: 60px 40px;

        background: #ffffff;
        color: #06162f;
    }

    .mls-journey::before,
    .mls-journey::after {
        display: none;
    }

    .mls-journey-header h2,
    .mls-journey-card h3 {
        color: #06162f;
    }

    .mls-journey-header > p,
    .mls-journey-card p {
        color: rgba(6, 22, 47, 0.7);
    }

    .mls-journey-timeline {
        border-color: rgba(6, 22, 47, 0.2);
    }

    .mls-journey-card {
        border-color: rgba(6, 22, 47, 0.2);
        break-inside: avoid;
    }

    .mls-journey-reveal {
        opacity: 1;
        transform: none;
    }

}








/*==================================================
MEDICAL LABORATORY SCIENCE — WHAT YOU'LL LEARN
PART 1
==================================================*/

.mls-learning {
    position: relative;
    padding: 140px 6vw 150px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(214, 174, 76, 0.08),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #f8f9fb 0%,
            #ffffff 48%,
            #f7f8fa 100%
        );

    color: #06162f;
}

.mls-learning::before {
    content: "";

    position: absolute;
    top: 0;
    right: 8%;
    z-index: 0;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(6, 22, 47, 0.055);
    border-radius: 50%;

    transform: translateY(-62%);
}

.mls-learning::after {
    content: "";

    position: absolute;
    left: 6vw;
    right: 6vw;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(6, 22, 47, 0.13),
        transparent
    );
}

.mls-learning-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}


/*==================================================
SECTION HEADER
==================================================*/

.mls-learning-header {
    margin-bottom: 85px;
}

.mls-learning-label {
    margin-bottom: 27px;

    display: flex;
    align-items: center;
    gap: 14px;

    color: #b58b2b;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mls-learning-label > span {
    width: 44px;
    height: 1px;

    display: block;
    flex-shrink: 0;

    background: #b58b2b;
}

.mls-learning-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: end;
}

.mls-learning-heading-grid h2 {
    max-width: 960px;
    margin: 0;

    color: #06162f;

    font-size: clamp(3.2rem, 6.2vw, 6.8rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.mls-learning-heading-grid h2 em {
    display: block;

    color: #b58b2b;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}

.mls-learning-heading-grid > p {
    max-width: 470px;
    margin: 0 0 8px;

    color: rgba(6, 22, 47, 0.65);

    font-size: 1rem;
    line-height: 1.85;
}


/*==================================================
MAIN INTERACTIVE LAYOUT
==================================================*/

.mls-learning-layout {
    display: grid;
    grid-template-columns:
        minmax(390px, 0.92fr)
        minmax(500px, 1.08fr);

    gap: clamp(55px, 7vw, 110px);
    align-items: start;
}


/*==================================================
IMAGE PANEL
==================================================*/

.mls-learning-visual {
    position: sticky;
    top: 120px;

    min-height: 720px;
}

.mls-learning-image-stack {
    position: relative;

    width: 100%;
    min-height: 720px;

    overflow: hidden;

    border-radius: 4px 4px 120px 4px;

    background:
        linear-gradient(
            145deg,
            #dfe4e9,
            #f3f5f7
        );

    box-shadow:
        0 38px 95px rgba(6, 22, 47, 0.17);
}

.mls-learning-image {
    position: absolute;
    inset: 0;

    margin: 0;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.07);

    transition:
        opacity 0.75s ease,
        visibility 0.75s ease,
        transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mls-learning-image::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.03) 28%,
            rgba(6, 22, 47, 0.13) 64%,
            rgba(6, 22, 47, 0.78) 100%
        );
}

.mls-learning-image.is-active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}

.mls-learning-image img {
    width: 100%;
    height: 100%;
    min-height: 720px;

    display: block;

    object-fit: cover;
    object-position: center;
}


/*==================================================
IMAGE INFORMATION OVERLAY
==================================================*/

.mls-learning-visual-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;

    min-height: 175px;
    padding: 36px 38px;

    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;

    color: #ffffff;
}

.mls-learning-visual-number {
    padding-top: 7px;

    color: #d6ae4c;

    font-size: 0.67rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.mls-learning-visual-eyebrow {
    display: block;
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.62rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.mls-learning-visual-title {
    max-width: 390px;
    margin: 0;

    color: #ffffff;

    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.3;
    font-weight: 400;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.mls-learning-visual-title.is-changing {
    opacity: 0;
    transform: translateY(8px);
}


/*==================================================
DECORATIVE IMAGE ACCENT
==================================================*/

.mls-learning-visual-accent {
    position: absolute;
    right: -20px;
    top: 70px;
    z-index: -1;

    width: 88px;
    height: 305px;

    border-top: 1px solid rgba(181, 139, 43, 0.47);
    border-right: 1px solid rgba(181, 139, 43, 0.47);
    border-bottom: 1px solid rgba(181, 139, 43, 0.47);
}


/*==================================================
ACCORDION WRAPPER
==================================================*/

.mls-learning-accordion {
    border-top: 1px solid rgba(6, 22, 47, 0.14);
}


/*==================================================
ACCORDION ITEM
==================================================*/

.mls-learning-item {
    position: relative;

    border-bottom: 1px solid rgba(6, 22, 47, 0.14);

    transition:
        background 0.4s ease,
        padding 0.4s ease;
}

.mls-learning-item::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: #d6ae4c;

    transform: scaleY(0);
    transform-origin: top;

    transition: transform 0.42s ease;
}

.mls-learning-item.is-active {
    padding-left: 27px;

    background:
        linear-gradient(
            90deg,
            rgba(214, 174, 76, 0.09),
            rgba(214, 174, 76, 0.015) 60%,
            transparent
        );
}

.mls-learning-item.is-active::before {
    transform: scaleY(1);
}


/*==================================================
ACCORDION TRIGGER
==================================================*/

.mls-learning-trigger {
    width: 100%;
    min-height: 112px;
    padding: 28px 0;

    display: grid;
    grid-template-columns: 48px 1fr 42px;
    gap: 18px;
    align-items: center;

    border: 0;

    background: transparent;
    color: #06162f;

    font: inherit;
    text-align: left;

    cursor: pointer;

    transition:
        color 0.35s ease,
        padding 0.4s ease;
}

.mls-learning-trigger:hover {
    color: #b58b2b;
}

.mls-learning-trigger:focus-visible {
    outline: 3px solid rgba(214, 174, 76, 0.45);
    outline-offset: 5px;
}

.mls-learning-index {
    color: rgba(6, 22, 47, 0.38);

    font-size: 0.66rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;

    transition: color 0.35s ease;
}

.mls-learning-item.is-active .mls-learning-index {
    color: #b58b2b;
}

.mls-learning-trigger-title {
    max-width: 520px;

    color: inherit;

    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 1.3;
    font-weight: 760;
    letter-spacing: -0.025em;
}


/*==================================================
PLUS / MINUS ICON
==================================================*/

.mls-learning-toggle {
    position: relative;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(6, 22, 47, 0.17);
    border-radius: 50%;

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.4s ease;
}

.mls-learning-toggle i {
    position: absolute;

    width: 14px;
    height: 1px;

    display: block;

    background: #06162f;

    transition:
        transform 0.4s ease,
        background 0.35s ease;
}

.mls-learning-toggle i:last-child {
    transform: rotate(90deg);
}

.mls-learning-item.is-active .mls-learning-toggle {
    border-color: #d6ae4c;
    background: #d6ae4c;

    transform: rotate(180deg);
}

.mls-learning-item.is-active .mls-learning-toggle i {
    background: #06162f;
}

.mls-learning-item.is-active .mls-learning-toggle i:last-child {
    transform: rotate(0deg);
}


/*==================================================
ACCORDION PANEL
==================================================*/

.mls-learning-panel {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
        opacity 0.4s ease;
}

.mls-learning-item.is-active .mls-learning-panel {
    opacity: 1;
}

.mls-learning-panel-inner {
    padding:
        0
        62px
        39px
        66px;
}

.mls-learning-panel-inner > p {
    max-width: 610px;
    margin: 0 0 23px;

    color: rgba(6, 22, 47, 0.67);

    font-size: 0.97rem;
    line-height: 1.82;
}

.mls-learning-panel-inner ul {
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 25px;

    list-style: none;
}

.mls-learning-panel-inner li {
    position: relative;

    padding-left: 21px;

    color: rgba(6, 22, 47, 0.75);

    font-size: 0.86rem;
    line-height: 1.55;
    font-weight: 650;
}

.mls-learning-panel-inner li::before {
    content: "";

    position: absolute;
    top: 0.64em;
    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d6ae4c;

    box-shadow:
        0 0 0 4px rgba(214, 174, 76, 0.12);
}





/*==================================================
MEDICAL LABORATORY SCIENCE — WHAT YOU'LL LEARN
PART 2
==================================================*/


/*==================================================
REVEAL ANIMATION
==================================================*/

.mls-learning-reveal{
    opacity:0;
    transform:translateY(45px);
    transition:
        opacity .85s ease,
        transform .85s cubic-bezier(.2,.7,.2,1);
}

.mls-learning-reveal.mls-learning-visible{
    opacity:1;
    transform:translateY(0);
}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width:1150px){

    .mls-learning{
        padding-left:5vw;
        padding-right:5vw;
    }

    .mls-learning-heading-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .mls-learning-layout{
        grid-template-columns:1fr;
        gap:70px;
    }

    .mls-learning-visual{
        position:relative;
        top:auto;

        max-width:760px;
    }

    .mls-learning-image-stack,
    .mls-learning-image img{
        min-height:620px;
    }

}


/*==================================================
SMALL TABLET
==================================================*/

@media screen and (max-width:820px){

    .mls-learning{

        padding-top:105px;
        padding-bottom:115px;

    }

    .mls-learning-header{

        margin-bottom:60px;

    }

    .mls-learning-heading-grid h2{

        font-size:clamp(2.8rem,10vw,5rem);

    }

    .mls-learning-panel-inner{

        padding:
            0
            0
            35px
            66px;

    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width:650px){

    .mls-learning{

        padding:90px 22px;

    }

    .mls-learning::after{

        left:22px;
        right:22px;

    }

    .mls-learning-label{

        font-size:.64rem;
        letter-spacing:.16em;

    }

    .mls-learning-label span{

        width:30px;

    }

    .mls-learning-heading-grid h2{

        font-size:clamp(2.55rem,12vw,4rem);

    }

    .mls-learning-heading-grid>p{

        font-size:.95rem;
        line-height:1.75;

    }

    .mls-learning-image-stack,
    .mls-learning-image img{

        min-height:500px;

        border-radius:4px 4px 75px 4px;

    }

    .mls-learning-visual-overlay{

        min-height:145px;

        padding:24px;

        gap:18px;

    }

    .mls-learning-visual-title{

        font-size:1.45rem;

    }

    .mls-learning-visual-accent{

        display:none;

    }

    .mls-learning-trigger{

        min-height:96px;

        grid-template-columns:34px 1fr 34px;

        gap:14px;

    }

    .mls-learning-trigger-title{

        font-size:1.28rem;

    }

    .mls-learning-item.is-active{

        padding-left:16px;

    }

    .mls-learning-panel-inner{

        padding:
            0
            0
            30px
            48px;

    }

    .mls-learning-panel-inner ul{

        grid-template-columns:1fr;

        gap:10px;

    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width:420px){

    .mls-learning{

        padding-left:18px;
        padding-right:18px;

    }

    .mls-learning-image-stack,
    .mls-learning-image img{

        min-height:430px;

    }

    .mls-learning-trigger{

        grid-template-columns:28px 1fr 30px;

    }

    .mls-learning-trigger-title{

        font-size:1.12rem;

    }

    .mls-learning-panel-inner{

        padding:
            0
            0
            28px
            42px;

    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media(prefers-reduced-motion:reduce){

    .mls-learning-reveal,
    .mls-learning-image,
    .mls-learning-panel,
    .mls-learning-toggle,
    .mls-learning-trigger,
    .mls-learning-item{

        transition:none!important;

    }

    .mls-learning-reveal{

        opacity:1;
        transform:none;

    }

}


/*==================================================
PRINT
==================================================*/

@media print{

    .mls-learning{

        background:#ffffff;
        padding:60px 40px;

    }

    .mls-learning::before,
    .mls-learning::after,
    .mls-learning-visual-accent{

        display:none;

    }

    .mls-learning-reveal{

        opacity:1;
        transform:none;

    }

}















/*==================================================
MEDICAL LABORATORY SCIENCE
LEARNING EXPERIENCE
==================================================*/

.mls-experience{
    padding:140px 6vw;
    background:#fff;
    overflow:hidden;
}

.mls-experience-container{
    max-width:1450px;
    margin:auto;
}

.mls-experience-header{
    max-width:900px;
    margin-bottom:80px;
}

.mls-experience-label{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:24px;

    font-size:.72rem;
    letter-spacing:.2em;
    text-transform:uppercase;
    font-weight:700;
    color:#b58b2b;
}

.mls-experience-label span{
    width:42px;
    height:1px;
    background:#b58b2b;
}

.mls-experience-header h2{

    font-size:clamp(3rem,6vw,6.4rem);
    line-height:.96;
    letter-spacing:-.05em;
    color:#06162f;
    margin:0;
    font-weight:800;
}

.mls-experience-header h2 em{

    display:block;
    color:#b58b2b;
    font-family:"Libre Baskerville",serif;
    font-weight:400;
}

.mls-experience-header p{

    max-width:700px;
    margin-top:30px;

    font-size:1rem;
    line-height:1.9;
    color:#5e6675;
}

/*==========================
Horizontal Cards
==========================*/

.mls-experience-grid{

    display:grid;
    gap:35px;
}

.mls-experience-card{

    display:grid;
    grid-template-columns:420px 1fr;

    align-items:center;

    background:#fff;

    border:1px solid rgba(6,22,47,.08);

    transition:.45s;

    overflow:hidden;
}

.mls-experience-card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 60px rgba(0,0,0,.10);
}

.mls-experience-image{

    height:300px;
    overflow:hidden;
}

.mls-experience-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:1s;
}

.mls-experience-card:hover img{

    transform:scale(1.08);
}

.mls-experience-content{

    padding:55px;
}

.mls-experience-content span{

    color:#b58b2b;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:.18em;
}

.mls-experience-content h3{

    margin:18px 0;

    color:#06162f;

    font-size:2rem;

    line-height:1.2;
}

.mls-experience-content p{

    max-width:650px;

    color:#5f6776;

    line-height:1.85;
}

/*==========================
Reveal
==========================*/

.mls-experience-reveal{

    opacity:0;

    transform:translateY(50px);

    transition:.8s ease;
}

.mls-experience-visible{

    opacity:1;

    transform:none;
}

/*==========================
Responsive
==========================*/

@media(max-width:1100px){

.mls-experience-card{

grid-template-columns:1fr;
}

.mls-experience-image{

height:350px;
}

}

@media(max-width:768px){

.mls-experience{

padding:100px 22px;
}

.mls-experience-content{

padding:35px 28px;
}

.mls-experience-content h3{

font-size:1.6rem;
}

.mls-experience-image{

height:260px;
}

}









/*==================================================
MEDICAL LABORATORY SCIENCE — CAREER OPPORTUNITIES
==================================================*/

.mls-careers {
    position: relative;
    padding: 145px 6vw 155px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(214, 174, 76, 0.11),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #06162f 0%,
            #081c38 52%,
            #06162f 100%
        );

    color: #ffffff;
}

.mls-careers::before {
    content: "";

    position: absolute;
    top: -210px;
    right: -120px;
    z-index: 0;

    width: 540px;
    height: 540px;

    border: 1px solid rgba(214, 174, 76, 0.1);
    border-radius: 50%;
}

.mls-careers::after {
    content: "";

    position: absolute;
    left: 6vw;
    right: 6vw;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(214, 174, 76, 0.35),
        transparent
    );
}

.mls-careers-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
SECTION HEADER
==================================================*/

.mls-careers-header {
    margin-bottom: 90px;
}

.mls-careers-label {
    margin-bottom: 27px;

    display: flex;
    align-items: center;
    gap: 14px;

    color: #d6ae4c;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mls-careers-label span {
    width: 44px;
    height: 1px;

    display: block;

    background: #d6ae4c;
}

.mls-careers-heading-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.65fr);

    gap: clamp(55px, 8vw, 125px);
    align-items: end;
}

.mls-careers-heading-grid h2 {
    max-width: 950px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(3.2rem, 6.2vw, 6.9rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.mls-careers-heading-grid h2 em {
    display: block;

    color: #d6ae4c;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}

.mls-careers-heading-grid > p {
    max-width: 470px;
    margin: 0 0 8px;

    color: rgba(255, 255, 255, 0.63);

    font-size: 1rem;
    line-height: 1.85;
}


/*==================================================
CAREER LIST
==================================================*/

.mls-careers-list {
    display: grid;
    gap: 28px;
}


/*==================================================
CINEMATIC CARD
==================================================*/

.mls-careers-card {
    position: relative;

    min-height: 390px;
    overflow: hidden;

    isolation: isolate;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;

    background: #0a1a31;

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.17);

    transition:
        transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
        border-color 0.45s ease,
        box-shadow 0.55s ease;
}

.mls-careers-card:nth-child(even) .mls-careers-image {
    left: auto;
    right: 0;
}

.mls-careers-card:nth-child(even) .mls-careers-overlay {
    background:
        linear-gradient(
            270deg,
            rgba(6, 22, 47, 0.08) 0%,
            rgba(6, 22, 47, 0.34) 38%,
            rgba(6, 22, 47, 0.94) 72%,
            #06162f 100%
        );
}

.mls-careers-card:hover {
    transform: translateY(-8px);

    border-color: rgba(214, 174, 76, 0.48);

    box-shadow:
        0 40px 95px rgba(0, 0, 0, 0.28);
}


/*==================================================
CARD IMAGE
==================================================*/

.mls-careers-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -3;

    width: 61%;

    overflow: hidden;
}

.mls-careers-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.04),
            rgba(6, 22, 47, 0.25)
        );
}

.mls-careers-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter: saturate(0.92) contrast(1.03);

    transform: scale(1.02);

    transition:
        transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.7s ease;
}

.mls-careers-card:hover .mls-careers-image img {
    transform: scale(1.09);

    filter: saturate(1.04) contrast(1.05);
}


/*==================================================
DARK GRADIENT OVERLAY
==================================================*/

.mls-careers-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(6, 22, 47, 0.07) 0%,
            rgba(6, 22, 47, 0.34) 38%,
            rgba(6, 22, 47, 0.94) 72%,
            #06162f 100%
        );
}


/*==================================================
CARD CONTENT
==================================================*/

.mls-careers-content {
    position: relative;
    z-index: 3;

    min-height: 390px;
    padding: 45px 52px 46px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    gap: 30px 40px;
}

.mls-careers-card:nth-child(odd) .mls-careers-content {
    padding-left: calc(53% + 45px);
}

.mls-careers-card:nth-child(even) .mls-careers-content {
    padding-right: calc(53% + 45px);
}


/*==================================================
TOP LINE
==================================================*/

.mls-careers-topline {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    gap: 18px;
}

.mls-careers-number {
    color: #d6ae4c;

    font-size: 0.68rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.mls-careers-category {
    position: relative;

    padding-left: 31px;

    color: rgba(255, 255, 255, 0.53);

    font-size: 0.62rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.mls-careers-category::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;

    width: 19px;
    height: 1px;

    background: rgba(214, 174, 76, 0.65);

    transform: translateY(-50%);
}


/*==================================================
CAREER COPY
==================================================*/

.mls-careers-copy {
    align-self: end;
}

.mls-careers-copy h3 {
    max-width: 570px;
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(1.75rem, 3.1vw, 3.25rem);
    line-height: 1.05;
    font-weight: 760;
    letter-spacing: -0.045em;

    transition: color 0.4s ease;
}

.mls-careers-card:hover .mls-careers-copy h3 {
    color: #f1d98f;
}

.mls-careers-copy p {
    max-width: 560px;
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.95rem;
    line-height: 1.8;

    transition: color 0.4s ease;
}

.mls-careers-card:hover .mls-careers-copy p {
    color: rgba(255, 255, 255, 0.77);
}


/*==================================================
ARROW
==================================================*/

.mls-careers-arrow {
    align-self: end;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.45s ease;
}

.mls-careers-arrow svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mls-careers-card:hover .mls-careers-arrow {
    background: #d6ae4c;
    border-color: #d6ae4c;

    transform: translateX(6px);
}

.mls-careers-card:hover .mls-careers-arrow svg {
    stroke: #06162f;
}


/*==================================================
SCROLL REVEAL
==================================================*/

.mls-careers-reveal {
    opacity: 0;

    transform: translateY(48px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mls-careers-reveal.mls-careers-visible {
    opacity: 1;

    transform: translateY(0);
}

.mls-careers-card:nth-child(1) {
    transition-delay: 0.05s;
}

.mls-careers-card:nth-child(2) {
    transition-delay: 0.1s;
}

.mls-careers-card:nth-child(3) {
    transition-delay: 0.15s;
}

.mls-careers-card:nth-child(4) {
    transition-delay: 0.2s;
}

.mls-careers-card:nth-child(5) {
    transition-delay: 0.25s;
}

.mls-careers-card:nth-child(6) {
    transition-delay: 0.3s;
}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 1100px) {

    .mls-careers-heading-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mls-careers-heading-grid > p {
        max-width: 720px;
    }

    .mls-careers-card {
        min-height: 440px;
    }

    .mls-careers-image {
        width: 100%;
    }

    .mls-careers-overlay,
    .mls-careers-card:nth-child(even) .mls-careers-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(6, 22, 47, 0.07) 0%,
                rgba(6, 22, 47, 0.34) 35%,
                rgba(6, 22, 47, 0.94) 76%,
                #06162f 100%
            );
    }

    .mls-careers-content,
    .mls-careers-card:nth-child(odd) .mls-careers-content,
    .mls-careers-card:nth-child(even) .mls-careers-content {
        min-height: 440px;
        padding: 38px 40px 42px;
    }

    .mls-careers-copy {
        max-width: 700px;
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 700px) {

    .mls-careers {
        padding: 100px 22px 110px;
    }

    .mls-careers-header {
        margin-bottom: 62px;
    }

    .mls-careers-label {
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .mls-careers-label span {
        width: 31px;
    }

    .mls-careers-heading-grid h2 {
        font-size: clamp(2.7rem, 12vw, 4.2rem);
        line-height: 0.98;
    }

    .mls-careers-heading-grid > p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .mls-careers-list {
        gap: 22px;
    }

    .mls-careers-card {
        min-height: 500px;
    }

    .mls-careers-content,
    .mls-careers-card:nth-child(odd) .mls-careers-content,
    .mls-careers-card:nth-child(even) .mls-careers-content {
        min-height: 500px;

        padding: 30px 24px 32px;

        grid-template-columns: 1fr auto;
        gap: 25px 20px;
    }

    .mls-careers-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .mls-careers-category {
        padding-left: 25px;
    }

    .mls-careers-copy h3 {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .mls-careers-copy p {
        font-size: 0.89rem;
        line-height: 1.72;
    }

    .mls-careers-arrow {
        width: 44px;
        height: 44px;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .mls-careers-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mls-careers-card,
    .mls-careers-image img,
    .mls-careers-arrow,
    .mls-careers-copy h3,
    .mls-careers-copy p {
        transition: none;
    }

}








/*==================================================
MEDICAL LABORATORY SCIENCE — PROGRAMME INFORMATION
==================================================*/

.mls-info {
    position: relative;
    padding: 140px 6vw 150px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(214, 174, 76, 0.09),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f8f9fb 0%,
            #ffffff 100%
        );

    color: #06162f;
}

.mls-info::before {
    content: "";

    position: absolute;
    top: -190px;
    right: -130px;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(6, 22, 47, 0.06);
    border-radius: 50%;

    pointer-events: none;
}

.mls-info::after {
    content: "";

    position: absolute;
    left: 6vw;
    right: 6vw;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(6, 22, 47, 0.13),
        transparent
    );
}

.mls-info-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
SECTION HEADER
==================================================*/

.mls-info-header {
    max-width: 900px;
    margin-bottom: 82px;
}

.mls-info-header > span {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 26px;

    color: #b58b2b;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mls-info-header > span::before {
    content: "";

    width: 44px;
    height: 1px;

    display: block;

    background: #b58b2b;
}

.mls-info-header h2 {
    max-width: 930px;
    margin: 0;

    color: #06162f;

    font-size: clamp(3.2rem, 6.1vw, 6.7rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.mls-info-header h2 em {
    display: block;

    color: #b58b2b;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}


/*==================================================
INFORMATION GRID
==================================================*/

.mls-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(6, 22, 47, 0.13);
    border-left: 1px solid rgba(6, 22, 47, 0.13);
}


/*==================================================
INFORMATION CARD
==================================================*/

.mls-info-card {
    position: relative;

    min-height: 245px;
    padding: 34px 32px 38px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border-right: 1px solid rgba(6, 22, 47, 0.13);
    border-bottom: 1px solid rgba(6, 22, 47, 0.13);

    background: rgba(255, 255, 255, 0.76);

    transition:
        background 0.45s ease,
        transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.45s ease;
}

.mls-info-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #d6ae4c;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.45s ease;
}

.mls-info-card::after {
    content: "";

    position: absolute;
    right: -85px;
    bottom: -85px;

    width: 170px;
    height: 170px;

    border: 1px solid rgba(214, 174, 76, 0.16);
    border-radius: 50%;

    opacity: 0;

    transform: scale(0.75);

    transition:
        opacity 0.45s ease,
        transform 0.55s ease;
}

.mls-info-card:hover {
    z-index: 2;

    background: #ffffff;

    transform: translateY(-7px);

    box-shadow:
        0 26px 60px rgba(6, 22, 47, 0.1);
}

.mls-info-card:hover::before {
    transform: scaleX(1);
}

.mls-info-card:hover::after {
    opacity: 1;
    transform: scale(1);
}


/*==================================================
CARD TYPOGRAPHY
==================================================*/

.mls-info-card small {
    position: relative;
    z-index: 2;

    display: block;
    margin-bottom: 44px;

    color: #b58b2b;

    font-size: 0.66rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.mls-info-card h3 {
    position: relative;
    z-index: 2;

    max-width: 290px;
    margin: 0 0 14px;

    color: #06162f;

    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.22;
    font-weight: 760;
    letter-spacing: -0.035em;

    transition: color 0.35s ease;
}

.mls-info-card p {
    position: relative;
    z-index: 2;

    max-width: 310px;
    margin: 0;

    color: rgba(6, 22, 47, 0.62);

    font-size: 0.9rem;
    line-height: 1.72;

    transition: color 0.35s ease;
}

.mls-info-card:hover h3 {
    color: #9a741f;
}

.mls-info-card:hover p {
    color: rgba(6, 22, 47, 0.76);
}


/*==================================================
SCROLL REVEAL
==================================================*/

.mls-info-header,
.mls-info-card {
    opacity: 0;

    transform: translateY(42px);

    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mls-info-header.mls-info-visible,
.mls-info-card.mls-info-visible {
    opacity: 1;

    transform: translateY(0);
}

.mls-info-card:nth-child(1) {
    transition-delay: 0.04s;
}

.mls-info-card:nth-child(2) {
    transition-delay: 0.08s;
}

.mls-info-card:nth-child(3) {
    transition-delay: 0.12s;
}

.mls-info-card:nth-child(4) {
    transition-delay: 0.16s;
}

.mls-info-card:nth-child(5) {
    transition-delay: 0.2s;
}

.mls-info-card:nth-child(6) {
    transition-delay: 0.24s;
}

.mls-info-card:nth-child(7) {
    transition-delay: 0.28s;
}

.mls-info-card:nth-child(8) {
    transition-delay: 0.32s;
}


/*==================================================
LARGE TABLET
==================================================*/

@media screen and (max-width: 1180px) {

    .mls-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mls-info-card {
        min-height: 225px;
    }

}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 820px) {

    .mls-info {
        padding: 110px 30px 120px;
    }

    .mls-info-header {
        margin-bottom: 62px;
    }

    .mls-info-header h2 {
        font-size: clamp(2.9rem, 10vw, 5rem);
    }

    .mls-info-card {
        padding: 31px 28px 34px;
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 620px) {

    .mls-info {
        padding: 95px 22px 105px;
    }

    .mls-info-header > span {
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .mls-info-header > span::before {
        width: 31px;
    }

    .mls-info-header h2 {
        font-size: clamp(2.65rem, 12vw, 4.15rem);
        line-height: 0.98;
    }

    .mls-info-grid {
        grid-template-columns: 1fr;
    }

    .mls-info-card {
        min-height: 210px;
        padding: 29px 24px 31px;
    }

    .mls-info-card small {
        margin-bottom: 35px;
    }

    .mls-info-card h3 {
        max-width: 100%;

        font-size: 1.55rem;
    }

    .mls-info-card p {
        max-width: 100%;

        font-size: 0.88rem;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .mls-info-header,
    .mls-info-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mls-info-card::before,
    .mls-info-card::after,
    .mls-info-card h3,
    .mls-info-card p {
        transition: none;
    }

}





/*==================================================
MEDICAL LABORATORY SCIENCE FAQ
==================================================*/

.mls-faq{

padding:140px 6vw;

background:#fff;
}

.mls-faq-container{

max-width:1100px;

margin:auto;
}

.mls-faq-header{

margin-bottom:70px;

text-align:center;
}

.mls-faq-header span{

display:inline-block;

margin-bottom:20px;

color:#b58b2b;

font-size:.72rem;

font-weight:700;

letter-spacing:.18em;

text-transform:uppercase;
}

.mls-faq-header h2{

margin:0;

font-size:clamp(3rem,6vw,6rem);

line-height:.95;

color:#06162f;

letter-spacing:-.05em;
}

.mls-faq-header h2 em{

display:block;

color:#b58b2b;

font-family:"Libre Baskerville",serif;

font-weight:400;
}

.mls-faq-wrapper{

border-top:1px solid rgba(6,22,47,.1);
}

.mls-faq-item{

border-bottom:1px solid rgba(6,22,47,.1);
}

.mls-faq-question{

width:100%;

padding:34px 0;

display:flex;

justify-content:space-between;

align-items:center;

background:none;

border:none;

cursor:pointer;

text-align:left;
}

.mls-faq-question span{

font-size:1.35rem;

font-weight:700;

color:#06162f;
}

.mls-faq-icon{

width:22px;

height:22px;

position:relative;

flex-shrink:0;
}

.mls-faq-icon::before,
.mls-faq-icon::after{

content:"";

position:absolute;

background:#b58b2b;

transition:.35s;
}

.mls-faq-icon::before{

width:22px;
height:2px;
top:10px;
left:0;
}

.mls-faq-icon::after{

width:2px;
height:22px;
left:10px;
top:0;
}

.mls-faq-item.active .mls-faq-icon::after{

transform:scaleY(0);
}

.mls-faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .45s ease;
}

.mls-faq-answer p{

padding:0 0 35px;

max-width:760px;

color:#60697a;

line-height:1.9;
}

@media(max-width:768px){

.mls-faq{

padding:100px 22px;
}

.mls-faq-question span{

font-size:1.1rem;
}

}










/*==================================================
MEDICAL LABORATORY SCIENCE — CINEMATIC CTA
==================================================*/

.mls-cta {
    position: relative;

    min-height: 780px;
    padding: 130px 6vw;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #06162f;
    isolation: isolate;
}


/*==================================================
BACKGROUND IMAGE
==================================================*/

.mls-cta-media {
    position: absolute;
    inset: 0;
    z-index: -5;

    overflow: hidden;
}

.mls-cta-media img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center;

    transform: scale(1.06);

    animation: mlsCtaKenBurns 18s ease-in-out infinite alternate;
}

@keyframes mlsCtaKenBurns {

    from {
        transform: scale(1.06) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.15) translate3d(-1.2%, -1%, 0);
    }

}


/*==================================================
DARK CINEMATIC OVERLAY
==================================================*/

.mls-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(3, 13, 29, 0.97) 0%,
            rgba(3, 13, 29, 0.9) 38%,
            rgba(3, 13, 29, 0.57) 67%,
            rgba(3, 13, 29, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.18) 0%,
            rgba(6, 22, 47, 0.48) 100%
        );
}

.mls-cta::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        radial-gradient(
            circle at 22% 45%,
            rgba(214, 174, 76, 0.12),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(2, 10, 24, 0.24) 100%
        );

    pointer-events: none;
}

.mls-cta::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 68px 68px;

    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.35),
        transparent 72%
    );

    pointer-events: none;
}


/*==================================================
AMBIENT GLOW
==================================================*/

.mls-cta-glow {
    position: absolute;
    z-index: -1;

    border-radius: 50%;
    filter: blur(14px);

    pointer-events: none;
}

.mls-cta-glow-one {
    top: -170px;
    left: -110px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(214, 174, 76, 0.2);
    box-shadow:
        inset 0 0 80px rgba(214, 174, 76, 0.07),
        0 0 120px rgba(214, 174, 76, 0.06);
}

.mls-cta-glow-two {
    right: -190px;
    bottom: -210px;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        inset 0 0 100px rgba(255, 255, 255, 0.025),
        0 0 120px rgba(6, 22, 47, 0.2);
}


/*==================================================
CONTENT
==================================================*/

.mls-cta-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

.mls-cta-content {
    max-width: 850px;
}

.mls-cta-eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 29px;

    color: #e0bd63;

    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mls-cta-eyebrow::before {
    content: "";

    width: 46px;
    height: 1px;

    display: block;

    background: #d6ae4c;
}

.mls-cta-content h2 {
    max-width: 920px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(3.8rem, 7.3vw, 8.1rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.07em;
}

.mls-cta-content h2 em {
    display: block;

    color: #d6ae4c;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}

.mls-cta-content p {
    max-width: 680px;
    margin: 34px 0 0;

    color: rgba(255, 255, 255, 0.73);

    font-size: 1.05rem;
    line-height: 1.85;
}


/*==================================================
BUTTONS
==================================================*/

.mls-cta-actions {
    margin-top: 46px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.mls-cta-btn {
    position: relative;

    min-height: 58px;
    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    overflow: hidden;

    border: 1px solid transparent;

    font-size: 0.85rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;

    transition:
        transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.mls-cta-btn span,
.mls-cta-btn svg {
    position: relative;
    z-index: 2;
}

.mls-cta-btn svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.35s ease;
}

.mls-cta-btn:hover svg {
    transform: translateX(5px);
}


/* PRIMARY BUTTON */

.mls-cta-btn-primary {
    color: #06162f;
    background: #d6ae4c;

    box-shadow:
        0 18px 42px rgba(214, 174, 76, 0.18);
}

.mls-cta-btn-primary::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #ffffff;

    transform: translateX(-102%);

    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mls-cta-btn-primary:hover {
    color: #06162f;

    transform: translateY(-4px);

    box-shadow:
        0 24px 55px rgba(214, 174, 76, 0.24);
}

.mls-cta-btn-primary:hover::before {
    transform: translateX(0);
}


/* SECONDARY BUTTON */

.mls-cta-btn-secondary {
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mls-cta-btn-secondary::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.12);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.4s ease;
}

.mls-cta-btn-secondary:hover {
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.7);

    transform: translateY(-4px);
}

.mls-cta-btn-secondary:hover::before {
    transform: scaleX(1);
}


/*==================================================
BOTTOM DECORATIVE LINE
==================================================*/

.mls-cta-scroll-line {
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 1px;
    height: 78px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.16);

    transform: translateX(-50%);
}

.mls-cta-scroll-line::after {
    content: "";

    position: absolute;
    top: -100%;
    left: 0;

    width: 100%;
    height: 55%;

    background: #d6ae4c;

    animation: mlsCtaLine 2.8s ease-in-out infinite;
}

@keyframes mlsCtaLine {

    0% {
        transform: translateY(0);
    }

    70%,
    100% {
        transform: translateY(320%);
    }

}


/*==================================================
SCROLL REVEAL
==================================================*/

.mls-cta-eyebrow,
.mls-cta-content h2,
.mls-cta-content p,
.mls-cta-actions {
    opacity: 0;
    transform: translateY(38px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mls-cta.mls-cta-visible .mls-cta-eyebrow {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.08s;
}

.mls-cta.mls-cta-visible .mls-cta-content h2 {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.16s;
}

.mls-cta.mls-cta-visible .mls-cta-content p {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.25s;
}

.mls-cta.mls-cta-visible .mls-cta-actions {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.34s;
}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 900px) {

    .mls-cta {
        min-height: 720px;
        padding: 115px 32px;
    }

    .mls-cta-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 13, 29, 0.95) 0%,
                rgba(3, 13, 29, 0.82) 58%,
                rgba(3, 13, 29, 0.52) 100%
            ),
            linear-gradient(
                180deg,
                rgba(6, 22, 47, 0.12),
                rgba(6, 22, 47, 0.48)
            );
    }

    .mls-cta-content h2 {
        font-size: clamp(3.5rem, 10vw, 6.4rem);
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 620px) {

    .mls-cta {
        min-height: 700px;
        padding: 100px 22px 115px;

        align-items: flex-end;
    }

    .mls-cta-media img {
        object-position: 64% center;
    }

    .mls-cta-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 13, 29, 0.42) 0%,
                rgba(3, 13, 29, 0.78) 43%,
                rgba(3, 13, 29, 0.98) 100%
            );
    }

    .mls-cta-content h2 {
        font-size: clamp(3rem, 14vw, 4.7rem);
        line-height: 0.94;
    }

    .mls-cta-content p {
        margin-top: 27px;

        font-size: 0.94rem;
        line-height: 1.75;
    }

    .mls-cta-actions {
        margin-top: 37px;

        flex-direction: column;
        align-items: stretch;
    }

    .mls-cta-btn {
        width: 100%;
        min-height: 57px;
    }

    .mls-cta-scroll-line {
        display: none;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .mls-cta-media img,
    .mls-cta-scroll-line::after {
        animation: none;
    }

    .mls-cta-eyebrow,
    .mls-cta-content h2,
    .mls-cta-content p,
    .mls-cta-actions {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mls-cta-btn,
    .mls-cta-btn::before,
    .mls-cta-btn svg {
        transition: none;
    }

}














/*==================================================
MIDWIFERY — HERO SECTION
CSS PART 1
Layout • Background • Typography • Buttons
==================================================*/

.midwifery-hero {
    position: relative;

    min-height: 100vh;
    padding: 150px 6vw 110px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #06162f;
    isolation: isolate;
}


/*==================================================
BACKGROUND IMAGE
==================================================*/

.midwifery-hero-image {
    position: absolute;
    inset: 0;
    z-index: -5;

    overflow: hidden;
}

.midwifery-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.06);
}


/*==================================================
CINEMATIC OVERLAY
==================================================*/

.midwifery-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(3, 13, 29, 0.98) 0%,
            rgba(3, 13, 29, 0.92) 36%,
            rgba(3, 13, 29, 0.66) 64%,
            rgba(3, 13, 29, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.14) 0%,
            rgba(6, 22, 47, 0.48) 100%
        );
}

.midwifery-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        radial-gradient(
            circle at 20% 42%,
            rgba(214, 174, 76, 0.13),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(1, 9, 22, 0.28) 100%
        );

    pointer-events: none;
}

.midwifery-hero::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.38),
        transparent 74%
    );

    -webkit-mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.38),
        transparent 74%
    );

    pointer-events: none;
}


/*==================================================
DECORATIVE GLOW
==================================================*/

.midwifery-hero-glow {
    position: absolute;
    top: -190px;
    left: -130px;
    z-index: -1;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(214, 174, 76, 0.18);
    border-radius: 50%;

    box-shadow:
        inset 0 0 100px rgba(214, 174, 76, 0.06),
        0 0 150px rgba(214, 174, 76, 0.05);

    pointer-events: none;
}


/*==================================================
CONTAINER
==================================================*/

.midwifery-hero-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

.midwifery-hero-content {
    max-width: 900px;
}


/*==================================================
EYEBROW
==================================================*/

.midwifery-hero-eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 26px;

    color: #e0bd63;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.midwifery-hero-eyebrow::before {
    content: "";

    width: 46px;
    height: 1px;

    display: block;

    background: #d6ae4c;
}


/*==================================================
PROGRAMME TITLE
==================================================*/

.midwifery-hero-content h1 {
    margin: 0 0 24px;

    color: #ffffff;

    font-size: clamp(4.5rem, 9vw, 10rem);
    line-height: 0.84;
    font-weight: 800;
    letter-spacing: -0.075em;
}


/*==================================================
SIGNATURE
==================================================*/

.midwifery-hero-content h2 {
    max-width: 850px;
    margin: 0;

    color: rgba(255, 255, 255, 0.98);

    font-size: clamp(2rem, 4.2vw, 4.9rem);
    line-height: 1.03;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.midwifery-hero-content h2 span {
    display: block;

    color: #d6ae4c;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}


/*==================================================
DESCRIPTION
==================================================*/

.midwifery-hero-content p {
    max-width: 760px;
    margin: 32px 0 0;

    color: rgba(255, 255, 255, 0.74);

    font-size: 1.05rem;
    line-height: 1.85;
}


/*==================================================
BUTTON GROUP
==================================================*/

.midwifery-hero-buttons {
    margin-top: 44px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}


/*==================================================
BUTTON BASE
==================================================*/

.midwifery-btn {
    position: relative;

    min-height: 58px;
    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    overflow: hidden;

    border: 1px solid transparent;

    font-size: 0.84rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;

    transition:
        transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.midwifery-btn svg {
    position: relative;
    z-index: 2;

    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.35s ease;
}

.midwifery-btn:hover svg {
    transform: translateX(5px);
}


/*==================================================
PRIMARY BUTTON
==================================================*/

.midwifery-btn-primary {
    color: #06162f;
    background: #d6ae4c;

    box-shadow:
        0 18px 42px rgba(214, 174, 76, 0.2);
}

.midwifery-btn-primary::before {
    content: "";

    position: absolute;
    inset: 0;

    background: #ffffff;

    transform: translateX(-102%);

    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-btn-primary:hover {
    color: #06162f;

    transform: translateY(-4px);

    box-shadow:
        0 24px 56px rgba(214, 174, 76, 0.27);
}

.midwifery-btn-primary:hover::before {
    transform: translateX(0);
}

.midwifery-btn-primary {
    isolation: isolate;
}

.midwifery-btn-primary > * {
    position: relative;
    z-index: 2;
}


/*==================================================
SECONDARY BUTTON
==================================================*/

.midwifery-btn-secondary {
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.midwifery-btn-secondary::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.12);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.4s ease;
}

.midwifery-btn-secondary:hover {
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.72);

    transform: translateY(-4px);
}

.midwifery-btn-secondary:hover::before {
    transform: scaleX(1);
}

.midwifery-btn-secondary {
    isolation: isolate;
}

.midwifery-btn-secondary > * {
    position: relative;
    z-index: 2;
}


/*==================================================
SCROLL INDICATOR — BASE
==================================================*/

.midwifery-scroll {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 4;

    width: 1px;
    height: 82px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.18);

    transform: translateX(-50%);
}

.midwifery-scroll span {
    position: absolute;
    top: -70%;
    left: 0;

    width: 100%;
    height: 54%;

    display: block;

    background: #d6ae4c;
}




/*==================================================
MIDWIFERY HERO
CSS PART 2
Responsive • Animations • Scroll Reveal
==================================================*/


/*==================================================
KEN BURNS
==================================================*/

@keyframes midwiferyKenBurns {

    0%{
        transform:scale(1.06) translate3d(0,0,0);
    }

    100%{
        transform:scale(1.15) translate3d(-1.5%,-1%,0);
    }

}

.midwifery-hero-image img{

    animation:midwiferyKenBurns 18s ease-in-out infinite alternate;

}


/*==================================================
SCROLL INDICATOR
==================================================*/

@keyframes midwiferyScroll{

    0%{

        transform:translateY(0);

        opacity:1;

    }

    80%{

        opacity:1;

    }

    100%{

        transform:translateY(320%);

        opacity:0;

    }

}

.midwifery-scroll span{

    animation:midwiferyScroll 2.5s ease-in-out infinite;

}


/*==================================================
INITIAL REVEAL STATE
==================================================*/

.midwifery-hero-eyebrow,
.midwifery-hero-content h1,
.midwifery-hero-content h2,
.midwifery-hero-content p,
.midwifery-hero-buttons{

    opacity:0;

    transform:translateY(45px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2,.7,.2,1);

}


/*==================================================
VISIBLE STATE
==================================================*/

.midwifery-hero.midwifery-visible
.midwifery-hero-eyebrow{

    opacity:1;

    transform:translateY(0);

    transition-delay:.05s;

}

.midwifery-hero.midwifery-visible
.midwifery-hero-content h1{

    opacity:1;

    transform:translateY(0);

    transition-delay:.15s;

}

.midwifery-hero.midwifery-visible
.midwifery-hero-content h2{

    opacity:1;

    transform:translateY(0);

    transition-delay:.25s;

}

.midwifery-hero.midwifery-visible
.midwifery-hero-content p{

    opacity:1;

    transform:translateY(0);

    transition-delay:.35s;

}

.midwifery-hero.midwifery-visible
.midwifery-hero-buttons{

    opacity:1;

    transform:translateY(0);

    transition-delay:.45s;

}


/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

.midwifery-hero{

min-height:850px;

padding:140px 42px 90px;

}

.midwifery-hero-content{

max-width:700px;

}

.midwifery-hero-content h1{

font-size:clamp(4rem,11vw,7rem);

}

.midwifery-hero-content h2{

font-size:clamp(1.9rem,5vw,3.6rem);

}

.midwifery-hero-content p{

font-size:1rem;

max-width:640px;

}

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.midwifery-hero{

min-height:760px;

padding:120px 24px 90px;

align-items:flex-end;

}

.midwifery-hero-image img{

object-position:68% center;

}

.midwifery-hero-overlay{

background:

linear-gradient(

180deg,

rgba(4,16,36,.30),

rgba(4,16,36,.75) 45%,

rgba(4,16,36,.96)

);

}

.midwifery-hero-content{

max-width:100%;

}

.midwifery-hero-eyebrow{

font-size:.63rem;

letter-spacing:.15em;

}

.midwifery-hero-eyebrow::before{

width:30px;

}

.midwifery-hero-content h1{

font-size:clamp(3.3rem,15vw,5.4rem);

line-height:.88;

}

.midwifery-hero-content h2{

font-size:clamp(1.7rem,8vw,2.8rem);

line-height:1.05;

}

.midwifery-hero-content p{

margin-top:24px;

font-size:.94rem;

line-height:1.75;

}

.midwifery-hero-buttons{

margin-top:36px;

flex-direction:column;

align-items:stretch;

}

.midwifery-btn{

width:100%;

min-height:56px;

}

.midwifery-scroll{

display:none;

}

}


/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px){

.midwifery-hero{

padding:110px 20px 80px;

}

.midwifery-hero-content h1{

font-size:3.2rem;

}

.midwifery-hero-content h2{

font-size:1.6rem;

}

}


/*==================================================
REDUCED MOTION
==================================================*/

@media(prefers-reduced-motion:reduce){

.midwifery-hero-image img,
.midwifery-scroll span{

animation:none;

}

.midwifery-hero-eyebrow,
.midwifery-hero-content h1,
.midwifery-hero-content h2,
.midwifery-hero-content p,
.midwifery-hero-buttons{

opacity:1;

transform:none;

transition:none;

}

}









/*==================================================
MIDWIFERY — ABOUT THE PROGRAMME
==================================================*/

.midwifery-about {
    position: relative;
    padding: 145px 6vw 155px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(214, 174, 76, 0.08),
            transparent 27%
        ),
        #ffffff;

    color: #06162f;
}

.midwifery-about::before {
    content: "";

    position: absolute;
    top: -230px;
    right: -180px;

    width: 560px;
    height: 560px;

    border: 1px solid rgba(6, 22, 47, 0.06);
    border-radius: 50%;

    pointer-events: none;
}

.midwifery-about-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
HEADER
==================================================*/

.midwifery-about-header {
    max-width: 950px;
    margin-bottom: 82px;
}

.midwifery-about-header > span {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 25px;

    color: #b58b2b;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.midwifery-about-header > span::before {
    content: "";

    width: 44px;
    height: 1px;

    display: block;

    background: #b58b2b;
}

.midwifery-about-header h2 {
    margin: 0;

    color: #06162f;

    font-size: clamp(3.2rem, 6.2vw, 6.9rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.midwifery-about-header h2 em {
    display: block;

    color: #b58b2b;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}


/*==================================================
MAIN LAYOUT
==================================================*/

.midwifery-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(55px, 7vw, 110px);
    align-items: center;
}


/*==================================================
IMAGE
==================================================*/

.midwifery-about-media {
    position: relative;

    min-height: 690px;
    overflow: hidden;

    background: #06162f;
}

.midwifery-about-media::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(3, 13, 29, 0.72) 100%
        );

    pointer-events: none;
}

.midwifery-about-media img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;
    object-fit: cover;
    object-position: center;

    transform: scale(1.025);

    transition:
        transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.8s ease;
}

.midwifery-about-media:hover img {
    transform: scale(1.075);
}

.midwifery-about-image-label {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 31px;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;

    color: #ffffff;
}

.midwifery-about-image-label span {
    color: #d6ae4c;

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.midwifery-about-image-label strong {
    max-width: 250px;

    font-size: 1.1rem;
    line-height: 1.35;
    font-weight: 600;
    text-align: right;
}


/*==================================================
CONTENT
==================================================*/

.midwifery-about-content {
    max-width: 680px;
}

.midwifery-about-content > p {
    margin: 0 0 23px;

    color: rgba(6, 22, 47, 0.65);

    font-size: 1rem;
    line-height: 1.88;
}

.midwifery-about-content .midwifery-about-lead {
    margin-bottom: 30px;

    color: #06162f;

    font-size: clamp(1.3rem, 2vw, 1.75rem);
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -0.025em;
}


/*==================================================
QUOTE
==================================================*/

.midwifery-about-quote {
    position: relative;

    margin: 43px 0 0;
    padding: 31px 0 8px 37px;

    border-left: 2px solid #d6ae4c;
}

.midwifery-about-quote > span {
    position: absolute;
    top: -4px;
    left: 28px;

    color: rgba(214, 174, 76, 0.23);

    font-family: Georgia, serif;
    font-size: 5.5rem;
    line-height: 1;
}

.midwifery-about-quote p {
    position: relative;
    z-index: 2;

    max-width: 550px;
    margin: 0;

    color: #06162f;

    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.55;
    font-weight: 400;
}


/*==================================================
FEATURE CARDS
==================================================*/

.midwifery-about-features {
    margin-top: 110px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid rgba(6, 22, 47, 0.12);
    border-left: 1px solid rgba(6, 22, 47, 0.12);
}

.midwifery-about-card {
    position: relative;

    min-height: 280px;
    padding: 34px 31px 37px;

    overflow: hidden;

    border-right: 1px solid rgba(6, 22, 47, 0.12);
    border-bottom: 1px solid rgba(6, 22, 47, 0.12);

    background: rgba(255, 255, 255, 0.72);

    transition:
        transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
        background 0.4s ease,
        box-shadow 0.45s ease;
}

.midwifery-about-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #d6ae4c;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.45s ease;
}

.midwifery-about-card:hover {
    z-index: 2;

    background: #ffffff;

    transform: translateY(-7px);

    box-shadow:
        0 28px 65px rgba(6, 22, 47, 0.1);
}

.midwifery-about-card:hover::before {
    transform: scaleX(1);
}

.midwifery-about-card > span {
    display: block;
    margin-bottom: 55px;

    color: #b58b2b;

    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.midwifery-about-card h3 {
    margin: 0 0 16px;

    color: #06162f;

    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    line-height: 1.25;
    font-weight: 750;
    letter-spacing: -0.035em;

    transition: color 0.35s ease;
}

.midwifery-about-card p {
    margin: 0;

    color: rgba(6, 22, 47, 0.6);

    font-size: 0.9rem;
    line-height: 1.75;
}

.midwifery-about-card:hover h3 {
    color: #9a741f;
}


/*==================================================
SCROLL REVEAL
==================================================*/

.midwifery-about-header,
.midwifery-about-media,
.midwifery-about-content,
.midwifery-about-card {
    opacity: 0;
    transform: translateY(44px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-about-header.midwifery-about-visible,
.midwifery-about-media.midwifery-about-visible,
.midwifery-about-content.midwifery-about-visible,
.midwifery-about-card.midwifery-about-visible {
    opacity: 1;
    transform: translateY(0);
}

.midwifery-about-media {
    transition-delay: 0.08s;
}

.midwifery-about-content {
    transition-delay: 0.16s;
}

.midwifery-about-card:nth-child(1) {
    transition-delay: 0.04s;
}

.midwifery-about-card:nth-child(2) {
    transition-delay: 0.08s;
}

.midwifery-about-card:nth-child(3) {
    transition-delay: 0.12s;
}

.midwifery-about-card:nth-child(4) {
    transition-delay: 0.16s;
}

.midwifery-about-card:nth-child(5) {
    transition-delay: 0.2s;
}

.midwifery-about-card:nth-child(6) {
    transition-delay: 0.24s;
}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 1050px) {

    .midwifery-about-layout {
        grid-template-columns: 1fr;
    }

    .midwifery-about-media {
        min-height: 620px;
    }

    .midwifery-about-content {
        max-width: 820px;
    }

    .midwifery-about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 700px) {

    .midwifery-about {
        padding: 100px 22px 110px;
    }

    .midwifery-about-header {
        margin-bottom: 58px;
    }

    .midwifery-about-header > span {
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .midwifery-about-header > span::before {
        width: 31px;
    }

    .midwifery-about-header h2 {
        font-size: clamp(2.7rem, 12vw, 4.4rem);
        line-height: 0.98;
    }

    .midwifery-about-media {
        min-height: 480px;
    }

    .midwifery-about-image-label {
        left: 22px;
        right: 22px;
        bottom: 21px;

        display: block;
    }

    .midwifery-about-image-label strong {
        display: block;
        max-width: 100%;
        margin-top: 8px;

        font-size: 1rem;
        text-align: left;
    }

    .midwifery-about-content .midwifery-about-lead {
        font-size: 1.22rem;
        line-height: 1.6;
    }

    .midwifery-about-content > p {
        font-size: 0.94rem;
        line-height: 1.78;
    }

    .midwifery-about-quote {
        padding-left: 25px;
    }

    .midwifery-about-features {
        margin-top: 80px;
        grid-template-columns: 1fr;
    }

    .midwifery-about-card {
        min-height: 240px;
        padding: 29px 24px 31px;
    }

    .midwifery-about-card > span {
        margin-bottom: 43px;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .midwifery-about-header,
    .midwifery-about-media,
    .midwifery-about-content,
    .midwifery-about-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .midwifery-about-media img,
    .midwifery-about-card,
    .midwifery-about-card::before {
        transition: none;
    }

}



/*==================================================
MIDWIFERY — PROFESSIONAL JOURNEY
CSS PART 1
Layout • Timeline • Cards • Typography
==================================================*/

.midwifery-journey {
    position: relative;
    padding: 145px 6vw 155px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 93% 8%,
            rgba(214, 174, 76, 0.09),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #06162f 0%,
            #071a38 100%
        );

    color: #ffffff;
}

.midwifery-journey::before {
    content: "";

    position: absolute;
    top: -220px;
    right: -180px;

    width: 580px;
    height: 580px;

    border: 1px solid rgba(214, 174, 76, 0.11);
    border-radius: 50%;

    box-shadow:
        inset 0 0 100px rgba(214, 174, 76, 0.025),
        0 0 130px rgba(214, 174, 76, 0.025);

    pointer-events: none;
}

.midwifery-journey::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.38) 55%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.38) 55%,
        transparent 100%
    );

    pointer-events: none;
}

.midwifery-journey-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
SECTION HEADER
==================================================*/

.midwifery-journey-header {
    max-width: 1030px;
    margin-bottom: 95px;
}

.midwifery-journey-header > span {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 27px;

    color: #e0bd63;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.midwifery-journey-header > span::before {
    content: "";

    width: 45px;
    height: 1px;

    display: block;

    background: #d6ae4c;
}

.midwifery-journey-header h2 {
    max-width: 1050px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(3.2rem, 6.2vw, 6.9rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.midwifery-journey-header h2 em {
    display: block;

    color: #d6ae4c;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}


/*==================================================
TIMELINE WRAPPER
==================================================*/

.midwifery-journey-timeline {
    position: relative;
    max-width: 1220px;
    margin-left: auto;
}


/* Main vertical timeline line */

.midwifery-journey-timeline::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 105px;

    width: 1px;

    background: linear-gradient(
        180deg,
        rgba(214, 174, 76, 0.18) 0%,
        rgba(214, 174, 76, 0.62) 18%,
        rgba(214, 174, 76, 0.62) 82%,
        rgba(214, 174, 76, 0.18) 100%
    );
}


/*==================================================
JOURNEY ITEM
==================================================*/

.midwifery-journey-item {
    position: relative;

    min-height: 255px;
    padding: 0 0 55px;

    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: start;
}

.midwifery-journey-item:last-child {
    padding-bottom: 0;
}


/*==================================================
NUMBER COLUMN
==================================================*/

.midwifery-journey-number {
    position: relative;

    min-height: 200px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.midwifery-journey-number::before {
    content: "";

    position: absolute;
    top: 29px;
    left: 105px;

    width: 14px;
    height: 14px;

    border: 2px solid #d6ae4c;
    border-radius: 50%;

    background: #06162f;

    box-shadow:
        0 0 0 8px rgba(214, 174, 76, 0.08),
        0 0 26px rgba(214, 174, 76, 0.18);

    transform: translateX(-50%);

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-journey-number span {
    position: absolute;
    top: 0;
    left: 0;

    color: rgba(255, 255, 255, 0.09);

    font-size: clamp(4.7rem, 7vw, 7.8rem);
    line-height: 0.8;
    font-weight: 800;
    letter-spacing: -0.08em;

    transition:
        color 0.4s ease,
        transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}


/*==================================================
CONTENT CARD
==================================================*/

.midwifery-journey-content {
    position: relative;

    min-height: 205px;
    padding: 36px 42px 40px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    transition:
        transform 0.48s cubic-bezier(0.2, 0.7, 0.2, 1),
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.48s ease;
}

.midwifery-journey-content::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: #d6ae4c;

    transform: scaleY(0);
    transform-origin: top;

    transition: transform 0.48s ease;
}

.midwifery-journey-content::after {
    content: "";

    position: absolute;
    right: -100px;
    bottom: -110px;

    width: 240px;
    height: 240px;

    border: 1px solid rgba(214, 174, 76, 0.12);
    border-radius: 50%;

    opacity: 0;

    transform: scale(0.72);

    transition:
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}


/*==================================================
CARD HOVER
==================================================*/

.midwifery-journey-item:hover .midwifery-journey-content {
    border-color: rgba(214, 174, 76, 0.34);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.105),
            rgba(255, 255, 255, 0.04)
        );

    transform: translateX(10px);

    box-shadow:
        0 34px 75px rgba(0, 0, 0, 0.2);
}

.midwifery-journey-item:hover .midwifery-journey-content::before {
    transform: scaleY(1);
}

.midwifery-journey-item:hover .midwifery-journey-content::after {
    opacity: 1;
    transform: scale(1);
}

.midwifery-journey-item:hover .midwifery-journey-number::before {
    background: #d6ae4c;

    box-shadow:
        0 0 0 10px rgba(214, 174, 76, 0.1),
        0 0 34px rgba(214, 174, 76, 0.34);

    transform: translateX(-50%) scale(1.12);
}

.midwifery-journey-item:hover .midwifery-journey-number span {
    color: rgba(214, 174, 76, 0.16);
    transform: translateX(-5px);
}


/*==================================================
CARD TYPOGRAPHY
==================================================*/

.midwifery-journey-content small {
    position: relative;
    z-index: 2;

    display: block;
    margin-bottom: 17px;

    color: #d6ae4c;

    font-size: 0.67rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.midwifery-journey-content h3 {
    position: relative;
    z-index: 2;

    max-width: 780px;
    margin: 0 0 17px;

    color: #ffffff;

    font-size: clamp(1.55rem, 2.5vw, 2.45rem);
    line-height: 1.18;
    font-weight: 720;
    letter-spacing: -0.04em;

    transition: color 0.35s ease;
}

.midwifery-journey-content p {
    position: relative;
    z-index: 2;

    max-width: 790px;
    margin: 0;

    color: rgba(255, 255, 255, 0.67);

    font-size: 0.98rem;
    line-height: 1.82;

    transition: color 0.35s ease;
}

.midwifery-journey-item:hover .midwifery-journey-content h3 {
    color: #e7c66f;
}

.midwifery-journey-item:hover .midwifery-journey-content p {
    color: rgba(255, 255, 255, 0.79);
}


/*==================================================
ALTERNATING EDITORIAL OFFSET
==================================================*/

.midwifery-journey-item:nth-child(even)
.midwifery-journey-content {
    margin-right: 5vw;
}

.midwifery-journey-item:nth-child(odd)
.midwifery-journey-content {
    margin-left: 2vw;
}





/*==================================================
MIDWIFERY — PROFESSIONAL JOURNEY
CSS PART 2
Responsive • Scroll Reveal • Motion
==================================================*/


/*==================================================
INITIAL REVEAL STATE
==================================================*/

.midwifery-journey-header,
.midwifery-journey-item{

    opacity:0;

    transform:translateY(55px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2,.7,.2,1);

}

.midwifery-journey-header.midwifery-journey-visible,
.midwifery-journey-item.midwifery-journey-visible{

    opacity:1;

    transform:translateY(0);

}


/*==================================================
STAGGER EFFECT
==================================================*/

.midwifery-journey-item:nth-child(1){

    transition-delay:.05s;

}

.midwifery-journey-item:nth-child(2){

    transition-delay:.12s;

}

.midwifery-journey-item:nth-child(3){

    transition-delay:.19s;

}

.midwifery-journey-item:nth-child(4){

    transition-delay:.26s;

}


/*==================================================
LARGE TABLET
==================================================*/

@media screen and (max-width:1200px){

.midwifery-journey{

padding:120px 42px 130px;

}

.midwifery-journey-header{

margin-bottom:75px;

}

.midwifery-journey-header h2{

font-size:clamp(3rem,7vw,5.5rem);

}

.midwifery-journey-item{

grid-template-columns:170px 1fr;

}

.midwifery-journey-timeline::before{

left:85px;

}

.midwifery-journey-number::before{

left:85px;

}

.midwifery-journey-content{

padding:34px;

}

.midwifery-journey-item:nth-child(even)
.midwifery-journey-content{

margin-right:0;

}

.midwifery-journey-item:nth-child(odd)
.midwifery-journey-content{

margin-left:0;

}

}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width:900px){

.midwifery-journey{

padding:110px 30px 120px;

}

.midwifery-journey-header{

margin-bottom:60px;

}

.midwifery-journey-item{

grid-template-columns:90px 1fr;

padding-bottom:40px;

}

.midwifery-journey-timeline::before{

left:45px;

}

.midwifery-journey-number{

min-height:180px;

}

.midwifery-journey-number::before{

left:45px;

}

.midwifery-journey-number span{

font-size:4.4rem;

}

.midwifery-journey-content{

min-height:auto;

padding:30px;

}

.midwifery-journey-content h3{

font-size:1.75rem;

}

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width:640px){

.midwifery-journey{

padding:95px 22px 105px;

}

.midwifery-journey-header{

margin-bottom:55px;

}

.midwifery-journey-header>span{

font-size:.64rem;

letter-spacing:.16em;

}

.midwifery-journey-header>span::before{

width:30px;

}

.midwifery-journey-header h2{

font-size:clamp(2.6rem,12vw,4.3rem);

line-height:.98;

}

.midwifery-journey-timeline::before{

left:20px;

}

.midwifery-journey-item{

display:block;

padding-left:48px;

padding-bottom:38px;

}

.midwifery-journey-number{

position:absolute;

left:0;

top:0;

min-height:0;

}

.midwifery-journey-number span{

display:none;

}

.midwifery-journey-number::before{

left:20px;

top:24px;

width:12px;

height:12px;

}

.midwifery-journey-content{

padding:26px 22px;

}

.midwifery-journey-content h3{

font-size:1.45rem;

line-height:1.28;

}

.midwifery-journey-content p{

font-size:.92rem;

line-height:1.75;

}

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

.midwifery-journey-header,
.midwifery-journey-item{

opacity:1;

transform:none;

transition:none;

}

.midwifery-journey-content,
.midwifery-journey-content::before,
.midwifery-journey-content::after,
.midwifery-journey-number::before,
.midwifery-journey-number span{

transition:none;

}

}










/*==================================================
MIDWIFERY — WHAT YOU'LL LEARN
CSS PART 1
Structure • Layout • Accordion • Visual
==================================================*/

.midwifery-learning {
    position: relative;
    padding: 145px 6vw 155px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 7% 12%,
            rgba(214, 174, 76, 0.09),
            transparent 27%
        ),
        #f6f4ef;

    color: #06162f;
}

.midwifery-learning::before {
    content: "";

    position: absolute;
    top: -220px;
    left: -190px;

    width: 560px;
    height: 560px;

    border: 1px solid rgba(6, 22, 47, 0.06);
    border-radius: 50%;

    pointer-events: none;
}

.midwifery-learning::after {
    content: "";

    position: absolute;
    right: -140px;
    bottom: -180px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(214, 174, 76, 0.11);
    border-radius: 50%;

    pointer-events: none;
}

.midwifery-learning-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
SECTION HEADER
==================================================*/

.midwifery-learning-header {
    max-width: 1040px;
    margin-bottom: 90px;
}

.midwifery-learning-header > span {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 26px;

    color: #a77f25;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.midwifery-learning-header > span::before {
    content: "";

    width: 45px;
    height: 1px;

    display: block;

    background: #b58b2b;
}

.midwifery-learning-header h2 {
    max-width: 1050px;
    margin: 0;

    color: #06162f;

    font-size: clamp(3.2rem, 6.2vw, 6.9rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.midwifery-learning-header h2 em {
    display: block;

    color: #b58b2b;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}

.midwifery-learning-header p {
    max-width: 720px;
    margin: 34px 0 0;

    color: rgba(6, 22, 47, 0.64);

    font-size: 1rem;
    line-height: 1.85;
}


/*==================================================
MAIN LAYOUT
==================================================*/

.midwifery-learning-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(430px, 0.75fr);

    gap: clamp(55px, 7vw, 110px);
    align-items: start;
}


/*==================================================
ACCORDION
==================================================*/

.midwifery-learning-accordion {
    border-top: 1px solid rgba(6, 22, 47, 0.15);
}

.midwifery-learning-item {
    position: relative;

    border-bottom: 1px solid rgba(6, 22, 47, 0.15);

    transition:
        background 0.4s ease,
        border-color 0.4s ease;
}

.midwifery-learning-item::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 3px;
    height: 100%;

    background: #d6ae4c;

    transform: scaleY(0);
    transform-origin: top;

    transition: transform 0.45s ease;
}

.midwifery-learning-item.is-active {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(181, 139, 43, 0.3);
}

.midwifery-learning-item.is-active::before {
    transform: scaleY(1);
}


/*==================================================
ACCORDION TRIGGER
==================================================*/

.midwifery-learning-trigger {
    width: 100%;
    min-height: 114px;
    padding: 30px 24px 30px 28px;

    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 36px;
    gap: 18px;
    align-items: center;

    border: 0;
    outline: 0;

    background: transparent;

    color: #06162f;
    text-align: left;

    cursor: pointer;

    transition:
        padding-left 0.4s ease,
        background 0.4s ease;
}

.midwifery-learning-trigger:hover {
    padding-left: 35px;
}

.midwifery-learning-trigger:focus-visible {
    outline: 2px solid #b58b2b;
    outline-offset: -4px;
}


/*==================================================
MODULE NUMBER
==================================================*/

.midwifery-learning-number {
    color: #b58b2b;

    font-size: 0.68rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;
}


/*==================================================
MODULE TITLE
==================================================*/

.midwifery-learning-title {
    color: #06162f;

    font-size: clamp(1.25rem, 2vw, 1.85rem);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.035em;

    transition: color 0.35s ease;
}

.midwifery-learning-item.is-active
.midwifery-learning-title {
    color: #9b731e;
}


/*==================================================
PLUS / MINUS ICON
==================================================*/

.midwifery-learning-icon {
    position: relative;

    width: 32px;
    height: 32px;

    display: block;

    border: 1px solid rgba(6, 22, 47, 0.18);
    border-radius: 50%;

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.4s ease;
}

.midwifery-learning-icon::before,
.midwifery-learning-icon::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 12px;
    height: 1px;

    background: #06162f;

    transform: translate(-50%, -50%);

    transition:
        transform 0.4s ease,
        background 0.35s ease;
}

.midwifery-learning-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.midwifery-learning-item.is-active
.midwifery-learning-icon {
    border-color: #b58b2b;
    background: #b58b2b;

    transform: rotate(180deg);
}

.midwifery-learning-item.is-active
.midwifery-learning-icon::before,
.midwifery-learning-item.is-active
.midwifery-learning-icon::after {
    background: #ffffff;
}

.midwifery-learning-item.is-active
.midwifery-learning-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(0deg);
}


/*==================================================
ACCORDION PANEL
==================================================*/

.midwifery-learning-panel {
    display: grid;
    grid-template-rows: 0fr;

    overflow: hidden;

    transition:
        grid-template-rows 0.55s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-learning-item.is-active
.midwifery-learning-panel {
    grid-template-rows: 1fr;
}

.midwifery-learning-panel-inner {
    min-height: 0;
    overflow: hidden;

    padding: 0 72px 0 98px;

    opacity: 0;
    transform: translateY(-10px);

    transition:
        opacity 0.4s ease,
        transform 0.45s ease,
        padding-bottom 0.45s ease;
}

.midwifery-learning-item.is-active
.midwifery-learning-panel-inner {
    padding-bottom: 35px;

    opacity: 1;
    transform: translateY(0);
}

.midwifery-learning-panel-inner p {
    max-width: 690px;
    margin: 0 0 21px;

    color: rgba(6, 22, 47, 0.65);

    font-size: 0.94rem;
    line-height: 1.82;
}

.midwifery-learning-panel-inner ul {
    margin: 0;
    padding: 0;

    display: grid;
    gap: 10px;

    list-style: none;
}

.midwifery-learning-panel-inner li {
    position: relative;

    padding-left: 22px;

    color: rgba(6, 22, 47, 0.76);

    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 600;
}

.midwifery-learning-panel-inner li::before {
    content: "";

    position: absolute;
    top: 0.72em;
    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d6ae4c;

    transform: translateY(-50%);
}


/*==================================================
VISUAL COLUMN
==================================================*/

.midwifery-learning-visual {
    position: sticky;
    top: 110px;
}

.midwifery-learning-image-wrap {
    position: relative;

    min-height: 690px;
    overflow: hidden;

    background: #06162f;
}

.midwifery-learning-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.025);

    transition:
        opacity 0.45s ease,
        transform 0.9s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-learning-image-wrap:hover
.midwifery-learning-image {
    transform: scale(1.065);
}

.midwifery-learning-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.03) 25%,
            rgba(6, 22, 47, 0.8) 100%
        );
}

.midwifery-learning-image-content {
    position: absolute;
    right: 38px;
    bottom: 37px;
    left: 38px;
    z-index: 2;
}

.midwifery-learning-image-label {
    display: block;
    margin-bottom: 13px;

    color: #e2bd60;

    font-size: 0.65rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.midwifery-learning-image-title {
    max-width: 460px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.045em;
}


/*==================================================
PROGRESS INDICATOR
==================================================*/

.midwifery-learning-progress {
    padding-top: 24px;

    display: grid;
    grid-template-columns: auto minmax(80px, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.midwifery-learning-progress > span {
    color: rgba(6, 22, 47, 0.58);

    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.midwifery-learning-progress strong {
    color: #06162f;

    font-size: 0.72rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.midwifery-learning-progress-line {
    position: relative;

    width: 100%;
    height: 1px;

    overflow: hidden;

    background: rgba(6, 22, 47, 0.15);
}

.midwifery-learning-progress-line span {
    position: absolute;
    inset: 0 auto 0 0;

    width: 16.666%;

    background: #b58b2b;

    transition:
        width 0.55s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}









/*==================================================
MIDWIFERY — WHAT YOU'LL LEARN
CSS PART 2
Responsive • Animations • Scroll Reveal
==================================================*/


/*==========================================
SCROLL REVEAL
==========================================*/

.midwifery-learning-header,
.midwifery-learning-accordion,
.midwifery-learning-visual{
    opacity:0;
    transform:translateY(45px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2,.7,.2,1);
}

.midwifery-learning-header.midwifery-learning-visible,
.midwifery-learning-accordion.midwifery-learning-visible,
.midwifery-learning-visual.midwifery-learning-visible{
    opacity:1;
    transform:none;
}

.midwifery-learning-accordion{
    transition-delay:.08s;
}

.midwifery-learning-visual{
    transition-delay:.18s;
}



/*==========================================
IMAGE FADE
==========================================*/

.midwifery-learning-image{
    opacity:1;
}

.midwifery-learning-image.is-changing{
    opacity:.15;
}



/*==========================================
TABLET
==========================================*/

@media (max-width:1100px){

    .midwifery-learning{
        padding:120px 5vw 130px;
    }

    .midwifery-learning-layout{

        grid-template-columns:1fr;
        gap:70px;

    }

    .midwifery-learning-visual{

        position:relative;
        top:auto;

        order:-1;

    }

    .midwifery-learning-image-wrap{

        min-height:560px;

    }

}



/*==========================================
MOBILE
==========================================*/

@media (max-width:768px){

    .midwifery-learning{

        padding:95px 22px 105px;

    }

    .midwifery-learning-header{

        margin-bottom:55px;

    }

    .midwifery-learning-header span{

        font-size:.64rem;

    }

    .midwifery-learning-header h2{

        font-size:clamp(2.6rem,12vw,4.2rem);
        line-height:.98;

    }

    .midwifery-learning-header p{

        margin-top:22px;

        font-size:.95rem;
        line-height:1.75;

    }


    .midwifery-learning-trigger{

        grid-template-columns:42px 1fr 30px;

        gap:14px;

        min-height:95px;

        padding:22px 18px;

    }

    .midwifery-learning-trigger:hover{

        padding-left:22px;

    }


    .midwifery-learning-title{

        font-size:1.2rem;

    }


    .midwifery-learning-panel-inner{

        padding:0 18px 0 56px;

    }

    .midwifery-learning-item.is-active
    .midwifery-learning-panel-inner{

        padding-bottom:28px;

    }

    .midwifery-learning-panel-inner p{

        font-size:.9rem;

    }

    .midwifery-learning-image-wrap{

        min-height:440px;

    }

    .midwifery-learning-image-content{

        left:24px;
        right:24px;
        bottom:24px;

    }

    .midwifery-learning-image-title{

        font-size:2rem;

    }

    .midwifery-learning-progress{

        gap:12px;

    }

}



/*==========================================
SMALL MOBILE
==========================================*/

@media (max-width:500px){

    .midwifery-learning-trigger{

        grid-template-columns:34px 1fr 26px;

    }

    .midwifery-learning-title{

        font-size:1.05rem;

    }

    .midwifery-learning-panel-inner{

        padding-left:46px;

    }

    .midwifery-learning-image-wrap{

        min-height:390px;

    }

}



/*==========================================
REDUCED MOTION
==========================================*/

@media (prefers-reduced-motion:reduce){

    .midwifery-learning-header,
    .midwifery-learning-accordion,
    .midwifery-learning-visual{

        opacity:1;
        transform:none;
        transition:none;

    }

    .midwifery-learning-image,
    .midwifery-learning-progress-line span,
    .midwifery-learning-panel,
    .midwifery-learning-panel-inner{

        transition:none;

    }

}







/*==================================================
MIDWIFERY — LEARNING EXPERIENCE
==================================================*/

.midwifery-experience {
    position: relative;
    padding: 145px 6vw 155px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 94% 7%,
            rgba(214, 174, 76, 0.08),
            transparent 27%
        ),
        #ffffff;

    color: #06162f;
}

.midwifery-experience::before {
    content: "";

    position: absolute;
    top: -220px;
    right: -190px;

    width: 570px;
    height: 570px;

    border: 1px solid rgba(6, 22, 47, 0.055);
    border-radius: 50%;

    pointer-events: none;
}

.midwifery-experience-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
HEADER
==================================================*/

.midwifery-experience-header {
    max-width: 1040px;
    margin-bottom: 88px;
}

.midwifery-experience-header > span {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 26px;

    color: #a77f25;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.midwifery-experience-header > span::before {
    content: "";

    width: 45px;
    height: 1px;

    display: block;

    background: #b58b2b;
}

.midwifery-experience-header h2 {
    max-width: 1050px;
    margin: 0;

    color: #06162f;

    font-size: clamp(3.2rem, 6.2vw, 6.9rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.midwifery-experience-header h2 em {
    display: block;

    color: #b58b2b;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}

.midwifery-experience-header p {
    max-width: 750px;
    margin: 34px 0 0;

    color: rgba(6, 22, 47, 0.64);

    font-size: 1rem;
    line-height: 1.85;
}


/*==================================================
GRID
==================================================*/

.midwifery-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 340px;
    gap: 22px;
}

.midwifery-experience-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.midwifery-experience-card-wide {
    grid-column: span 2;
}


/*==================================================
CARD
==================================================*/

.midwifery-experience-card {
    position: relative;

    min-width: 0;
    min-height: 340px;

    overflow: hidden;

    background: #06162f;

    isolation: isolate;

    transition:
        transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.55s ease;
}

.midwifery-experience-card:hover {
    z-index: 3;

    transform: translateY(-8px);

    box-shadow:
        0 34px 75px rgba(6, 22, 47, 0.18);
}


/*==================================================
CARD IMAGE
==================================================*/

.midwifery-experience-card-image {
    position: absolute;
    inset: 0;
    z-index: -2;

    overflow: hidden;
}

.midwifery-experience-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.025);

    transition:
        transform 1s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.7s ease;
}

.midwifery-experience-card:hover
.midwifery-experience-card-image img {
    transform: scale(1.09);
}


/*==================================================
OVERLAY
==================================================*/

.midwifery-experience-card-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.03) 15%,
            rgba(6, 22, 47, 0.22) 45%,
            rgba(6, 22, 47, 0.95) 100%
        );

    transition: background 0.5s ease;
}

.midwifery-experience-card:hover
.midwifery-experience-card-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.08) 10%,
            rgba(6, 22, 47, 0.35) 45%,
            rgba(6, 22, 47, 0.98) 100%
        );
}


/*==================================================
CARD CONTENT
==================================================*/

.midwifery-experience-card-content {
    position: absolute;
    inset: auto 0 0;

    padding: 32px;

    display: flex;
    align-items: flex-end;
    gap: 22px;

    color: #ffffff;
}

.midwifery-experience-card-large
.midwifery-experience-card-content {
    padding: 45px;
}

.midwifery-experience-number {
    flex: 0 0 auto;

    padding-bottom: 7px;

    color: #d6ae4c;

    font-size: 0.66rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.midwifery-experience-card-content > div {
    min-width: 0;
}

.midwifery-experience-card h3 {
    max-width: 580px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.04em;

    transition:
        color 0.35s ease,
        transform 0.45s ease;
}

.midwifery-experience-card-large h3 {
    font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.midwifery-experience-card p {
    max-width: 610px;
    max-height: 0;
    margin: 0;

    overflow: hidden;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.9rem;
    line-height: 1.7;

    opacity: 0;
    transform: translateY(12px);

    transition:
        max-height 0.55s ease,
        margin-top 0.45s ease,
        opacity 0.45s ease,
        transform 0.45s ease;
}

.midwifery-experience-card:hover p,
.midwifery-experience-card.is-focused p {
    max-height: 150px;
    margin-top: 13px;

    opacity: 1;
    transform: translateY(0);
}

.midwifery-experience-card:hover h3,
.midwifery-experience-card.is-focused h3 {
    color: #e7c66f;
    transform: translateY(-2px);
}


/*==================================================
TOP ACCENT
==================================================*/

.midwifery-experience-card::after {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;

    width: 100%;
    height: 3px;

    background: #d6ae4c;

    transform: scaleX(0);
    transform-origin: left;

    transition:
        transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-experience-card:hover::after,
.midwifery-experience-card.is-focused::after {
    transform: scaleX(1);
}


/*==================================================
SCROLL REVEAL
==================================================*/

.midwifery-experience-header,
.midwifery-experience-card {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.55s ease;
}

.midwifery-experience-header.midwifery-experience-visible,
.midwifery-experience-card.midwifery-experience-visible {
    opacity: 1;
    transform: translateY(0);
}

.midwifery-experience-card:nth-child(1) {
    transition-delay: 0.04s;
}

.midwifery-experience-card:nth-child(2) {
    transition-delay: 0.08s;
}

.midwifery-experience-card:nth-child(3) {
    transition-delay: 0.12s;
}

.midwifery-experience-card:nth-child(4) {
    transition-delay: 0.16s;
}

.midwifery-experience-card:nth-child(5) {
    transition-delay: 0.2s;
}

.midwifery-experience-card:nth-child(6) {
    transition-delay: 0.24s;
}


/*==================================================
LARGE TABLET
==================================================*/

@media screen and (max-width: 1100px) {

    .midwifery-experience {
        padding: 120px 5vw 130px;
    }

    .midwifery-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 390px;
    }

    .midwifery-experience-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .midwifery-experience-card-wide {
        grid-column: span 2;
    }

    .midwifery-experience-card-large
    .midwifery-experience-card-content {
        padding: 38px;
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 700px) {

    .midwifery-experience {
        padding: 95px 22px 105px;
    }

    .midwifery-experience-header {
        margin-bottom: 58px;
    }

    .midwifery-experience-header > span {
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .midwifery-experience-header > span::before {
        width: 31px;
    }

    .midwifery-experience-header h2 {
        font-size: clamp(2.7rem, 12vw, 4.4rem);
        line-height: 0.98;
    }

    .midwifery-experience-header p {
        margin-top: 24px;

        font-size: 0.94rem;
        line-height: 1.75;
    }

    .midwifery-experience-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 17px;
    }

    .midwifery-experience-card,
    .midwifery-experience-card-large,
    .midwifery-experience-card-wide {
        grid-column: auto;
        grid-row: auto;

        min-height: 450px;
    }

    .midwifery-experience-card-content,
    .midwifery-experience-card-large
    .midwifery-experience-card-content {
        padding: 27px 24px;
        gap: 15px;
    }

    .midwifery-experience-card h3,
    .midwifery-experience-card-large h3 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .midwifery-experience-card p {
        max-height: 180px;
        margin-top: 12px;

        font-size: 0.87rem;

        opacity: 1;
        transform: none;
    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width: 430px) {

    .midwifery-experience-card,
    .midwifery-experience-card-large,
    .midwifery-experience-card-wide {
        min-height: 410px;
    }

    .midwifery-experience-card-content,
    .midwifery-experience-card-large
    .midwifery-experience-card-content {
        align-items: flex-start;
        padding: 25px 21px;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .midwifery-experience-header,
    .midwifery-experience-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .midwifery-experience-card,
    .midwifery-experience-card-image img,
    .midwifery-experience-card h3,
    .midwifery-experience-card p,
    .midwifery-experience-card::after {
        transition: none;
    }

}






/*==================================================
MIDWIFERY — CAREER OPPORTUNITIES
==================================================*/

.midwifery-careers {
    position: relative;
    padding: 145px 6vw 155px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(214, 174, 76, 0.09),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #06162f 0%,
            #071a38 100%
        );

    color: #ffffff;
}

.midwifery-careers::before {
    content: "";

    position: absolute;
    top: -230px;
    left: -190px;

    width: 580px;
    height: 580px;

    border: 1px solid rgba(214, 174, 76, 0.1);
    border-radius: 50%;

    pointer-events: none;
}

.midwifery-careers::after {
    content: "";

    position: absolute;
    right: -160px;
    bottom: -190px;

    width: 480px;
    height: 480px;

    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;

    pointer-events: none;
}

.midwifery-careers-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
HEADER
==================================================*/

.midwifery-careers-header {
    max-width: 1050px;
    margin-bottom: 90px;
}

.midwifery-careers-header > span {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 26px;

    color: #e0bd63;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.midwifery-careers-header > span::before {
    content: "";

    width: 45px;
    height: 1px;

    display: block;

    background: #d6ae4c;
}

.midwifery-careers-header h2 {
    max-width: 1050px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(3.2rem, 6.2vw, 6.9rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.midwifery-careers-header h2 em {
    display: block;

    color: #d6ae4c;

    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 400;
}

.midwifery-careers-header p {
    max-width: 760px;
    margin: 34px 0 0;

    color: rgba(255, 255, 255, 0.66);

    font-size: 1rem;
    line-height: 1.85;
}


/*==================================================
GRID
==================================================*/

.midwifery-careers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}


/*==================================================
CAREER CARD
==================================================*/

.midwifery-careers-card {
    position: relative;

    min-height: 390px;
    padding: 35px 34px 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform 0.48s cubic-bezier(0.2, 0.7, 0.2, 1),
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.48s ease;
}

.midwifery-careers-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #d6ae4c;

    transform: scaleX(0);
    transform-origin: left;

    transition:
        transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-careers-card::after {
    content: "";

    position: absolute;
    right: -100px;
    bottom: -110px;

    width: 240px;
    height: 240px;

    border: 1px solid rgba(214, 174, 76, 0.12);
    border-radius: 50%;

    opacity: 0;

    transform: scale(0.75);

    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-careers-card:hover,
.midwifery-careers-card.is-focused {
    z-index: 3;

    border-color: rgba(214, 174, 76, 0.32);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.03)
        );

    transform: translateY(-8px);

    box-shadow:
        0 32px 70px rgba(0, 0, 0, 0.24);
}

.midwifery-careers-card:hover::before,
.midwifery-careers-card.is-focused::before {
    transform: scaleX(1);
}

.midwifery-careers-card:hover::after,
.midwifery-careers-card.is-focused::after {
    opacity: 1;
    transform: scale(1);
}


/*==================================================
CARD TOP
==================================================*/

.midwifery-careers-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.midwifery-careers-number {
    color: #d6ae4c;

    font-size: 0.68rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.15em;
}


/*==================================================
ICON
==================================================*/

.midwifery-careers-icon {
    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(214, 174, 76, 0.3);
    border-radius: 50%;

    color: #d6ae4c;

    background: rgba(214, 174, 76, 0.045);

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-careers-icon svg {
    width: 24px;
    height: 24px;

    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.midwifery-careers-card:hover .midwifery-careers-icon,
.midwifery-careers-card.is-focused .midwifery-careers-icon {
    color: #06162f;

    border-color: #d6ae4c;
    background: #d6ae4c;

    transform: rotate(6deg) scale(1.06);
}


/*==================================================
CARD CONTENT
==================================================*/

.midwifery-careers-card-content {
    position: relative;
    z-index: 2;
}

.midwifery-careers-card h3 {
    max-width: 340px;
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(1.45rem, 2.1vw, 2.15rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.04em;

    transition:
        color 0.35s ease,
        transform 0.4s ease;
}

.midwifery-careers-card p {
    max-width: 360px;
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.91rem;
    line-height: 1.75;

    transition: color 0.35s ease;
}

.midwifery-careers-card:hover h3,
.midwifery-careers-card.is-focused h3 {
    color: #e7c66f;
    transform: translateY(-3px);
}

.midwifery-careers-card:hover p,
.midwifery-careers-card.is-focused p {
    color: rgba(255, 255, 255, 0.8);
}


/*==================================================
SCROLL REVEAL
==================================================*/

.midwifery-careers-header,
.midwifery-careers-card {
    opacity: 0;
    transform: translateY(44px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.48s ease;
}

.midwifery-careers-header.midwifery-careers-visible,
.midwifery-careers-card.midwifery-careers-visible {
    opacity: 1;
    transform: translateY(0);
}

.midwifery-careers-card:nth-child(1) {
    transition-delay: 0.04s;
}

.midwifery-careers-card:nth-child(2) {
    transition-delay: 0.08s;
}

.midwifery-careers-card:nth-child(3) {
    transition-delay: 0.12s;
}

.midwifery-careers-card:nth-child(4) {
    transition-delay: 0.16s;
}

.midwifery-careers-card:nth-child(5) {
    transition-delay: 0.2s;
}

.midwifery-careers-card:nth-child(6) {
    transition-delay: 0.24s;
}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 1050px) {

    .midwifery-careers {
        padding: 120px 5vw 130px;
    }

    .midwifery-careers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 700px) {

    .midwifery-careers {
        padding: 95px 22px 105px;
    }

    .midwifery-careers-header {
        margin-bottom: 58px;
    }

    .midwifery-careers-header > span {
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .midwifery-careers-header > span::before {
        width: 31px;
    }

    .midwifery-careers-header h2 {
        font-size: clamp(2.7rem, 12vw, 4.4rem);
        line-height: 0.98;
    }

    .midwifery-careers-header p {
        margin-top: 24px;

        font-size: 0.94rem;
        line-height: 1.75;
    }

    .midwifery-careers-grid {
        grid-template-columns: 1fr;
    }

    .midwifery-careers-card {
        min-height: 330px;
        padding: 29px 25px 32px;
    }

    .midwifery-careers-icon {
        width: 48px;
        height: 48px;
    }

    .midwifery-careers-icon svg {
        width: 22px;
        height: 22px;
    }

    .midwifery-careers-card h3 {
        font-size: clamp(1.45rem, 7vw, 1.9rem);
    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width: 430px) {

    .midwifery-careers-card {
        min-height: 310px;
        padding: 27px 22px 29px;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .midwifery-careers-header,
    .midwifery-careers-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .midwifery-careers-card,
    .midwifery-careers-card::before,
    .midwifery-careers-card::after,
    .midwifery-careers-icon,
    .midwifery-careers-card h3,
    .midwifery-careers-card p {
        transition: none;
    }

}







/*==================================================
MIDWIFERY — PROGRAMME INFORMATION
CSS PART 1
==================================================*/

.midwifery-info{
    position:relative;
    overflow:hidden;

    padding:150px 6vw;

    background:
    radial-gradient(circle at 92% 8%,
    rgba(214,174,76,.08),
    transparent 26%),
    #f8f7f3;
}

.midwifery-info::before{

    content:"";

    position:absolute;

    top:-220px;
    right:-180px;

    width:540px;
    height:540px;

    border:1px solid rgba(6,22,47,.05);
    border-radius:50%;

}

.midwifery-info-container{

    position:relative;
    z-index:2;

    max-width:1450px;
    margin:auto;

}


/*==================================================
HEADER
==================================================*/

.midwifery-info-header{

    max-width:900px;

    margin-bottom:85px;

}

.midwifery-info-header span{

    display:inline-flex;
    align-items:center;
    gap:14px;

    margin-bottom:25px;

    color:#b58b2b;

    text-transform:uppercase;
    letter-spacing:.18em;

    font-size:.72rem;
    font-weight:800;

}

.midwifery-info-header span::before{

    content:"";

    width:45px;
    height:1px;

    background:#b58b2b;

}

.midwifery-info-header h2{

    margin:0;

    color:#06162f;

    font-size:clamp(3rem,6vw,6.8rem);

    line-height:.95;

    letter-spacing:-.06em;

    font-weight:800;

}

.midwifery-info-header h2 em{

    display:block;

    color:#b58b2b;

    font-family:"Libre Baskerville",serif;

    font-style:normal;
    font-weight:400;

}


/*==================================================
GRID
==================================================*/

.midwifery-info-grid{

    display:grid;

    grid-template-columns:
    repeat(4,minmax(0,1fr));

    gap:24px;

}


/*==================================================
CARD
==================================================*/

.midwifery-info-card{

    position:relative;

    min-height:250px;

    padding:34px;

    background:#fff;

    border:1px solid
    rgba(6,22,47,.08);

    overflow:hidden;

    transition:
    transform .45s,
    border-color .45s,
    box-shadow .45s;

}

.midwifery-info-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:#d6ae4c;

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .45s;

}

.midwifery-info-card::after{

    content:"";

    position:absolute;

    right:-110px;
    bottom:-110px;

    width:230px;
    height:230px;

    border-radius:50%;

    border:1px solid
    rgba(214,174,76,.12);

    transform:scale(.75);

    opacity:0;

    transition:.45s;

}

.midwifery-info-card:hover{

    transform:translateY(-8px);

    border-color:
    rgba(181,139,43,.28);

    box-shadow:
    0 25px 65px
    rgba(6,22,47,.10);

}

.midwifery-info-card:hover::before{

    transform:scaleX(1);

}

.midwifery-info-card:hover::after{

    opacity:1;
    transform:scale(1);

}


/*==================================================
TEXT
==================================================*/

.midwifery-info-card small{

    display:block;

    margin-bottom:18px;

    color:#b58b2b;

    font-size:.70rem;

    text-transform:uppercase;

    letter-spacing:.18em;

    font-weight:800;

}

.midwifery-info-card h3{

    margin:0 0 18px;

    color:#06162f;

    font-size:1.7rem;

    line-height:1.2;

    letter-spacing:-.04em;

    font-weight:700;

    transition:.35s;

}

.midwifery-info-card p{

    margin:0;

    color:rgba(6,22,47,.66);

    font-size:.95rem;

    line-height:1.75;

    transition:.35s;

}

.midwifery-info-card:hover h3{

    color:#b58b2b;

}

.midwifery-info-card:hover p{

    color:rgba(6,22,47,.82);

}


/*==================================================
SCROLL REVEAL
==================================================*/

.midwifery-info-header,
.midwifery-info-card{

    opacity:0;

    transform:translateY(45px);

    transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.2,.7,.2,1);

}

.midwifery-info-header.midwifery-info-visible,
.midwifery-info-card.midwifery-info-visible{

    opacity:1;

    transform:none;

}

.midwifery-info-card:nth-child(1){transition-delay:.03s;}
.midwifery-info-card:nth-child(2){transition-delay:.06s;}
.midwifery-info-card:nth-child(3){transition-delay:.09s;}
.midwifery-info-card:nth-child(4){transition-delay:.12s;}
.midwifery-info-card:nth-child(5){transition-delay:.15s;}
.midwifery-info-card:nth-child(6){transition-delay:.18s;}
.midwifery-info-card:nth-child(7){transition-delay:.21s;}
.midwifery-info-card:nth-child(8){transition-delay:.24s;}






/*==================================================
MIDWIFERY — PROGRAMME INFORMATION
CSS PART 2
Responsive Styles • Accessibility
==================================================*/


/*==================================================
LARGE TABLET
==================================================*/

@media screen and (max-width: 1180px) {

    .midwifery-info {
        padding: 125px 5vw 135px;
    }

    .midwifery-info-header {
        margin-bottom: 72px;
    }

    .midwifery-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .midwifery-info-card {
        min-height: 235px;
    }

}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 820px) {

    .midwifery-info {
        padding: 105px 28px 115px;
    }

    .midwifery-info-header {
        margin-bottom: 62px;
    }

    .midwifery-info-header span {
        margin-bottom: 21px;

        font-size: 0.66rem;
        letter-spacing: 0.16em;
    }

    .midwifery-info-header span::before {
        width: 34px;
    }

    .midwifery-info-header h2 {
        font-size: clamp(2.8rem, 10vw, 5rem);
        line-height: 0.98;
    }

    .midwifery-info-card {
        min-height: 220px;
        padding: 30px;
    }

    .midwifery-info-card h3 {
        font-size: 1.55rem;
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 620px) {

    .midwifery-info {
        padding: 92px 20px 102px;
    }

    .midwifery-info::before {
        top: -150px;
        right: -190px;

        width: 390px;
        height: 390px;
    }

    .midwifery-info-header {
        margin-bottom: 52px;
    }

    .midwifery-info-header span {
        gap: 11px;

        margin-bottom: 18px;

        font-size: 0.62rem;
        letter-spacing: 0.15em;
    }

    .midwifery-info-header span::before {
        width: 28px;
    }

    .midwifery-info-header h2 {
        font-size: clamp(2.55rem, 12vw, 4rem);
        line-height: 0.98;
        letter-spacing: -0.055em;
    }

    .midwifery-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .midwifery-info-card {
        min-height: auto;
        padding: 27px 24px 29px;
    }

    .midwifery-info-card small {
        margin-bottom: 15px;

        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .midwifery-info-card h3 {
        margin-bottom: 13px;

        font-size: clamp(1.4rem, 7vw, 1.75rem);
        line-height: 1.24;
    }

    .midwifery-info-card p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width: 390px) {

    .midwifery-info {
        padding-right: 17px;
        padding-left: 17px;
    }

    .midwifery-info-header h2 {
        font-size: 2.45rem;
    }

    .midwifery-info-card {
        padding: 25px 21px 27px;
    }

}


/*==================================================
TOUCH DEVICES
==================================================*/

@media (hover: none) {

    .midwifery-info-card:hover {
        transform: none;
        box-shadow: none;
    }

    .midwifery-info-card.is-focused {
        transform: translateY(-5px);

        border-color: rgba(181, 139, 43, 0.28);

        box-shadow:
            0 22px 55px rgba(6, 22, 47, 0.1);
    }

    .midwifery-info-card.is-focused::before {
        transform: scaleX(1);
    }

    .midwifery-info-card.is-focused::after {
        opacity: 1;
        transform: scale(1);
    }

    .midwifery-info-card.is-focused h3 {
        color: #b58b2b;
    }

    .midwifery-info-card.is-focused p {
        color: rgba(6, 22, 47, 0.82);
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .midwifery-info-header,
    .midwifery-info-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .midwifery-info-card,
    .midwifery-info-card::before,
    .midwifery-info-card::after,
    .midwifery-info-card h3,
    .midwifery-info-card p {
        transition: none;
    }

}











/*==================================================
MIDWIFERY — FREQUENTLY ASKED QUESTIONS
CSS PART 1
Layout • Accordion • Typography • Animation
==================================================*/

.midwifery-faq {
    position: relative;

    padding: 145px 6vw 155px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(214, 174, 76, 0.09),
            transparent 28%
        ),
        #f7f5ef;

    color: #06162f;
}

.midwifery-faq::before {
    content: "";

    position: absolute;
    top: -220px;
    right: -190px;

    width: 570px;
    height: 570px;

    border: 1px solid rgba(6, 22, 47, 0.055);
    border-radius: 50%;

    pointer-events: none;
}

.midwifery-faq::after {
    content: "";

    position: absolute;
    bottom: -185px;
    left: -150px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(214, 174, 76, 0.11);
    border-radius: 50%;

    pointer-events: none;
}

.midwifery-faq-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
HEADER
==================================================*/

.midwifery-faq-header {
    max-width: 1030px;
    margin-bottom: 88px;
}

.midwifery-faq-header > span {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 26px;

    color: #a77f25;

    font-size: 0.72rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.midwifery-faq-header > span::before {
    content: "";

    display: block;

    width: 45px;
    height: 1px;

    background: #b58b2b;
}

.midwifery-faq-header h2 {
    max-width: 1050px;
    margin: 0;

    color: #06162f;

    font-size: clamp(3.2rem, 6.2vw, 6.9rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.midwifery-faq-header h2 em {
    display: block;

    color: #b58b2b;

    font-family: "Libre Baskerville", Georgia, serif;
    font-style: normal;
    font-weight: 400;
}

.midwifery-faq-header p {
    max-width: 720px;
    margin: 34px 0 0;

    color: rgba(6, 22, 47, 0.64);

    font-size: 1rem;
    line-height: 1.85;
}


/*==================================================
MAIN LAYOUT
==================================================*/

.midwifery-faq-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.42fr);

    gap: clamp(55px, 7vw, 105px);
    align-items: start;
}


/*==================================================
FAQ LIST
==================================================*/

.midwifery-faq-list {
    border-top: 1px solid rgba(6, 22, 47, 0.15);
}

.midwifery-faq-item {
    position: relative;

    border-bottom: 1px solid rgba(6, 22, 47, 0.15);

    transition:
        background 0.4s ease,
        border-color 0.4s ease;
}

.midwifery-faq-item::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 3px;
    height: 100%;

    background: #d6ae4c;

    transform: scaleY(0);
    transform-origin: top;

    transition:
        transform 0.45s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-faq-item.is-active {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(181, 139, 43, 0.3);
}

.midwifery-faq-item.is-active::before {
    transform: scaleY(1);
}


/*==================================================
FAQ TRIGGER
==================================================*/

.midwifery-faq-trigger {
    width: 100%;
    min-height: 112px;

    padding: 29px 24px 29px 28px;

    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 36px;
    gap: 18px;
    align-items: center;

    border: 0;
    outline: 0;

    background: transparent;

    color: #06162f;
    text-align: left;

    cursor: pointer;

    transition:
        padding-left 0.4s ease,
        background 0.4s ease;
}

.midwifery-faq-trigger:hover {
    padding-left: 36px;
}

.midwifery-faq-trigger:focus-visible {
    outline: 2px solid #b58b2b;
    outline-offset: -4px;
}


/*==================================================
FAQ NUMBER
==================================================*/

.midwifery-faq-number {
    color: #b58b2b;

    font-size: 0.68rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;
}


/*==================================================
FAQ QUESTION
==================================================*/

.midwifery-faq-question {
    color: #06162f;

    font-size: clamp(1.18rem, 1.8vw, 1.65rem);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.032em;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.midwifery-faq-item.is-active
.midwifery-faq-question {
    color: #9b731e;
}


/*==================================================
PLUS / MINUS ICON
==================================================*/

.midwifery-faq-icon {
    position: relative;

    width: 32px;
    height: 32px;

    display: block;

    border: 1px solid rgba(6, 22, 47, 0.18);
    border-radius: 50%;

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.4s ease;
}

.midwifery-faq-icon::before,
.midwifery-faq-icon::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 12px;
    height: 1px;

    background: #06162f;

    transform: translate(-50%, -50%);

    transition:
        transform 0.4s ease,
        background 0.35s ease;
}

.midwifery-faq-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.midwifery-faq-item.is-active
.midwifery-faq-icon {
    border-color: #b58b2b;
    background: #b58b2b;

    transform: rotate(180deg);
}

.midwifery-faq-item.is-active
.midwifery-faq-icon::before,
.midwifery-faq-item.is-active
.midwifery-faq-icon::after {
    background: #ffffff;
}

.midwifery-faq-item.is-active
.midwifery-faq-icon::after {
    transform:
        translate(-50%, -50%)
        rotate(0deg);
}


/*==================================================
FAQ PANEL
==================================================*/

.midwifery-faq-panel {
    display: grid;
    grid-template-rows: 0fr;

    overflow: hidden;

    transition:
        grid-template-rows 0.55s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-faq-item.is-active
.midwifery-faq-panel {
    grid-template-rows: 1fr;
}

.midwifery-faq-panel-inner {
    min-height: 0;

    padding: 0 72px 0 96px;

    overflow: hidden;

    opacity: 0;
    transform: translateY(-10px);

    transition:
        opacity 0.4s ease,
        transform 0.45s ease,
        padding-bottom 0.45s ease;
}

.midwifery-faq-item.is-active
.midwifery-faq-panel-inner {
    padding-bottom: 34px;

    opacity: 1;
    transform: translateY(0);
}

.midwifery-faq-panel-inner p {
    max-width: 690px;
    margin: 0;

    color: rgba(6, 22, 47, 0.67);

    font-size: 0.96rem;
    line-height: 1.85;
}


/*==================================================
SUPPORT CARD
==================================================*/

.midwifery-faq-support {
    position: sticky;
    top: 110px;

    min-height: 470px;
    padding: 42px 38px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.02)
        ),
        #06162f;

    color: #ffffff;

    box-shadow:
        0 30px 75px rgba(6, 22, 47, 0.14);

    transition:
        transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.5s ease;
}

.midwifery-faq-support::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #d6ae4c;
}

.midwifery-faq-support::after {
    content: "";

    position: absolute;
    right: -120px;
    bottom: -125px;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(214, 174, 76, 0.14);
    border-radius: 50%;

    pointer-events: none;
}

.midwifery-faq-support:hover {
    transform: translateY(-7px);

    box-shadow:
        0 38px 90px rgba(6, 22, 47, 0.2);
}

.midwifery-faq-support-label {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 24px;

    color: #d6ae4c;

    font-size: 0.66rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.midwifery-faq-support h3 {
    position: relative;
    z-index: 2;

    max-width: 360px;
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.midwifery-faq-support > p {
    position: relative;
    z-index: 2;

    max-width: 390px;
    margin: 0 0 35px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.93rem;
    line-height: 1.8;
}


/*==================================================
SUPPORT LINK
==================================================*/

.midwifery-faq-support-link {
    position: relative;
    z-index: 2;

    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 15px 20px;

    border: 1px solid rgba(214, 174, 76, 0.55);

    color: #ffffff;
    text-decoration: none;

    font-size: 0.76rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.midwifery-faq-support-link svg {
    width: 19px;
    height: 19px;

    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 0.35s ease;
}

.midwifery-faq-support-link:hover {
    color: #06162f;

    background: #d6ae4c;
    border-color: #d6ae4c;

    transform: translateY(-2px);
}

.midwifery-faq-support-link:hover svg {
    transform: translateX(4px);
}


/*==================================================
SUPPORT NOTE
==================================================*/

.midwifery-faq-support-note {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.midwifery-faq-support-note span {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.midwifery-faq-support-note strong {
    color: #ffffff;

    font-size: 0.94rem;
    line-height: 1.5;
    font-weight: 600;
}


/*==================================================
SCROLL REVEAL
==================================================*/

.midwifery-faq-header,
.midwifery-faq-list,
.midwifery-faq-support {
    opacity: 0;
    transform: translateY(46px);

    transition:
        opacity 0.9s ease,
        transform 0.9s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-faq-header.midwifery-faq-visible,
.midwifery-faq-list.midwifery-faq-visible,
.midwifery-faq-support.midwifery-faq-visible {
    opacity: 1;
    transform: translateY(0);
}

.midwifery-faq-list {
    transition-delay: 0.08s;
}

.midwifery-faq-support {
    transition-delay: 0.17s;
}














/*==================================================
MIDWIFERY FAQ
CSS PART 2
Responsive • Accessibility
==================================================*/


/*==================================================
LARGE TABLET
==================================================*/

@media screen and (max-width:1150px){

    .midwifery-faq{

        padding:125px 5vw 135px;

    }

    .midwifery-faq-layout{

        grid-template-columns:1fr;

        gap:65px;

    }

    .midwifery-faq-support{

        position:relative;
        top:auto;

        min-height:390px;

    }

}



/*==================================================
TABLET
==================================================*/

@media screen and (max-width:820px){

    .midwifery-faq{

        padding:105px 28px 115px;

    }

    .midwifery-faq-header{

        margin-bottom:62px;

    }

    .midwifery-faq-header span{

        margin-bottom:20px;

        font-size:.66rem;

        letter-spacing:.16em;

    }

    .midwifery-faq-header span::before{

        width:34px;

    }

    .midwifery-faq-header h2{

        font-size:clamp(2.8rem,10vw,5rem);

        line-height:.98;

    }

    .midwifery-faq-trigger{

        min-height:95px;

        padding:24px 18px;

        grid-template-columns:42px 1fr 30px;

        gap:15px;

    }

    .midwifery-faq-trigger:hover{

        padding-left:22px;

    }

    .midwifery-faq-question{

        font-size:1.28rem;

    }

    .midwifery-faq-panel-inner{

        padding:0 18px 0 58px;

    }

    .midwifery-faq-item.is-active
    .midwifery-faq-panel-inner{

        padding-bottom:28px;

    }

    .midwifery-faq-support{

        padding:34px;

    }

}



/*==================================================
MOBILE
==================================================*/

@media screen and (max-width:620px){

    .midwifery-faq{

        padding:92px 20px 100px;

    }

    .midwifery-faq::before{

        width:390px;
        height:390px;

        top:-150px;
        right:-170px;

    }

    .midwifery-faq-header{

        margin-bottom:50px;

    }

    .midwifery-faq-header span{

        gap:10px;

        margin-bottom:18px;

        font-size:.62rem;

        letter-spacing:.15em;

    }

    .midwifery-faq-header span::before{

        width:28px;

    }

    .midwifery-faq-header h2{

        font-size:clamp(2.45rem,12vw,4rem);

        line-height:.98;

    }

    .midwifery-faq-header p{

        margin-top:22px;

        font-size:.92rem;

        line-height:1.75;

    }

    .midwifery-faq-trigger{

        grid-template-columns:34px 1fr 26px;

        gap:12px;

        min-height:86px;

        padding:20px 15px;

    }

    .midwifery-faq-question{

        font-size:1.08rem;

        line-height:1.45;

    }

    .midwifery-faq-number{

        font-size:.62rem;

    }

    .midwifery-faq-panel-inner{

        padding:0 15px 0 46px;

    }

    .midwifery-faq-panel-inner p{

        font-size:.9rem;

        line-height:1.7;

    }

    .midwifery-faq-support{

        min-height:auto;

        padding:30px 24px;

    }

    .midwifery-faq-support h3{

        font-size:2rem;

    }

    .midwifery-faq-support-link{

        width:100%;

        justify-content:center;

    }

}



/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width:390px){

    .midwifery-faq{

        padding-right:17px;
        padding-left:17px;

    }

    .midwifery-faq-support{

        padding:26px 20px;

    }

}



/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

    .midwifery-faq-header,
    .midwifery-faq-list,
    .midwifery-faq-support{

        opacity:1;
        transform:none;
        transition:none;

    }

    .midwifery-faq-panel,
    .midwifery-faq-panel-inner,
    .midwifery-faq-support-link,
    .midwifery-faq-icon{

        transition:none;

    }

}












/*==================================================
MIDWIFERY — CINEMATIC CTA
==================================================*/

.midwifery-cta {
    position: relative;

    min-height: 780px;
    padding: 150px 6vw 62px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #06162f;
    color: #ffffff;

    isolation: isolate;
}


/*==================================================
BACKGROUND IMAGE
==================================================*/

.midwifery-cta-media {
    position: absolute;
    inset: 0;
    z-index: -4;

    overflow: hidden;
}

.midwifery-cta-media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.06);

    transition:
        transform 9s
        cubic-bezier(0.2, 0.65, 0.25, 1);
}

.midwifery-cta.is-visible
.midwifery-cta-media img {
    transform: scale(1);
}


/*==================================================
IMAGE OVERLAYS
==================================================*/

.midwifery-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        linear-gradient(
            90deg,
            rgba(2, 12, 29, 0.98) 0%,
            rgba(4, 19, 42, 0.92) 36%,
            rgba(4, 19, 42, 0.58) 67%,
            rgba(4, 19, 42, 0.3) 100%
        ),
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.18) 0%,
            rgba(6, 22, 47, 0.18) 50%,
            rgba(6, 22, 47, 0.92) 100%
        );
}

.midwifery-cta-glow {
    position: absolute;
    top: -180px;
    left: -180px;
    z-index: -2;

    width: 620px;
    height: 620px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(214, 174, 76, 0.15) 0%,
            rgba(214, 174, 76, 0.05) 42%,
            transparent 72%
        );

    pointer-events: none;
}

.midwifery-cta::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d6ae4c 22%,
            #d6ae4c 78%,
            transparent
        );

    opacity: 0.9;
}

.midwifery-cta::after {
    content: "";

    position: absolute;
    right: -145px;
    bottom: -165px;
    z-index: -1;

    width: 440px;
    height: 440px;

    border: 1px solid rgba(214, 174, 76, 0.16);
    border-radius: 50%;

    pointer-events: none;
}


/*==================================================
CONTAINER
==================================================*/

.midwifery-cta-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
CONTENT
==================================================*/

.midwifery-cta-content {
    max-width: 900px;
    padding-bottom: 105px;
}

.midwifery-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 28px;

    color: #e3c46e;

    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.midwifery-cta-label::before {
    content: "";

    width: 46px;
    height: 1px;

    background: #d6ae4c;
}

.midwifery-cta-content h2 {
    max-width: 930px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(3.7rem, 7vw, 8.1rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.07em;

    text-wrap: balance;
}

.midwifery-cta-content h2 em {
    display: block;

    color: #d6ae4c;

    font-family: "Libre Baskerville", Georgia, serif;
    font-style: normal;
    font-weight: 400;
}

.midwifery-cta-content p {
    max-width: 720px;
    margin: 38px 0 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 1rem;
    line-height: 1.9;
}


/*==================================================
BUTTONS
==================================================*/

.midwifery-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    margin-top: 42px;
}

.midwifery-cta-button {
    min-height: 58px;
    padding: 17px 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border: 1px solid transparent;

    text-decoration: none;

    font-size: 0.75rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.midwifery-cta-button svg {
    width: 19px;
    height: 19px;

    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.35s ease;
}

.midwifery-cta-button:hover {
    transform: translateY(-3px);
}

.midwifery-cta-button:hover svg {
    transform: translateX(4px);
}

.midwifery-cta-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.midwifery-cta-button-primary {
    color: #06162f;

    background: #d6ae4c;
    border-color: #d6ae4c;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.2);
}

.midwifery-cta-button-primary:hover {
    color: #06162f;

    background: #e5c66e;
    border-color: #e5c66e;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.28);
}

.midwifery-cta-button-secondary {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.38);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.midwifery-cta-button-secondary:hover {
    color: #06162f;

    background: #ffffff;
    border-color: #ffffff;
}


/*==================================================
BOTTOM INFORMATION
==================================================*/

.midwifery-cta-footer {
    padding-top: 26px;

    display: flex;
    align-items: center;
    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.16);

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.65rem;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.midwifery-cta-footer-line {
    width: 50px;
    height: 1px;

    background: rgba(214, 174, 76, 0.7);
}


/*==================================================
SCROLL REVEAL
==================================================*/

.midwifery-cta-label,
.midwifery-cta-content h2,
.midwifery-cta-content p,
.midwifery-cta-actions,
.midwifery-cta-footer {
    opacity: 0;
    transform: translateY(42px);

    transition:
        opacity 0.9s ease,
        transform 0.9s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.midwifery-cta.is-visible
.midwifery-cta-label,
.midwifery-cta.is-visible
.midwifery-cta-content h2,
.midwifery-cta.is-visible
.midwifery-cta-content p,
.midwifery-cta.is-visible
.midwifery-cta-actions,
.midwifery-cta.is-visible
.midwifery-cta-footer {
    opacity: 1;
    transform: translateY(0);
}

.midwifery-cta.is-visible
.midwifery-cta-content h2 {
    transition-delay: 0.08s;
}

.midwifery-cta.is-visible
.midwifery-cta-content p {
    transition-delay: 0.16s;
}

.midwifery-cta.is-visible
.midwifery-cta-actions {
    transition-delay: 0.24s;
}

.midwifery-cta.is-visible
.midwifery-cta-footer {
    transition-delay: 0.32s;
}


/*==================================================
LARGE TABLET
==================================================*/

@media screen and (max-width: 1100px) {

    .midwifery-cta {
        min-height: 720px;
        padding: 130px 5vw 52px;
    }

    .midwifery-cta-content {
        max-width: 790px;
        padding-bottom: 90px;
    }

    .midwifery-cta-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2, 12, 29, 0.98) 0%,
                rgba(4, 19, 42, 0.9) 50%,
                rgba(4, 19, 42, 0.55) 100%
            ),
            linear-gradient(
                180deg,
                rgba(6, 22, 47, 0.12),
                rgba(6, 22, 47, 0.92)
            );
    }

}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 820px) {

    .midwifery-cta {
        min-height: 680px;
        padding: 110px 28px 42px;
    }

    .midwifery-cta-content {
        max-width: 700px;
        padding-bottom: 72px;
    }

    .midwifery-cta-content h2 {
        font-size: clamp(3.15rem, 11vw, 6rem);
        line-height: 0.94;
    }

    .midwifery-cta-content p {
        max-width: 630px;
        margin-top: 30px;

        font-size: 0.96rem;
        line-height: 1.8;
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 620px) {

    .midwifery-cta {
        min-height: 690px;
        padding: 96px 20px 32px;
    }

    .midwifery-cta-media img {
        object-position: 62% center;
    }

    .midwifery-cta-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 15, 34, 0.45) 0%,
                rgba(3, 15, 34, 0.75) 32%,
                rgba(3, 15, 34, 0.98) 76%,
                #06162f 100%
            );
    }

    .midwifery-cta-content {
        padding-bottom: 56px;
    }

    .midwifery-cta-label {
        gap: 11px;

        margin-bottom: 21px;

        font-size: 0.61rem;
        letter-spacing: 0.15em;
    }

    .midwifery-cta-label::before {
        width: 29px;
    }

    .midwifery-cta-content h2 {
        font-size: clamp(2.75rem, 13vw, 4.5rem);
        line-height: 0.95;
        letter-spacing: -0.06em;
    }

    .midwifery-cta-content p {
        margin-top: 24px;

        font-size: 0.91rem;
        line-height: 1.75;
    }

    .midwifery-cta-actions {
        flex-direction: column;
        gap: 12px;

        margin-top: 32px;
    }

    .midwifery-cta-button {
        width: 100%;
        min-height: 56px;
    }

    .midwifery-cta-footer {
        flex-wrap: wrap;
        gap: 10px 14px;

        padding-top: 21px;

        font-size: 0.58rem;
        letter-spacing: 0.11em;
    }

    .midwifery-cta-footer-line {
        width: 30px;
    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width: 390px) {

    .midwifery-cta {
        padding-right: 17px;
        padding-left: 17px;
    }

    .midwifery-cta-content h2 {
        font-size: 2.7rem;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .midwifery-cta-media img {
        transform: none;
        transition: none;
    }

    .midwifery-cta-label,
    .midwifery-cta-content h2,
    .midwifery-cta-content p,
    .midwifery-cta-actions,
    .midwifery-cta-footer {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .midwifery-cta-button,
    .midwifery-cta-button svg {
        transition: none;
    }

}













/*==================================================
DENTAL THERAPY — HERO
==================================================*/

.dental-hero {
    position: relative;

    min-height: 940px;
    padding: 170px 6vw 72px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #06162f;
    color: #ffffff;

    isolation: isolate;
}


/*==================================================
BACKGROUND MEDIA
==================================================*/

.dental-hero-media {
    position: absolute;
    inset: 0;
    z-index: -5;

    overflow: hidden;
}

.dental-hero-media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.08);

    transition:
        transform 10s
        cubic-bezier(0.2, 0.65, 0.25, 1);
}

.dental-hero.is-visible
.dental-hero-media img {
    transform: scale(1);
}


/*==================================================
OVERLAYS
==================================================*/

.dental-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;

    background:
        linear-gradient(
            90deg,
            rgba(2, 12, 29, 0.99) 0%,
            rgba(4, 18, 40, 0.94) 35%,
            rgba(4, 18, 40, 0.66) 63%,
            rgba(4, 18, 40, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.16) 0%,
            rgba(6, 22, 47, 0.13) 46%,
            rgba(6, 22, 47, 0.92) 100%
        );
}

.dental-hero-glow {
    position: absolute;
    top: -240px;
    left: -210px;
    z-index: -3;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(214, 174, 76, 0.17) 0%,
            rgba(214, 174, 76, 0.06) 40%,
            transparent 72%
        );

    pointer-events: none;
}

.dental-hero::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d6ae4c 20%,
            #d6ae4c 80%,
            transparent
        );

    opacity: 0.9;
}

.dental-hero::after {
    content: "";

    position: absolute;
    right: -180px;
    bottom: -190px;
    z-index: -2;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(214, 174, 76, 0.17);
    border-radius: 50%;

    pointer-events: none;
}


/*==================================================
CONTAINER
==================================================*/

.dental-hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
CONTENT
==================================================*/

.dental-hero-content {
    max-width: 1020px;
    padding-bottom: 105px;
}

.dental-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 30px;

    color: #e2c36c;

    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dental-hero-badge::before {
    content: "";

    width: 47px;
    height: 1px;

    background: #d6ae4c;
}

.dental-hero-content h1 {
    max-width: 1100px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(4rem, 7.3vw, 8.8rem);
    line-height: 0.89;
    font-weight: 800;
    letter-spacing: -0.075em;

    text-wrap: balance;
}

.dental-hero-content h1 em {
    display: block;

    margin-top: 5px;

    color: #d6ae4c;

    font-family: "Libre Baskerville", Georgia, serif;
    font-style: normal;
    font-weight: 400;
}

.dental-hero-content p {
    max-width: 760px;
    margin: 39px 0 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 1.02rem;
    line-height: 1.9;
}


/*==================================================
ACTIONS
==================================================*/

.dental-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    margin-top: 43px;
}

.dental-hero-button {
    min-height: 59px;
    padding: 17px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border: 1px solid transparent;

    text-decoration: none;

    font-size: 0.75rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.dental-hero-button svg {
    width: 19px;
    height: 19px;

    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.35s ease;
}

.dental-hero-button:hover {
    transform: translateY(-3px);
}

.dental-hero-button:hover svg {
    transform: translateX(4px);
}

.dental-hero-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.dental-hero-button-primary {
    color: #06162f;

    background: #d6ae4c;
    border-color: #d6ae4c;

    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.22);
}

.dental-hero-button-primary:hover {
    color: #06162f;

    background: #e6c66d;
    border-color: #e6c66d;

    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.29);
}

.dental-hero-button-secondary {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dental-hero-button-secondary:hover {
    color: #06162f;

    background: #ffffff;
    border-color: #ffffff;
}


/*==================================================
META INFORMATION
==================================================*/

.dental-hero-meta {
    padding-top: 28px;

    display: flex;
    align-items: center;
    gap: 26px;

    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.dental-hero-meta-item {
    min-width: 185px;
}

.dental-hero-meta-item small {
    display: block;

    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.47);

    font-size: 0.61rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dental-hero-meta-item strong {
    color: rgba(255, 255, 255, 0.92);

    font-size: 0.91rem;
    line-height: 1.5;
    font-weight: 600;
}

.dental-hero-meta-line {
    width: 1px;
    height: 40px;

    background: rgba(214, 174, 76, 0.42);
}


/*==================================================
SCROLL INDICATOR
==================================================*/

.dental-hero-scroll {
    position: absolute;
    right: 3vw;
    bottom: 70px;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    color: rgba(255, 255, 255, 0.56);
    text-decoration: none;

    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dental-hero-scroll-line {
    position: relative;

    width: 1px;
    height: 72px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.2);
}

.dental-hero-scroll-line::after {
    content: "";

    position: absolute;
    top: -100%;
    left: 0;

    width: 100%;
    height: 55%;

    background: #d6ae4c;

    animation:
        dentalHeroScroll 2.3s
        ease-in-out infinite;
}

@keyframes dentalHeroScroll {

    0% {
        top: -70%;
    }

    55% {
        top: 45%;
    }

    100% {
        top: 110%;
    }

}


/*==================================================
REVEAL ANIMATIONS
==================================================*/

.dental-hero-badge,
.dental-hero-content h1,
.dental-hero-content p,
.dental-hero-actions,
.dental-hero-meta {
    opacity: 0;
    transform: translateY(42px);

    transition:
        opacity 0.9s ease,
        transform 0.9s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dental-hero.is-visible
.dental-hero-badge,
.dental-hero.is-visible
.dental-hero-content h1,
.dental-hero.is-visible
.dental-hero-content p,
.dental-hero.is-visible
.dental-hero-actions,
.dental-hero.is-visible
.dental-hero-meta {
    opacity: 1;
    transform: translateY(0);
}

.dental-hero.is-visible
.dental-hero-content h1 {
    transition-delay: 0.08s;
}

.dental-hero.is-visible
.dental-hero-content p {
    transition-delay: 0.16s;
}

.dental-hero.is-visible
.dental-hero-actions {
    transition-delay: 0.24s;
}

.dental-hero.is-visible
.dental-hero-meta {
    transition-delay: 0.33s;
}


/*==================================================
LARGE TABLET
==================================================*/

@media screen and (max-width: 1150px) {

    .dental-hero {
        min-height: 850px;
        padding: 145px 5vw 60px;
    }

    .dental-hero-content {
        max-width: 900px;
        padding-bottom: 90px;
    }

    .dental-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2, 12, 29, 0.99) 0%,
                rgba(4, 18, 40, 0.93) 45%,
                rgba(4, 18, 40, 0.55) 100%
            ),
            linear-gradient(
                180deg,
                rgba(6, 22, 47, 0.12),
                rgba(6, 22, 47, 0.93)
            );
    }

    .dental-hero-scroll {
        display: none;
    }

}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width: 820px) {

    .dental-hero {
        min-height: 800px;
        padding: 125px 28px 48px;
    }

    .dental-hero-content {
        max-width: 760px;
        padding-bottom: 75px;
    }

    .dental-hero-content h1 {
        font-size: clamp(3.3rem, 11vw, 6.2rem);
        line-height: 0.93;
    }

    .dental-hero-content p {
        max-width: 650px;
        margin-top: 30px;

        font-size: 0.97rem;
        line-height: 1.82;
    }

    .dental-hero-meta {
        flex-wrap: wrap;
        gap: 22px 25px;
    }

    .dental-hero-meta-line {
        display: none;
    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width: 620px) {

    .dental-hero {
        min-height: 820px;
        padding: 108px 20px 34px;

        align-items: flex-end;
    }

    .dental-hero-media img {
        object-position: 65% center;
    }

    .dental-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 15, 34, 0.4) 0%,
                rgba(3, 15, 34, 0.74) 27%,
                rgba(3, 15, 34, 0.98) 69%,
                #06162f 100%
            );
    }

    .dental-hero-content {
        padding-bottom: 52px;
    }

    .dental-hero-badge {
        gap: 10px;

        margin-bottom: 20px;

        font-size: 0.59rem;
        letter-spacing: 0.14em;
    }

    .dental-hero-badge::before {
        width: 28px;
    }

    .dental-hero-content h1 {
        font-size: clamp(2.8rem, 13vw, 4.6rem);
        line-height: 0.95;
        letter-spacing: -0.062em;
    }

    .dental-hero-content p {
        margin-top: 24px;

        font-size: 0.91rem;
        line-height: 1.74;
    }

    .dental-hero-actions {
        flex-direction: column;
        gap: 12px;

        margin-top: 31px;
    }

    .dental-hero-button {
        width: 100%;
        min-height: 56px;
    }

    .dental-hero-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;

        padding-top: 23px;
    }

    .dental-hero-meta-item {
        min-width: 0;
    }

    .dental-hero-meta-item:last-child {
        grid-column: 1 / -1;
    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width: 390px) {

    .dental-hero {
        padding-right: 17px;
        padding-left: 17px;
    }

    .dental-hero-content h1 {
        font-size: 2.72rem;
    }

    .dental-hero-meta {
        grid-template-columns: 1fr;
    }

    .dental-hero-meta-item:last-child {
        grid-column: auto;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .dental-hero-media img {
        transform: none;
        transition: none;
    }

    .dental-hero-badge,
    .dental-hero-content h1,
    .dental-hero-content p,
    .dental-hero-actions,
    .dental-hero-meta {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .dental-hero-scroll-line::after {
        animation: none;
    }

    .dental-hero-button,
    .dental-hero-button svg {
        transition: none;
    }

}












/*==================================================
DENTAL ABOUT
==================================================*/

.dental-about{

    position:relative;

    overflow:hidden;

    padding:150px 6vw;

    background:#f7f5ef;

}

.dental-about::before{

    content:"";

    position:absolute;

    top:-240px;
    right:-180px;

    width:520px;
    height:520px;

    border-radius:50%;

    border:1px solid rgba(6,22,47,.05);

}

.dental-about-container{

    position:relative;

    z-index:2;

    max-width:1450px;

    margin:auto;

}


/*==================================================
GRID
==================================================*/

.dental-about-grid{

    display:grid;

    grid-template-columns:

    minmax(0,1fr)

    minmax(420px,.95fr);

    gap:80px;

    align-items:center;

    margin-bottom:100px;

}


/*==================================================
CONTENT
==================================================*/

.dental-about-label{

    display:inline-flex;

    align-items:center;

    gap:15px;

    margin-bottom:28px;

    color:#b58b2b;

    font-size:.72rem;

    font-weight:800;

    letter-spacing:.18em;

    text-transform:uppercase;

}

.dental-about-label::before{

    content:"";

    width:44px;

    height:1px;

    background:#b58b2b;

}

.dental-about-content h2{

    margin:0;

    color:#06162f;

    font-size:clamp(3rem,6vw,6.6rem);

    line-height:.95;

    letter-spacing:-.06em;

    font-weight:800;

}

.dental-about-content h2 em{

    display:block;

    color:#b58b2b;

    font-style:normal;

    font-family:"Libre Baskerville",serif;

    font-weight:400;

}

.dental-about-content blockquote{

    margin:38px 0 30px;

    padding-left:28px;

    border-left:3px solid #d6ae4c;

    color:#06162f;

    font-size:1.35rem;

    line-height:1.65;

    font-family:"Libre Baskerville",serif;

}

.dental-about-content p{

    max-width:700px;

    color:rgba(6,22,47,.67);

    line-height:1.9;

    font-size:1rem;

}


/*==================================================
IMAGE
==================================================*/

.dental-about-image{

    position:relative;

    overflow:hidden;

    min-height:700px;

}

.dental-about-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:transform 8s ease;

}

.dental-about:hover .dental-about-image img{

    transform:scale(1.06);

}


/*==================================================
FEATURE GRID
==================================================*/

.dental-about-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}


/*==================================================
CARD
==================================================*/

.dental-about-card{

    position:relative;

    padding:36px;

    background:#fff;

    border:1px solid rgba(6,22,47,.08);

    transition:.45s;

    overflow:hidden;

}

.dental-about-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:#d6ae4c;

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.dental-about-card:hover{

    transform:translateY(-8px);

    border-color:rgba(181,139,43,.25);

    box-shadow:

    0 22px 60px rgba(6,22,47,.08);

}

.dental-about-card:hover::before{

    transform:scaleX(1);

}

.dental-about-card small{

    display:block;

    margin-bottom:20px;

    color:#b58b2b;

    font-size:.72rem;

    font-weight:800;

    letter-spacing:.16em;

}

.dental-about-card h3{

    margin:0 0 16px;

    color:#06162f;

    font-size:1.55rem;

    line-height:1.25;

    letter-spacing:-.03em;

}

.dental-about-card p{

    margin:0;

    color:rgba(6,22,47,.65);

    line-height:1.8;

}


/*==================================================
REVEAL
==================================================*/

.dental-about-content,
.dental-about-image,
.dental-about-card{

    opacity:0;

    transform:translateY(45px);

    transition:

    opacity .9s ease,

    transform .9s cubic-bezier(.2,.7,.2,1);

}

.dental-about-visible{

    opacity:1;

    transform:none;

}

.dental-about-card:nth-child(1){transition-delay:.04s;}
.dental-about-card:nth-child(2){transition-delay:.08s;}
.dental-about-card:nth-child(3){transition-delay:.12s;}
.dental-about-card:nth-child(4){transition-delay:.16s;}
.dental-about-card:nth-child(5){transition-delay:.20s;}
.dental-about-card:nth-child(6){transition-delay:.24s;}



/*==================================================
DENTAL ABOUT — LARGE DESKTOP
==================================================*/

@media screen and (min-width: 1500px) {

    .dental-about {
        padding-top: 170px;
        padding-bottom: 170px;
    }

    .dental-about-grid {
        gap: 105px;
    }

    .dental-about-content p {
        max-width: 650px;
    }

}


/*==================================================
DENTAL ABOUT — SMALL DESKTOP
==================================================*/

@media screen and (max-width: 1200px) {

    .dental-about {
        padding: 125px 5vw;
    }

    .dental-about-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.9fr);

        gap: 58px;
        margin-bottom: 80px;
    }

    .dental-about-content h2 {
        font-size: clamp(3rem, 5.6vw, 5.4rem);
    }

    .dental-about-image {
        min-height: 620px;
    }

    .dental-about-features {
        gap: 20px;
    }

    .dental-about-card {
        padding: 31px;
    }

}


/*==================================================
DENTAL ABOUT — TABLET LANDSCAPE
==================================================*/

@media screen and (max-width: 980px) {

    .dental-about {
        padding: 105px 36px;
    }

    .dental-about-grid {
        grid-template-columns: 1fr;
        gap: 55px;

        margin-bottom: 68px;
    }

    .dental-about-content {
        max-width: 820px;
    }

    .dental-about-content h2 {
        max-width: 800px;

        font-size: clamp(3.2rem, 8vw, 5.6rem);
    }

    .dental-about-content blockquote {
        max-width: 680px;
    }

    .dental-about-content p {
        max-width: 720px;
    }

    .dental-about-image {
        width: 100%;
        min-height: 570px;
    }

    .dental-about-image img {
        object-position: center;
    }

    .dental-about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/*==================================================
DENTAL ABOUT — TABLET PORTRAIT
==================================================*/

@media screen and (max-width: 760px) {

    .dental-about {
        padding: 90px 26px;
    }

    .dental-about::before {
        top: -160px;
        right: -240px;

        width: 420px;
        height: 420px;
    }

    .dental-about-grid {
        gap: 45px;
        margin-bottom: 58px;
    }

    .dental-about-label {
        margin-bottom: 22px;

        font-size: 0.66rem;
        letter-spacing: 0.15em;
    }

    .dental-about-label::before {
        width: 34px;
    }

    .dental-about-content h2 {
        font-size: clamp(2.85rem, 10vw, 4.6rem);
        line-height: 0.98;
    }

    .dental-about-content blockquote {
        margin-top: 31px;
        margin-bottom: 25px;

        padding-left: 22px;

        font-size: 1.18rem;
        line-height: 1.6;
    }

    .dental-about-content p {
        font-size: 0.96rem;
        line-height: 1.83;
    }

    .dental-about-image {
        min-height: 480px;
    }

    .dental-about-card {
        padding: 29px;
    }

    .dental-about-card h3 {
        font-size: 1.4rem;
    }

}


/*==================================================
DENTAL ABOUT — MOBILE
==================================================*/

@media screen and (max-width: 580px) {

    .dental-about {
        padding: 78px 20px;
    }

    .dental-about-grid {
        gap: 38px;
        margin-bottom: 45px;
    }

    .dental-about-content h2 {
        font-size: clamp(2.55rem, 13vw, 3.8rem);
        line-height: 1;
        letter-spacing: -0.055em;
    }

    .dental-about-content h2 em {
        margin-top: 4px;
    }

    .dental-about-content blockquote {
        margin-top: 27px;
        margin-bottom: 22px;

        padding-left: 18px;

        border-left-width: 2px;

        font-size: 1.05rem;
        line-height: 1.6;
    }

    .dental-about-content p {
        font-size: 0.91rem;
        line-height: 1.77;
    }

    .dental-about-image {
        min-height: 400px;
    }

    .dental-about-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dental-about-card {
        padding: 28px 25px;
    }

    .dental-about-card small {
        margin-bottom: 16px;
    }

    .dental-about-card h3 {
        margin-bottom: 12px;

        font-size: 1.35rem;
    }

    .dental-about-card p {
        font-size: 0.91rem;
        line-height: 1.72;
    }

}


/*==================================================
DENTAL ABOUT — SMALL MOBILE
==================================================*/

@media screen and (max-width: 390px) {

    .dental-about {
        padding-right: 17px;
        padding-left: 17px;
    }

    .dental-about-content h2 {
        font-size: 2.55rem;
    }

    .dental-about-image {
        min-height: 350px;
    }

    .dental-about-card {
        padding: 25px 22px;
    }

}


/*==================================================
TOUCH DEVICES
==================================================*/

@media (hover: none) {

    .dental-about:hover .dental-about-image img {
        transform: none;
    }

    .dental-about-card:hover {
        transform: none;
        box-shadow: none;
    }

    .dental-about-card:hover::before {
        transform: scaleX(0);
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {

    .dental-about-content,
    .dental-about-image,
    .dental-about-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .dental-about-image img,
    .dental-about-card,
    .dental-about-card::before {
        transition: none;
    }

    .dental-about:hover .dental-about-image img {
        transform: none;
    }

}


/*==================================================
KEYBOARD FOCUS
==================================================*/

.dental-about-card:focus-visible {
    outline: 2px solid #b58b2b;
    outline-offset: 5px;

    transform: translateY(-5px);

    border-color: rgba(181, 139, 43, 0.32);

    box-shadow:
        0 22px 60px rgba(6, 22, 47, 0.08);
}

.dental-about-card:focus-visible::before,
.dental-about-card.dental-about-card-active::before {
    transform: scaleX(1);
}

.dental-about-card.dental-about-card-active {
    transform: translateY(-5px);

    border-color: rgba(181, 139, 43, 0.32);

    box-shadow:
        0 22px 60px rgba(6, 22, 47, 0.08);
}




















/* Pharmacy Technology Hero */

:root {
  --pharmacy-navy: #06162f;
  --pharmacy-gold: #d6ae4c;
  --pharmacy-dark-gold: #b58b2b;
  --pharmacy-white: #ffffff;
  --pharmacy-soft: #f7f5ef;
}

.pharmacy-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--pharmacy-navy);
  color: var(--pharmacy-white);
  isolation: isolate;
}

.pharmacy-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.pharmacy-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: pharmacyHeroImage 1600ms ease-out forwards;
}

.pharmacy-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(6, 22, 47, 0.94) 0%,
      rgba(6, 22, 47, 0.78) 38%,
      rgba(6, 22, 47, 0.34) 72%,
      rgba(6, 22, 47, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.22) 0%,
      rgba(6, 22, 47, 0.58) 100%
    );
}

.pharmacy-hero__container {
  width: min(100% - 48px, 1240px);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 140px 0 96px;
}

.pharmacy-hero__content {
  width: min(760px, 100%);
}

.pharmacy-hero__badge {
  margin: 0 0 28px;
  color: var(--pharmacy-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-hero__title {
  max-width: 840px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 8.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.pharmacy-hero__description {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 400;
  line-height: 1.75;
}

.pharmacy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.pharmacy-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.pharmacy-hero__button--primary {
  background: var(--pharmacy-gold);
  border-color: var(--pharmacy-gold);
  color: var(--pharmacy-navy);
}

.pharmacy-hero__button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--pharmacy-white);
}

.pharmacy-hero__button:hover {
  transform: translateY(-2px);
}

.pharmacy-hero__button--primary:hover {
  background: var(--pharmacy-white);
  border-color: var(--pharmacy-white);
}

.pharmacy-hero__button--secondary:hover {
  border-color: var(--pharmacy-gold);
  color: var(--pharmacy-gold);
}

.pharmacy-hero__button:focus-visible {
  outline: 2px solid var(--pharmacy-gold);
  outline-offset: 4px;
}

.pharmacy-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.pharmacy-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
}

@keyframes pharmacyHeroImage {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.04);
  }
}

@media (max-width: 900px) {
  .pharmacy-hero {
    min-height: 92svh;
  }

  .pharmacy-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(6, 22, 47, 0.94) 0%,
        rgba(6, 22, 47, 0.76) 58%,
        rgba(6, 22, 47, 0.44) 100%
      ),
      linear-gradient(
        180deg,
        rgba(6, 22, 47, 0.16) 0%,
        rgba(6, 22, 47, 0.72) 100%
      );
  }

  .pharmacy-hero__container {
    width: min(100% - 36px, 720px);
    min-height: 92svh;
    padding: 120px 0 72px;
  }

  .pharmacy-hero__title {
    letter-spacing: -0.052em;
  }

  .pharmacy-hero__description {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .pharmacy-hero {
    min-height: 88svh;
  }

  .pharmacy-hero__media img {
    object-position: 62% center;
  }

  .pharmacy-hero__container {
    width: min(100% - 28px, 520px);
    min-height: 88svh;
    padding: 108px 0 56px;
  }

  .pharmacy-hero__badge {
    margin-bottom: 22px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .pharmacy-hero__title {
    font-size: clamp(3rem, 16vw, 4.65rem);
    line-height: 0.95;
  }

  .pharmacy-hero__description {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .pharmacy-hero__actions {
    margin-top: 34px;
    gap: 12px;
  }

  .pharmacy-hero__button {
    width: 100%;
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacy-hero__media img,
  .pharmacy-reveal,
  .pharmacy-reveal.is-visible,
  .pharmacy-hero__button {
    animation: none;
    transition: none;
    transform: none;
  }

  .pharmacy-reveal {
    opacity: 1;
  }
}








/* Pharmacy Technology About Programme */

.pharmacy-about {
  position: relative;
  overflow: hidden;
  background: var(--pharmacy-soft);
  color: var(--pharmacy-navy);
  padding: clamp(96px, 12vw, 168px) 0;
}

.pharmacy-about__container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.pharmacy-about__intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 120px);
  align-items: start;
}

.pharmacy-about__eyebrow {
  margin: 0;
  padding-top: 14px;
  color: var(--pharmacy-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-about__title {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.9rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pharmacy-about__quote {
  max-width: 880px;
  margin: clamp(58px, 8vw, 104px) 0 0 auto;
  padding: clamp(34px, 5vw, 58px) 0 clamp(34px, 5vw, 58px)
    clamp(32px, 5vw, 72px);
  border-left: 1px solid rgba(181, 139, 43, 0.5);
}

.pharmacy-about__quote p {
  margin: 0;
  color: rgba(6, 22, 47, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.pharmacy-about__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(72px, 10vw, 128px);
  border-top: 1px solid rgba(6, 22, 47, 0.14);
  border-left: 1px solid rgba(6, 22, 47, 0.14);
}

.pharmacy-about__card {
  min-height: 310px;
  padding: clamp(30px, 3.6vw, 48px);
  border-right: 1px solid rgba(6, 22, 47, 0.14);
  border-bottom: 1px solid rgba(6, 22, 47, 0.14);
  background: rgba(255, 255, 255, 0.34);
  transition:
    background-color 260ms ease,
    transform 260ms ease;
}

.pharmacy-about__card:hover {
  background: rgba(255, 255, 255, 0.74);
  transform: translateY(-4px);
}

.pharmacy-about__number {
  display: block;
  margin-bottom: clamp(44px, 5vw, 70px);
  color: var(--pharmacy-dark-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.pharmacy-about__card h3 {
  max-width: 320px;
  margin: 0;
  color: var(--pharmacy-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.pharmacy-about__card p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(6, 22, 47, 0.68);
  font-size: 0.98rem;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .pharmacy-about__intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pharmacy-about__eyebrow {
    padding-top: 0;
  }

  .pharmacy-about__quote {
    margin-left: 0;
  }

  .pharmacy-about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pharmacy-about__card {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .pharmacy-about {
    padding: 82px 0;
  }

  .pharmacy-about__container {
    width: min(100% - 28px, 520px);
  }

  .pharmacy-about__title {
    font-size: clamp(2.6rem, 13vw, 4rem);
    line-height: 1;
  }

  .pharmacy-about__quote {
    margin-top: 48px;
    padding: 28px 0 28px 24px;
  }

  .pharmacy-about__quote p {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .pharmacy-about__grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .pharmacy-about__card {
    min-height: auto;
    padding: 32px 26px 34px;
  }

  .pharmacy-about__number {
    margin-bottom: 42px;
  }

  .pharmacy-about__card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacy-about__card {
    transition: none;
  }

  .pharmacy-about__card:hover {
    transform: none;
  }
}








/*==================================================
DENTAL THERAPY — PROFESSIONAL JOURNEY
==================================================*/

.dental-journey {
    position: relative;

    padding: 155px 6vw;

    overflow: hidden;

    background: #ffffff;
    color: #06162f;
}

.dental-journey::before {
    content: "";

    position: absolute;
    top: 0;
    left: 6vw;

    width: calc(88vw);
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(6, 22, 47, 0.05),
            rgba(181, 139, 43, 0.38),
            rgba(6, 22, 47, 0.05)
        );
}

.dental-journey::after {
    content: "";

    position: absolute;
    top: 190px;
    right: -250px;

    width: 570px;
    height: 570px;

    border: 1px solid rgba(6, 22, 47, 0.045);
    border-radius: 50%;

    pointer-events: none;
}

.dental-journey-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/*==================================================
INTRODUCTION
==================================================*/

.dental-journey-intro {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    gap: 100px;
    align-items: end;

    margin-bottom: 85px;
}

.dental-journey-heading {
    max-width: 900px;
}

.dental-journey-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 27px;

    color: #b58b2b;

    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.dental-journey-label::before {
    content: "";

    width: 46px;
    height: 1px;

    background: #b58b2b;
}

.dental-journey-heading h2 {
    max-width: 950px;
    margin: 0;

    color: #06162f;

    font-size: clamp(3.5rem, 6.5vw, 7.5rem);
    line-height: 0.93;
    font-weight: 800;
    letter-spacing: -0.068em;

    text-wrap: balance;
}

.dental-journey-heading h2 em {
    display: block;

    margin-top: 5px;

    color: #b58b2b;

    font-family: "Libre Baskerville", Georgia, serif;
    font-style: normal;
    font-weight: 400;
}

.dental-journey-intro-copy {
    max-width: 470px;
    padding-bottom: 8px;
}

.dental-journey-intro-copy p {
    margin: 0;

    color: rgba(6, 22, 47, 0.65);

    font-size: 0.97rem;
    line-height: 1.86;
}

.dental-journey-intro-line {
    display: block;

    width: 68px;
    height: 1px;

    margin: 27px 0;

    background: #d6ae4c;
}


/*==================================================
EDITORIAL IMAGE
==================================================*/

.dental-journey-media {
    position: relative;

    min-height: 680px;
    margin-bottom: 100px;

    overflow: hidden;

    background: #06162f;
}

.dental-journey-media img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.055);

    transition:
        transform 8s
        cubic-bezier(0.2, 0.65, 0.25, 1);
}

.dental-journey-media:hover img {
    transform: scale(1.015);
}

.dental-journey-media-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 15, 33, 0.78) 0%,
            rgba(3, 15, 33, 0.28) 55%,
            rgba(3, 15, 33, 0.1) 100%
        ),
        linear-gradient(
            180deg,
            rgba(6, 22, 47, 0.05) 40%,
            rgba(6, 22, 47, 0.78) 100%
        );
}

.dental-journey-media::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #d6ae4c 0%,
            #d6ae4c 26%,
            transparent 26%
        );
}

.dental-journey-media-caption {
    position: absolute;
    left: 55px;
    bottom: 52px;
    z-index: 2;

    max-width: 650px;
}

.dental-journey-media-caption span {
    display: block;

    margin-bottom: 10px;

    color: #d6ae4c;

    font-size: 0.68rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dental-journey-media-caption strong {
    display: block;

    max-width: 650px;

    color: #ffffff;

    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(2rem, 4vw, 4.3rem);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.035em;
}


/*==================================================
STEPS
==================================================*/

.dental-journey-steps {
    border-top: 1px solid rgba(6, 22, 47, 0.13);
}

.dental-journey-step {
    position: relative;

    display: grid;
    grid-template-columns:
        110px
        minmax(0, 1fr)
        minmax(250px, 0.55fr);

    gap: 45px;
    align-items: start;

    padding: 54px 0;

    border-bottom: 1px solid rgba(6, 22, 47, 0.13);

    transition:
        padding 0.4s ease,
        background 0.4s ease;
}

.dental-journey-step::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 0;

    width: 0;
    height: 2px;

    background: #d6ae4c;

    transition:
        width 0.55s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dental-journey-step:hover::before {
    width: 100%;
}


/*==================================================
STEP NUMBER
==================================================*/

.dental-journey-number {
    padding-top: 3px;
}

.dental-journey-number span {
    display: inline-block;

    color: #b58b2b;

    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.08em;
}


/*==================================================
STEP CONTENT
==================================================*/

.dental-journey-step-content {
    max-width: 720px;
}

.dental-journey-stage {
    display: block;

    margin-bottom: 14px;

    color: rgba(6, 22, 47, 0.48);

    font-size: 0.64rem;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.dental-journey-step-content h3 {
    max-width: 700px;
    margin: 0 0 18px;

    color: #06162f;

    font-size: clamp(1.8rem, 3.2vw, 3.4rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.045em;

    transition: color 0.35s ease;
}

.dental-journey-step:hover
.dental-journey-step-content h3 {
    color: #b58b2b;
}

.dental-journey-step-content p {
    max-width: 680px;
    margin: 0;

    color: rgba(6, 22, 47, 0.64);

    font-size: 0.96rem;
    line-height: 1.82;
}


/*==================================================
STEP DETAILS
==================================================*/

.dental-journey-step-detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;

    padding-top: 28px;
}

.dental-journey-step-detail span {
    position: relative;

    padding-left: 22px;

    color: rgba(6, 22, 47, 0.57);

    font-size: 0.72rem;
    line-height: 1.55;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dental-journey-step-detail span::before {
    content: "";

    position: absolute;
    top: 0.65em;
    left: 0;

    width: 9px;
    height: 1px;

    background: #d6ae4c;
}


/*==================================================
INITIAL REVEAL STATES
==================================================*/

.dental-journey-heading,
.dental-journey-intro-copy,
.dental-journey-media,
.dental-journey-step {
    opacity: 0;
    transform: translateY(45px);

    transition:
        opacity 0.9s ease,
        transform 0.9s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dental-journey-element-visible {
    opacity: 1;
    transform: translateY(0);
}

.dental-journey-step:nth-child(1) {
    transition-delay: 0.04s;
}

.dental-journey-step:nth-child(2) {
    transition-delay: 0.1s;
}

.dental-journey-step:nth-child(3) {
    transition-delay: 0.16s;
}

.dental-journey-step:nth-child(4) {
    transition-delay: 0.22s;
}






/*==================================================
LARGE DESKTOP
==================================================*/

@media screen and (min-width:1500px){

    .dental-journey{

        padding-top:180px;
        padding-bottom:180px;

    }

}


/*==================================================
LAPTOP
==================================================*/

@media screen and (max-width:1200px){

    .dental-journey{

        padding:130px 5vw;

    }

    .dental-journey-intro{

        gap:70px;

    }

    .dental-journey-media{

        min-height:620px;

    }

    .dental-journey-step{

        grid-template-columns:

        90px

        minmax(0,1fr)

        220px;

        gap:35px;

    }

}


/*==================================================
TABLET
==================================================*/

@media screen and (max-width:980px){

    .dental-journey{

        padding:110px 36px;

    }

    .dental-journey-intro{

        grid-template-columns:1fr;

        gap:45px;

        margin-bottom:65px;

    }

    .dental-journey-intro-copy{

        max-width:720px;

    }

    .dental-journey-media{

        min-height:560px;

        margin-bottom:70px;

    }

    .dental-journey-media-caption{

        left:35px;
        right:35px;
        bottom:35px;

    }

    .dental-journey-step{

        grid-template-columns:70px 1fr;

        gap:30px;

    }

    .dental-journey-step-detail{

        grid-column:2;

        flex-direction:row;

        flex-wrap:wrap;

        gap:14px;

        padding-top:20px;

    }

}


/*==================================================
SMALL TABLET
==================================================*/

@media screen and (max-width:760px){

    .dental-journey{

        padding:90px 24px;

    }

    .dental-journey-label{

        font-size:.63rem;

    }

    .dental-journey-label::before{

        width:32px;

    }

    .dental-journey-heading h2{

        font-size:clamp(2.9rem,9vw,4.8rem);

        line-height:.98;

    }

    .dental-journey-intro-copy p{

        font-size:.94rem;

    }

    .dental-journey-media{

        min-height:470px;

        margin-bottom:55px;

    }

    .dental-journey-media-caption strong{

        font-size:clamp(1.7rem,7vw,3rem);

    }

    .dental-journey-step{

        grid-template-columns:1fr;

        gap:18px;

        padding:42px 0;

    }

    .dental-journey-number{

        padding-top:0;

    }

    .dental-journey-step-detail{

        grid-column:auto;

        padding-top:8px;

    }

}


/*==================================================
MOBILE
==================================================*/

@media screen and (max-width:580px){

    .dental-journey{

        padding:75px 20px;

    }

    .dental-journey-heading h2{

        font-size:clamp(2.4rem,12vw,3.8rem);

    }

    .dental-journey-intro-line{

        margin:22px 0;

    }

    .dental-journey-media{

        min-height:380px;

    }

    .dental-journey-media-caption{

        left:22px;
        right:22px;
        bottom:22px;

    }

    .dental-journey-media-caption strong{

        font-size:2rem;

        line-height:1.12;

    }

    .dental-journey-step-content h3{

        font-size:1.8rem;

    }

    .dental-journey-step-content p{

        font-size:.9rem;

        line-height:1.72;

    }

    .dental-journey-step-detail{

        flex-direction:column;

        gap:10px;

    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media screen and (max-width:390px){

    .dental-journey{

        padding-left:16px;
        padding-right:16px;

    }

    .dental-journey-heading h2{

        font-size:2.2rem;

    }

    .dental-journey-media{

        min-height:330px;

    }

}


/*==================================================
TOUCH DEVICES
==================================================*/

@media (hover:none){

    .dental-journey-media:hover img{

        transform:scale(1.055);

    }

    .dental-journey-step:hover h3{

        color:#06162f;

    }

    .dental-journey-step:hover::before{

        width:0;

    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

    .dental-journey-heading,
    .dental-journey-intro-copy,
    .dental-journey-media,
    .dental-journey-step{

        opacity:1;

        transform:none;

        transition:none;

    }

    .dental-journey-media img{

        transform:none;

        transition:none;

    }

}














/* Pharmacy Technology Professional Journey */

.pharmacy-journey {
  position: relative;
  overflow: hidden;
  background: var(--pharmacy-white);
  color: var(--pharmacy-navy);
  padding: clamp(96px, 13vw, 176px) 0;
}

.pharmacy-journey__container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.pharmacy-journey__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  row-gap: 32px;
  align-items: start;
}

.pharmacy-journey__eyebrow {
  margin: 0;
  padding-top: 16px;
  color: var(--pharmacy-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-journey__title {
  max-width: 960px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 6.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pharmacy-journey__intro {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  color: rgba(6, 22, 47, 0.68);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}

.pharmacy-journey__timeline {
  position: relative;
  margin-top: clamp(72px, 10vw, 128px);
  border-top: 1px solid rgba(6, 22, 47, 0.14);
}

.pharmacy-journey__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(86px, 10vw, 140px);
  width: 1px;
  background: rgba(6, 22, 47, 0.14);
}

.pharmacy-journey__item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(86px, 10vw, 140px) minmax(0, 1fr);
  min-height: 250px;
  border-bottom: 1px solid rgba(6, 22, 47, 0.14);
}

.pharmacy-journey__number {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(34px, 4vw, 52px);
  color: var(--pharmacy-dark-gold);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.pharmacy-journey__content {
  position: relative;
  padding: clamp(34px, 4vw, 52px) clamp(24px, 5vw, 80px);
  transition:
    background-color 260ms ease,
    transform 260ms ease;
}

.pharmacy-journey__content::before {
  content: "";
  position: absolute;
  top: clamp(44px, 4.6vw, 62px);
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pharmacy-gold);
  box-shadow: 0 0 0 10px var(--pharmacy-white);
}

.pharmacy-journey__item:hover .pharmacy-journey__content {
  background: var(--pharmacy-soft);
  transform: translateX(8px);
}

.pharmacy-journey__stage {
  margin: 0 0 18px;
  color: var(--pharmacy-dark-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pharmacy-journey__content h3 {
  max-width: 760px;
  margin: 0;
  color: var(--pharmacy-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.pharmacy-journey__content p:not(.pharmacy-journey__stage) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(6, 22, 47, 0.66);
  font-size: 1rem;
  line-height: 1.76;
}

@media (max-width: 920px) {
  .pharmacy-journey__header {
    grid-template-columns: 1fr;
  }

  .pharmacy-journey__eyebrow {
    padding-top: 0;
  }

  .pharmacy-journey__intro {
    grid-column: auto;
  }

  .pharmacy-journey__timeline::before {
    left: 72px;
  }

  .pharmacy-journey__item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .pharmacy-journey__content {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .pharmacy-journey {
    padding: 82px 0;
  }

  .pharmacy-journey__container {
    width: min(100% - 28px, 520px);
  }

  .pharmacy-journey__title {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .pharmacy-journey__timeline {
    margin-top: 56px;
  }

  .pharmacy-journey__timeline::before {
    left: 42px;
  }

  .pharmacy-journey__item {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: auto;
  }

  .pharmacy-journey__number {
    padding-top: 32px;
    font-size: 1rem;
  }

  .pharmacy-journey__content {
    padding: 32px 0 36px 28px;
  }

  .pharmacy-journey__content::before {
    top: 39px;
    left: -4px;
  }

  .pharmacy-journey__item:hover .pharmacy-journey__content {
    transform: none;
  }

  .pharmacy-journey__content h3 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacy-journey__content {
    transition: none;
  }

  .pharmacy-journey__item:hover .pharmacy-journey__content {
    transform: none;
  }
}









/*==================================================
DENTAL LEARNING
==================================================*/

.dental-learning{

    padding:150px 6vw;

    background:#f7f5ef;

}

.dental-learning-container{

    max-width:1450px;

    margin:auto;

}


/*==================================================
HEADER
==================================================*/

.dental-learning-header{

    max-width:900px;

    margin-bottom:80px;

}

.dental-learning-label{

    display:inline-flex;

    align-items:center;

    gap:15px;

    color:#b58b2b;

    font-size:.72rem;

    font-weight:800;

    letter-spacing:.18em;

    text-transform:uppercase;

}

.dental-learning-label::before{

    content:"";

    width:44px;

    height:1px;

    background:#b58b2b;

}

.dental-learning-header h2{

    margin:24px 0;

    color:#06162f;

    font-size:clamp(3rem,6vw,6.2rem);

    line-height:.95;

    letter-spacing:-.06em;

}

.dental-learning-header h2 em{

    display:block;

    color:#b58b2b;

    font-family:"Libre Baskerville",serif;

    font-style:normal;

    font-weight:400;

}

.dental-learning-header p{

    max-width:720px;

    color:rgba(6,22,47,.65);

    line-height:1.9;

}


/*==================================================
GRID
==================================================*/

.dental-learning-grid{

    display:grid;

    grid-template-columns:

    380px

    1fr;

    gap:70px;

}


/*==================================================
SIDEBAR
==================================================*/

.dental-learning-sidebar{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.dental-learning-item{

    display:flex;

    gap:22px;

    align-items:flex-start;

    padding:26px;

    border:1px solid rgba(6,22,47,.08);

    background:#fff;

    cursor:pointer;

    transition:.4s;

}

.dental-learning-item:hover{

    transform:translateX(8px);

}

.dental-learning-item.active{

    border-color:#d6ae4c;

    background:#06162f;

}

.dental-learning-item span{

    color:#b58b2b;

    font-family:"Libre Baskerville",serif;

    font-size:1rem;

}

.dental-learning-item.active span{

    color:#d6ae4c;

}

.dental-learning-item h3{

    margin:0 0 8px;

    color:#06162f;

    font-size:1.2rem;

    line-height:1.3;

}

.dental-learning-item.active h3{

    color:#fff;

}

.dental-learning-item small{

    color:rgba(6,22,47,.55);

    letter-spacing:.08em;

    text-transform:uppercase;

    font-weight:700;

}

.dental-learning-item.active small{

    color:rgba(255,255,255,.6);

}


/*==================================================
DISPLAY
==================================================*/

.dental-learning-display{

    display:grid;

    grid-template-columns:

    1fr

    420px;

    gap:45px;

    align-items:center;

}

.dental-learning-image{

    overflow:hidden;

    min-height:640px;

}

.dental-learning-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:opacity .35s,transform 8s;

}

.dental-learning-content span{

    display:block;

    color:#b58b2b;

    text-transform:uppercase;

    letter-spacing:.15em;

    font-size:.72rem;

    margin-bottom:16px;

    font-weight:800;

}

.dental-learning-content h3{

    color:#06162f;

    font-size:clamp(2.2rem,4vw,4rem);

    line-height:1.05;

    margin-bottom:24px;

}

.dental-learning-content p{

    color:rgba(6,22,47,.65);

    line-height:1.9;

    margin-bottom:35px;

}

.dental-learning-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.dental-learning-tags span{

    padding:12px 18px;

    background:#fff;

    border:1px solid rgba(6,22,47,.08);

    color:#06162f;

    font-size:.74rem;

    letter-spacing:.08em;

}



/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1200px){

.dental-learning-grid{

grid-template-columns:320px 1fr;
gap:45px;

}

.dental-learning-display{

grid-template-columns:1fr;

}

.dental-learning-image{

min-height:520px;

}

}


@media (max-width:991px){

.dental-learning{

padding:100px 30px;

}

.dental-learning-grid{

grid-template-columns:1fr;

}

.dental-learning-sidebar{

display:grid;

grid-template-columns:repeat(2,1fr);

}

}


@media (max-width:768px){

.dental-learning-header h2{

font-size:2.8rem;

}

.dental-learning-sidebar{

grid-template-columns:1fr;

}

.dental-learning-display{

gap:30px;

}

.dental-learning-image{

min-height:360px;

}

.dental-learning-content h3{

font-size:2rem;

}

}


@media (max-width:576px){

.dental-learning{

padding:80px 20px;

}

.dental-learning-header{

margin-bottom:50px;

}

.dental-learning-item{

padding:18px;

}

.dental-learning-image{

min-height:300px;

}

.dental-learning-content h3{

font-size:1.7rem;

}

}









/* Pharmacy Technology What You'll Learn */

.pharmacy-learning {
  position: relative;
  overflow: hidden;
  background: var(--pharmacy-navy);
  color: var(--pharmacy-white);
  padding: clamp(96px, 13vw, 176px) 0;
}

.pharmacy-learning__container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.pharmacy-learning__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  row-gap: 32px;
  align-items: start;
}

.pharmacy-learning__eyebrow {
  margin: 0;
  padding-top: 16px;
  color: var(--pharmacy-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-learning__title {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 6.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pharmacy-learning__intro {
  grid-column: 2;
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}

.pharmacy-learning__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
  margin-top: clamp(72px, 10vw, 128px);
}

.pharmacy-learning__visual {
  position: sticky;
  top: 96px;
  min-height: clamp(520px, 58vw, 720px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.pharmacy-learning__image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 520ms ease,
    transform 900ms ease;
}

.pharmacy-learning__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.pharmacy-learning__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pharmacy-learning__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.02) 0%,
      rgba(6, 22, 47, 0.74) 100%
    );
  pointer-events: none;
}

.pharmacy-learning__caption {
  position: absolute;
  left: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 48px);
  bottom: clamp(24px, 4vw, 48px);
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.pharmacy-learning__caption-number {
  color: var(--pharmacy-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pharmacy-learning__caption-text {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.pharmacy-learning__topics {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pharmacy-learning__topic {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pharmacy-learning__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: var(--pharmacy-white);
  text-align: left;
  cursor: pointer;
}

.pharmacy-learning__number {
  color: rgba(214, 174, 76, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.pharmacy-learning__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  transition: color 220ms ease;
}

.pharmacy-learning__trigger:hover .pharmacy-learning__name,
.pharmacy-learning__topic.is-active .pharmacy-learning__name {
  color: var(--pharmacy-gold);
}

.pharmacy-learning__trigger:focus-visible {
  outline: 2px solid var(--pharmacy-gold);
  outline-offset: 6px;
}

.pharmacy-learning__panel {
  padding: 0 0 34px 78px;
}

.pharmacy-learning__panel p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.76;
}

@media (max-width: 980px) {
  .pharmacy-learning__header {
    grid-template-columns: 1fr;
  }

  .pharmacy-learning__eyebrow {
    padding-top: 0;
  }

  .pharmacy-learning__intro {
    grid-column: auto;
  }

  .pharmacy-learning__layout {
    grid-template-columns: 1fr;
  }

  .pharmacy-learning__visual {
    position: relative;
    top: auto;
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .pharmacy-learning {
    padding: 82px 0;
  }

  .pharmacy-learning__container {
    width: min(100% - 28px, 520px);
  }

  .pharmacy-learning__title {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .pharmacy-learning__layout {
    margin-top: 56px;
    gap: 40px;
  }

  .pharmacy-learning__visual {
    min-height: 420px;
  }

  .pharmacy-learning__caption {
    display: block;
  }

  .pharmacy-learning__caption-text {
    display: block;
    max-width: 260px;
    margin-top: 12px;
    text-align: left;
  }

  .pharmacy-learning__trigger {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .pharmacy-learning__name {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }

  .pharmacy-learning__panel {
    padding: 0 0 28px 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacy-learning__image {
    transition: none;
    transform: none;
  }
}





/* Pharmacy Technology Learning Experience */

.pharmacy-experience {
  position: relative;
  overflow: hidden;
  background: var(--pharmacy-soft);
  color: var(--pharmacy-navy);
  padding: clamp(96px, 13vw, 176px) 0;
}

.pharmacy-experience__container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.pharmacy-experience__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  align-items: start;
}

.pharmacy-experience__eyebrow {
  margin: 0;
  padding-top: 16px;
  color: var(--pharmacy-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-experience__title {
  max-width: 1000px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 6.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pharmacy-experience__lead {
  max-width: 660px;
  margin: clamp(42px, 6vw, 72px) 0 0 auto;
}

.pharmacy-experience__lead p {
  margin: 0;
  color: rgba(6, 22, 47, 0.68);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}

.pharmacy-experience__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.52fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  margin-top: clamp(72px, 10vw, 132px);
}

.pharmacy-experience__image {
  position: relative;
  min-height: clamp(520px, 58vw, 720px);
  margin: 0;
  overflow: hidden;
  background: var(--pharmacy-navy);
}

.pharmacy-experience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms ease;
}

.pharmacy-experience__feature:hover .pharmacy-experience__image img {
  transform: scale(1.035);
}

.pharmacy-experience__feature-copy {
  padding: clamp(32px, 4vw, 54px) 0;
  border-top: 1px solid rgba(6, 22, 47, 0.18);
  border-bottom: 1px solid rgba(6, 22, 47, 0.18);
}

.pharmacy-experience__number,
.pharmacy-experience__item-number {
  display: block;
  margin-bottom: 34px;
  color: var(--pharmacy-dark-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.pharmacy-experience__feature-copy h3,
.pharmacy-experience__item h3 {
  margin: 0;
  color: var(--pharmacy-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.pharmacy-experience__feature-copy p,
.pharmacy-experience__item p {
  margin: 24px 0 0;
  color: rgba(6, 22, 47, 0.66);
  font-size: 1rem;
  line-height: 1.76;
}

.pharmacy-experience__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  margin-top: clamp(72px, 10vw, 128px);
  overflow-x: auto;
  border-top: 1px solid rgba(6, 22, 47, 0.14);
  border-left: 1px solid rgba(6, 22, 47, 0.14);
  scrollbar-width: thin;
  scrollbar-color: var(--pharmacy-dark-gold) rgba(6, 22, 47, 0.08);
}

.pharmacy-experience__item {
  min-height: 380px;
  padding: clamp(30px, 3.2vw, 44px);
  border-right: 1px solid rgba(6, 22, 47, 0.14);
  border-bottom: 1px solid rgba(6, 22, 47, 0.14);
  background: rgba(255, 255, 255, 0.28);
  transition:
    background-color 260ms ease,
    transform 260ms ease;
}

.pharmacy-experience__item:hover {
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-4px);
}

.pharmacy-experience__item-number {
  margin-bottom: clamp(44px, 5vw, 74px);
}

.pharmacy-experience__item h3 {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.pharmacy-experience__item p {
  font-size: 0.96rem;
}

@media (max-width: 1040px) {
  .pharmacy-experience__header {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .pharmacy-experience__eyebrow {
    padding-top: 0;
  }

  .pharmacy-experience__lead {
    margin-left: 0;
  }

  .pharmacy-experience__feature {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pharmacy-experience__feature-copy {
    max-width: 720px;
  }

  .pharmacy-experience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }
}

@media (max-width: 640px) {
  .pharmacy-experience {
    padding: 82px 0;
  }

  .pharmacy-experience__container {
    width: min(100% - 28px, 520px);
  }

  .pharmacy-experience__title {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .pharmacy-experience__feature {
    margin-top: 56px;
  }

  .pharmacy-experience__image {
    min-height: 420px;
  }

  .pharmacy-experience__feature-copy {
    padding: 32px 0;
  }

  .pharmacy-experience__feature-copy h3 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }

  .pharmacy-experience__grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .pharmacy-experience__item {
    min-height: auto;
    padding: 32px 26px 34px;
  }

  .pharmacy-experience__item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacy-experience__image img,
  .pharmacy-experience__item {
    transition: none;
  }

  .pharmacy-experience__feature:hover .pharmacy-experience__image img,
  .pharmacy-experience__item:hover {
    transform: none;
  }
}








/* Pharmacy Technology Career Opportunities */

.pharmacy-careers {
  position: relative;
  overflow: hidden;
  background: var(--pharmacy-navy);
  color: var(--pharmacy-white);
  padding: clamp(96px, 13vw, 176px) 0;
}

.pharmacy-careers__container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.pharmacy-careers__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  row-gap: 32px;
  align-items: start;
}

.pharmacy-careers__eyebrow {
  margin: 0;
  padding-top: 16px;
  color: var(--pharmacy-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-careers__title {
  max-width: 1000px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 6.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pharmacy-careers__intro {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}

.pharmacy-careers__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.8fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: stretch;
  margin-top: clamp(72px, 10vw, 128px);
}

.pharmacy-careers__image {
  position: relative;
  min-height: clamp(560px, 58vw, 760px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.pharmacy-careers__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.04) 0%,
      rgba(6, 22, 47, 0.42) 100%
    );
  pointer-events: none;
}

.pharmacy-careers__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms ease;
}

.pharmacy-careers__image:hover img {
  transform: scale(1.035);
}

.pharmacy-careers__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pharmacy-careers__item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: clamp(26px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    padding-left 260ms ease,
    border-color 260ms ease;
}

.pharmacy-careers__item:hover {
  padding-left: 14px;
  border-color: rgba(214, 174, 76, 0.54);
}

.pharmacy-careers__number {
  color: rgba(214, 174, 76, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.pharmacy-careers__item h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.45vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  transition: color 220ms ease;
}

.pharmacy-careers__item:hover h3 {
  color: var(--pharmacy-gold);
}

@media (max-width: 980px) {
  .pharmacy-careers__header {
    grid-template-columns: 1fr;
  }

  .pharmacy-careers__eyebrow {
    padding-top: 0;
  }

  .pharmacy-careers__intro {
    grid-column: auto;
  }

  .pharmacy-careers__layout {
    grid-template-columns: 1fr;
  }

  .pharmacy-careers__image {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .pharmacy-careers {
    padding: 82px 0;
  }

  .pharmacy-careers__container {
    width: min(100% - 28px, 520px);
  }

  .pharmacy-careers__title {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .pharmacy-careers__layout {
    margin-top: 56px;
    gap: 44px;
  }

  .pharmacy-careers__image {
    min-height: 420px;
  }

  .pharmacy-careers__item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .pharmacy-careers__item:hover {
    padding-left: 0;
  }

  .pharmacy-careers__item h3 {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacy-careers__image img,
  .pharmacy-careers__item {
    transition: none;
  }

  .pharmacy-careers__image:hover img {
    transform: none;
  }

  .pharmacy-careers__item:hover {
    padding-left: 0;
  }
}








/*==================================================
DENTAL CAREERS
==================================================*/

.dental-careers{
    position:relative;
    padding:150px 6vw;
    overflow:hidden;
    background:#06162f;
}

.dental-careers::before{
    content:"";
    position:absolute;
    top:-260px;
    right:-240px;
    width:620px;
    height:620px;
    border:1px solid rgba(214,174,76,.12);
    border-radius:50%;
    pointer-events:none;
}

.dental-careers::after{
    content:"";
    position:absolute;
    bottom:-320px;
    left:-280px;
    width:680px;
    height:680px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:50%;
    pointer-events:none;
}

.dental-careers-container{
    position:relative;
    z-index:2;
    max-width:1450px;
    margin:0 auto;
}


/*==================================================
HEADER
==================================================*/

.dental-careers-header{
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);
    gap:90px;
    align-items:end;
    margin-bottom:85px;
}

.dental-careers-label{
    display:inline-flex;
    align-items:center;
    gap:16px;
    color:#d6ae4c;
    font-size:.72rem;
    font-weight:800;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.dental-careers-label::before{
    content:"";
    width:44px;
    height:1px;
    background:#d6ae4c;
}

.dental-careers-heading h2{
    max-width:900px;
    margin:25px 0 0;
    color:#fff;
    font-size:clamp(3.2rem,6vw,6.5rem);
    line-height:.95;
    letter-spacing:-.055em;
}

.dental-careers-heading h2 em{
    display:block;
    color:#d6ae4c;
    font-family:"Libre Baskerville",serif;
    font-style:normal;
    font-weight:400;
}

.dental-careers-intro{
    max-width:470px;
    padding-bottom:8px;
}

.dental-careers-intro p{
    margin:0 0 28px;
    color:rgba(255,255,255,.66);
    font-size:1rem;
    line-height:1.9;
}

.dental-careers-caption{
    display:block;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.13);
    color:#d6ae4c;
    font-size:.68rem;
    font-weight:700;
    letter-spacing:.15em;
    text-transform:uppercase;
}


/*==================================================
LAYOUT
==================================================*/

.dental-careers-layout{
    display:grid;
    grid-template-columns:minmax(400px,.82fr) minmax(0,1.18fr);
    gap:75px;
    align-items:start;
}


/*==================================================
IMAGE
==================================================*/

.dental-careers-media{
    position:sticky;
    top:120px;
    min-height:760px;
    overflow:hidden;
    background:#0b1f3d;
}

.dental-careers-media img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.04);
    transition:transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.dental-careers-media:hover img{
    transform:scale(1.09);
}

.dental-careers-media-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(6,22,47,.08) 20%,
            rgba(6,22,47,.85) 100%
        );
}

.dental-careers-media-content{
    position:absolute;
    right:45px;
    bottom:45px;
    left:45px;
}

.dental-careers-media-content span{
    display:block;
    margin-bottom:16px;
    color:#d6ae4c;
    font-size:.68rem;
    font-weight:800;
    letter-spacing:.17em;
    text-transform:uppercase;
}

.dental-careers-media-content h3{
    max-width:470px;
    margin:0;
    color:#fff;
    font-size:clamp(2rem,3.5vw,3.7rem);
    line-height:1.05;
    letter-spacing:-.035em;
}


/*==================================================
CAREER LIST
==================================================*/

.dental-careers-list{
    border-top:1px solid rgba(255,255,255,.14);
}

.dental-careers-item{
    position:relative;
    display:grid;
    grid-template-columns:70px 1fr;
    gap:32px;
    padding:42px 0;
    border-bottom:1px solid rgba(255,255,255,.14);
    overflow:hidden;
    transition:
        padding .35s ease,
        background .35s ease;
}

.dental-careers-item::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    width:0;
    background:rgba(214,174,76,.07);
    transition:width .45s cubic-bezier(.2,.7,.2,1);
}

.dental-careers-item:hover{
    padding-right:28px;
    padding-left:28px;
}

.dental-careers-item:hover::before{
    width:100%;
}

.dental-careers-number,
.dental-careers-item-content{
    position:relative;
    z-index:2;
}

.dental-careers-number{
    color:#d6ae4c;
    font-family:"Libre Baskerville",serif;
    font-size:1rem;
    line-height:1.4;
}

.dental-careers-item-content h3{
    margin:0 0 13px;
    color:#fff;
    font-size:clamp(1.6rem,2.4vw,2.5rem);
    line-height:1.12;
    letter-spacing:-.025em;
    transition:color .3s ease;
}

.dental-careers-item:hover h3{
    color:#d6ae4c;
}

.dental-careers-item-content p{
    max-width:650px;
    margin:0;
    color:rgba(255,255,255,.58);
    font-size:.95rem;
    line-height:1.8;
}


/*==================================================
REVEAL STATES
==================================================*/

.dental-careers-heading,
.dental-careers-intro,
.dental-careers-media,
.dental-careers-item{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.dental-careers-visible{
    opacity:1;
    transform:translateY(0);
}


/*==================================================
RESPONSIVE
==================================================*/

@media screen and (max-width:1200px){

    .dental-careers{
        padding:125px 5vw;
    }

    .dental-careers-header{
        gap:60px;
    }

    .dental-careers-layout{
        grid-template-columns:minmax(340px,.8fr) 1.2fr;
        gap:50px;
    }

    .dental-careers-media{
        min-height:690px;
    }

}


@media screen and (max-width:980px){

    .dental-careers{
        padding:110px 36px;
    }

    .dental-careers-header{
        grid-template-columns:1fr;
        gap:38px;
        margin-bottom:65px;
    }

    .dental-careers-intro{
        max-width:650px;
    }

    .dental-careers-layout{
        grid-template-columns:1fr;
    }

    .dental-careers-media{
        position:relative;
        top:auto;
        min-height:580px;
    }

}


@media screen and (max-width:680px){

    .dental-careers{
        padding:85px 22px;
    }

    .dental-careers-heading h2{
        font-size:clamp(2.7rem,12vw,4rem);
    }

    .dental-careers-media{
        min-height:470px;
    }

    .dental-careers-media-content{
        right:25px;
        bottom:28px;
        left:25px;
    }

    .dental-careers-item{
        grid-template-columns:45px 1fr;
        gap:18px;
        padding:34px 0;
    }

    .dental-careers-item:hover{
        padding-right:16px;
        padding-left:16px;
    }

    .dental-careers-item-content h3{
        font-size:1.6rem;
    }

}


@media screen and (max-width:420px){

    .dental-careers{
        padding-right:17px;
        padding-left:17px;
    }

    .dental-careers-media{
        min-height:410px;
    }

    .dental-careers-item{
        grid-template-columns:1fr;
        gap:12px;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

    .dental-careers-heading,
    .dental-careers-intro,
    .dental-careers-media,
    .dental-careers-item{
        opacity:1;
        transform:none;
        transition:none;
    }

    .dental-careers-media img,
    .dental-careers-item,
    .dental-careers-item::before{
        transition:none;
    }

}





















/* Pharmacy Technology Career Opportunities */

.pharmacy-careers {
  position: relative;
  overflow: hidden;
  background: var(--pharmacy-navy);
  color: var(--pharmacy-white);
  padding: clamp(96px, 13vw, 176px) 0;
}

.pharmacy-careers__container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.pharmacy-careers__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  row-gap: 32px;
  align-items: start;
}

.pharmacy-careers__eyebrow {
  margin: 0;
  padding-top: 16px;
  color: var(--pharmacy-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-careers__title {
  max-width: 1000px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 6.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pharmacy-careers__intro {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.8;
}

.pharmacy-careers__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.8fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: stretch;
  margin-top: clamp(72px, 10vw, 128px);
}

.pharmacy-careers__image {
  position: relative;
  min-height: clamp(560px, 58vw, 760px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.pharmacy-careers__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.04) 0%,
      rgba(6, 22, 47, 0.42) 100%
    );
  pointer-events: none;
}

.pharmacy-careers__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms ease;
}

.pharmacy-careers__image:hover img {
  transform: scale(1.035);
}

.pharmacy-careers__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pharmacy-careers__item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: clamp(26px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    padding-left 260ms ease,
    border-color 260ms ease;
}

.pharmacy-careers__item:hover {
  padding-left: 14px;
  border-color: rgba(214, 174, 76, 0.54);
}

.pharmacy-careers__number {
  color: rgba(214, 174, 76, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.pharmacy-careers__item h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.45vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  transition: color 220ms ease;
}

.pharmacy-careers__item:hover h3 {
  color: var(--pharmacy-gold);
}

@media (max-width: 980px) {
  .pharmacy-careers__header {
    grid-template-columns: 1fr;
  }

  .pharmacy-careers__eyebrow {
    padding-top: 0;
  }

  .pharmacy-careers__intro {
    grid-column: auto;
  }

  .pharmacy-careers__layout {
    grid-template-columns: 1fr;
  }

  .pharmacy-careers__image {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .pharmacy-careers {
    padding: 82px 0;
  }

  .pharmacy-careers__container {
    width: min(100% - 28px, 520px);
  }

  .pharmacy-careers__title {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .pharmacy-careers__layout {
    margin-top: 56px;
    gap: 44px;
  }

  .pharmacy-careers__image {
    min-height: 420px;
  }

  .pharmacy-careers__item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .pharmacy-careers__item:hover {
    padding-left: 0;
  }

  .pharmacy-careers__item h3 {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacy-careers__image img,
  .pharmacy-careers__item {
    transition: none;
  }

  .pharmacy-careers__image:hover img {
    transform: none;
  }

  .pharmacy-careers__item:hover {
    padding-left: 0;
  }
}















/* Pharmacy Technology Programme Information */

.pharmacy-info {
  position: relative;
  overflow: hidden;
  background: var(--pharmacy-white);
  color: var(--pharmacy-navy);
  padding: clamp(96px, 13vw, 176px) 0;
}

.pharmacy-info__container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.pharmacy-info__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  align-items: start;
}

.pharmacy-info__eyebrow {
  margin: 0;
  padding-top: 16px;
  color: var(--pharmacy-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-info__title {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 6.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pharmacy-info__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(72px, 10vw, 128px);
  border-top: 1px solid rgba(6, 22, 47, 0.14);
  border-left: 1px solid rgba(6, 22, 47, 0.14);
}

.pharmacy-info__item {
  min-height: 260px;
  padding: clamp(28px, 3.2vw, 44px);
  border-right: 1px solid rgba(6, 22, 47, 0.14);
  border-bottom: 1px solid rgba(6, 22, 47, 0.14);
  background: #ffffff;
  transition:
    background-color 260ms ease,
    transform 260ms ease;
}

.pharmacy-info__item:hover {
  background: var(--pharmacy-soft);
  transform: translateY(-4px);
}

.pharmacy-info__item--wide {
  grid-column: span 2;
}

.pharmacy-info__item--outcome {
  background: var(--pharmacy-navy);
  color: var(--pharmacy-white);
}

.pharmacy-info__item--outcome:hover {
  background: #071b3b;
}

.pharmacy-info__label {
  margin: 0 0 clamp(46px, 5vw, 72px);
  color: var(--pharmacy-dark-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.pharmacy-info__item--outcome .pharmacy-info__label {
  color: var(--pharmacy-gold);
}

.pharmacy-info__item h3 {
  max-width: 360px;
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.15vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.pharmacy-info__item p:not(.pharmacy-info__label) {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(6, 22, 47, 0.66);
  font-size: 0.98rem;
  line-height: 1.7;
}

.pharmacy-info__item--outcome p:not(.pharmacy-info__label) {
  color: rgba(255, 255, 255, 0.72);
}

.pharmacy-info__list {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pharmacy-info__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(6, 22, 47, 0.66);
  font-size: 0.98rem;
  line-height: 1.6;
}

.pharmacy-info__list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--pharmacy-dark-gold);
}

@media (max-width: 1040px) {
  .pharmacy-info__header {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .pharmacy-info__eyebrow {
    padding-top: 0;
  }

  .pharmacy-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pharmacy-info__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .pharmacy-info {
    padding: 82px 0;
  }

  .pharmacy-info__container {
    width: min(100% - 28px, 520px);
  }

  .pharmacy-info__title {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .pharmacy-info__grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .pharmacy-info__item,
  .pharmacy-info__item--wide {
    grid-column: span 1;
    min-height: auto;
    padding: 32px 26px 34px;
  }

  .pharmacy-info__label {
    margin-bottom: 42px;
  }

  .pharmacy-info__item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacy-info__item {
    transition: none;
  }

  .pharmacy-info__item:hover {
    transform: none;
  }
}





/*==================================================
PROGRAMME INFORMATION
==================================================*/

.dental-programme{

    padding:150px 6vw;

    background:#f7f5ef;

}

.dental-programme-container{

    max-width:1400px;

    margin:auto;

}


/* Header */

.dental-programme-header{

    max-width:820px;

    margin-bottom:70px;

}

.dental-programme-label{

    display:inline-block;

    color:#b58b2b;

    text-transform:uppercase;

    font-size:.72rem;

    letter-spacing:.18em;

    font-weight:700;

}

.dental-programme-header h2{

    margin:22px 0;

    font-size:clamp(3rem,6vw,5.8rem);

    line-height:.95;

    color:#06162f;

    letter-spacing:-.05em;

}

.dental-programme-header h2 em{

    display:block;

    color:#b58b2b;

    font-style:normal;

    font-family:"Libre Baskerville",serif;

}

.dental-programme-header p{

    max-width:650px;

    color:rgba(6,22,47,.65);

    line-height:1.9;

}


/* Grid */

.dental-programme-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/* Cards */

.dental-programme-card{

    background:#fff;

    padding:40px;

    border:1px solid rgba(6,22,47,.08);

    transition:.35s;

}

.dental-programme-card:hover{

    transform:translateY(-8px);

    border-color:#d6ae4c;

}

.dental-programme-card span{

    display:block;

    margin-bottom:18px;

    color:#b58b2b;

    font-size:.72rem;

    font-weight:700;

    letter-spacing:.16em;

    text-transform:uppercase;

}

.dental-programme-card h3{

    margin:0 0 15px;

    color:#06162f;

    font-size:1.7rem;

    line-height:1.2;

}

.dental-programme-card p{

    margin:0;

    color:rgba(6,22,47,.65);

    line-height:1.8;

}


/* Highlight */

.dental-programme-highlight{

    background:#06162f;

    border:none;

}

.dental-programme-highlight span{

    color:#d6ae4c;

}

.dental-programme-highlight h3{

    color:#fff;

}

.dental-programme-highlight p{

    color:rgba(255,255,255,.72);

}

.dental-programme-highlight a{

    display:inline-block;

    margin-top:28px;

    color:#d6ae4c;

    text-decoration:none;

    font-weight:700;

}

.dental-programme-highlight a:hover{

    color:#fff;

}


/* Responsive */

@media(max-width:991px){

.dental-programme-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.dental-programme{

padding:90px 22px;

}

.dental-programme-grid{

grid-template-columns:1fr;

}

.dental-programme-card{

padding:30px;

}

}










/* Pharmacy Technology FAQ */

.pharmacy-faq {
  position: relative;
  overflow: hidden;
  background: var(--pharmacy-soft);
  color: var(--pharmacy-navy);
  padding: clamp(96px, 13vw, 176px) 0;
}

.pharmacy-faq__container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.pharmacy-faq__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  align-items: start;
}

.pharmacy-faq__eyebrow {
  margin: 0;
  padding-top: 16px;
  color: var(--pharmacy-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-faq__title {
  max-width: 960px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 6.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.pharmacy-faq__list {
  max-width: 980px;
  margin: clamp(72px, 10vw, 128px) 0 0 auto;
  border-top: 1px solid rgba(6, 22, 47, 0.16);
}

.pharmacy-faq__item {
  border-bottom: 1px solid rgba(6, 22, 47, 0.16);
}

.pharmacy-faq__question {
  margin: 0;
}

.pharmacy-faq__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: clamp(26px, 3vw, 38px) 0;
  border: 0;
  background: transparent;
  color: var(--pharmacy-navy);
  text-align: left;
  cursor: pointer;
}

.pharmacy-faq__number {
  color: var(--pharmacy-dark-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.pharmacy-faq__text {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  transition: color 220ms ease;
}

.pharmacy-faq__trigger:hover .pharmacy-faq__text,
.pharmacy-faq__item.is-open .pharmacy-faq__text {
  color: var(--pharmacy-dark-gold);
}

.pharmacy-faq__trigger:focus-visible {
  outline: 2px solid var(--pharmacy-dark-gold);
  outline-offset: 6px;
}

.pharmacy-faq__answer {
  padding: 0 0 clamp(28px, 3vw, 42px) 82px;
}

.pharmacy-faq__answer p {
  max-width: 680px;
  margin: 0;
  color: rgba(6, 22, 47, 0.66);
  font-size: 1rem;
  line-height: 1.78;
}

@media (max-width: 920px) {
  .pharmacy-faq__header {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .pharmacy-faq__eyebrow {
    padding-top: 0;
  }

  .pharmacy-faq__list {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .pharmacy-faq {
    padding: 82px 0;
  }

  .pharmacy-faq__container {
    width: min(100% - 28px, 520px);
  }

  .pharmacy-faq__title {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .pharmacy-faq__list {
    margin-top: 58px;
  }

  .pharmacy-faq__trigger {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .pharmacy-faq__text {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }

  .pharmacy-faq__answer {
    padding: 0 0 30px 58px;
  }
}






/*==================================================
DENTAL FAQ
==================================================*/

.dental-faq{
    position:relative;
    padding:150px 6vw;
    overflow:hidden;
    background:#ffffff;
}

.dental-faq::before{
    content:"FAQ";
    position:absolute;
    top:40px;
    right:-20px;
    color:rgba(6,22,47,.025);
    font-size:clamp(10rem,22vw,24rem);
    font-weight:800;
    line-height:1;
    letter-spacing:-.08em;
    pointer-events:none;
}

.dental-faq-container{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:0 auto;
}


/*==================================================
HEADER
==================================================*/

.dental-faq-header{
    max-width:900px;
    margin-bottom:85px;
}

.dental-faq-label{
    display:inline-flex;
    align-items:center;
    gap:16px;
    color:#b58b2b;
    font-size:.72rem;
    font-weight:800;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.dental-faq-label::before{
    content:"";
    width:44px;
    height:1px;
    background:#b58b2b;
}

.dental-faq-header h2{
    max-width:900px;
    margin:24px 0;
    color:#06162f;
    font-size:clamp(3rem,6vw,6.1rem);
    line-height:.96;
    letter-spacing:-.055em;
}

.dental-faq-header h2 em{
    display:block;
    color:#b58b2b;
    font-family:"Libre Baskerville",serif;
    font-style:normal;
    font-weight:400;
}

.dental-faq-header p{
    max-width:700px;
    margin:0;
    color:rgba(6,22,47,.64);
    font-size:1rem;
    line-height:1.9;
}


/*==================================================
LAYOUT
==================================================*/

.dental-faq-layout{
    display:grid;
    grid-template-columns:minmax(280px,.65fr) minmax(0,1.35fr);
    gap:90px;
    align-items:start;
}


/*==================================================
LEFT INTRO
==================================================*/

.dental-faq-intro{
    position:sticky;
    top:120px;
    padding:45px;
    background:#06162f;
}

.dental-faq-intro > span{
    display:block;
    margin-bottom:20px;
    color:#d6ae4c;
    font-size:.7rem;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.dental-faq-intro h3{
    margin:0 0 24px;
    color:#fff;
    font-size:clamp(2rem,3vw,3.4rem);
    line-height:1.08;
    letter-spacing:-.035em;
}

.dental-faq-intro p{
    margin:0 0 34px;
    color:rgba(255,255,255,.65);
    line-height:1.85;
}

.dental-faq-link{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:14px 25px;
    overflow:hidden;
    border:1px solid #d6ae4c;
    color:#06162f;
    background:#d6ae4c;
    font-size:.76rem;
    font-weight:800;
    letter-spacing:.11em;
    text-decoration:none;
    text-transform:uppercase;
    transition:
        color .3s ease,
        background .3s ease;
}

.dental-faq-link:hover{
    color:#fff;
    background:transparent;
}


/*==================================================
FAQ LIST
==================================================*/

.dental-faq-list{
    border-top:1px solid rgba(6,22,47,.14);
}

.dental-faq-item{
    border-bottom:1px solid rgba(6,22,47,.14);
}

.dental-faq-question{
    width:100%;
    display:grid;
    grid-template-columns:52px 1fr 32px;
    gap:22px;
    align-items:center;
    padding:33px 0;
    border:0;
    outline:0;
    color:#06162f;
    background:transparent;
    font:inherit;
    text-align:left;
    cursor:pointer;
}

.dental-faq-number{
    color:#b58b2b;
    font-family:"Libre Baskerville",serif;
    font-size:.95rem;
}

.dental-faq-question-text{
    font-size:clamp(1.25rem,2.1vw,2rem);
    font-weight:700;
    line-height:1.25;
    letter-spacing:-.02em;
    transition:color .3s ease;
}

.dental-faq-question:hover .dental-faq-question-text,
.dental-faq-item.active .dental-faq-question-text{
    color:#b58b2b;
}


/*==================================================
PLUS / MINUS
==================================================*/

.dental-faq-toggle{
    position:relative;
    width:28px;
    height:28px;
}

.dental-faq-toggle::before,
.dental-faq-toggle::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    background:#06162f;
    transform:translate(-50%,-50%);
    transition:
        transform .35s ease,
        opacity .35s ease,
        background .3s ease;
}

.dental-faq-toggle::before{
    width:18px;
    height:1px;
}

.dental-faq-toggle::after{
    width:1px;
    height:18px;
}

.dental-faq-item.active .dental-faq-toggle::after{
    opacity:0;
    transform:translate(-50%,-50%) rotate(90deg);
}

.dental-faq-item.active .dental-faq-toggle::before{
    background:#b58b2b;
}


/*==================================================
ANSWER
==================================================*/

.dental-faq-answer{
    display:grid;
    grid-template-rows:0fr;
    opacity:0;
    transition:
        grid-template-rows .45s cubic-bezier(.2,.7,.2,1),
        opacity .35s ease;
}

.dental-faq-item.active .dental-faq-answer{
    grid-template-rows:1fr;
    opacity:1;
}

.dental-faq-answer-inner{
    min-height:0;
    overflow:hidden;
}

.dental-faq-answer p{
    max-width:780px;
    margin:0;
    padding:0 55px 34px 74px;
    color:rgba(6,22,47,.66);
    font-size:.98rem;
    line-height:1.9;
}


/*==================================================
FOCUS
==================================================*/

.dental-faq-question:focus-visible{
    outline:2px solid #d6ae4c;
    outline-offset:6px;
}


/*==================================================
REVEAL
==================================================*/

.dental-faq-header,
.dental-faq-intro,
.dental-faq-list{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.dental-faq-visible{
    opacity:1;
    transform:translateY(0);
}


/*==================================================
RESPONSIVE
==================================================*/

@media screen and (max-width:1100px){

    .dental-faq{
        padding:125px 5vw;
    }

    .dental-faq-layout{
        grid-template-columns:minmax(270px,.75fr) minmax(0,1.25fr);
        gap:55px;
    }

}


@media screen and (max-width:900px){

    .dental-faq{
        padding:105px 32px;
    }

    .dental-faq-header{
        margin-bottom:60px;
    }

    .dental-faq-layout{
        grid-template-columns:1fr;
        gap:50px;
    }

    .dental-faq-intro{
        position:relative;
        top:auto;
        max-width:650px;
    }

}


@media screen and (max-width:620px){

    .dental-faq{
        padding:82px 20px;
    }

    .dental-faq-header h2{
        font-size:clamp(2.65rem,12vw,4rem);
    }

    .dental-faq-intro{
        padding:32px 27px;
    }

    .dental-faq-question{
        grid-template-columns:38px 1fr 26px;
        gap:14px;
        padding:27px 0;
    }

    .dental-faq-question-text{
        font-size:1.2rem;
    }

    .dental-faq-answer p{
        padding:0 30px 28px 52px;
        font-size:.93rem;
    }

}


@media screen and (max-width:390px){

    .dental-faq{
        padding-right:16px;
        padding-left:16px;
    }

    .dental-faq-question{
        grid-template-columns:1fr 26px;
    }

    .dental-faq-number{
        display:none;
    }

    .dental-faq-answer p{
        padding-left:0;
    }

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce){

    .dental-faq-header,
    .dental-faq-intro,
    .dental-faq-list{
        opacity:1;
        transform:none;
        transition:none;
    }

    .dental-faq-answer,
    .dental-faq-toggle::before,
    .dental-faq-toggle::after{
        transition:none;
    }

}






/* Pharmacy Technology Cinematic CTA */

.pharmacy-cta {
  position: relative;
  min-height: clamp(720px, 88svh, 980px);
  overflow: hidden;
  background: var(--pharmacy-navy);
  color: var(--pharmacy-white);
  isolation: isolate;
}

.pharmacy-cta__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.pharmacy-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 1400ms ease;
}

.pharmacy-cta:hover .pharmacy-cta__media img {
  transform: scale(1.06);
}

.pharmacy-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(6, 22, 47, 0.95) 0%,
      rgba(6, 22, 47, 0.82) 38%,
      rgba(6, 22, 47, 0.42) 72%,
      rgba(6, 22, 47, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.2) 0%,
      rgba(6, 22, 47, 0.7) 100%
    );
}

.pharmacy-cta__container {
  width: min(100% - 48px, 1240px);
  min-height: clamp(720px, 88svh, 980px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(96px, 12vw, 156px) 0;
}

.pharmacy-cta__content {
  width: min(760px, 100%);
}

.pharmacy-cta__eyebrow {
  margin: 0 0 28px;
  color: var(--pharmacy-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pharmacy-cta__title {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.pharmacy-cta__description {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.78;
}

.pharmacy-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.pharmacy-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.pharmacy-cta__button--primary {
  background: var(--pharmacy-gold);
  border-color: var(--pharmacy-gold);
  color: var(--pharmacy-navy);
}

.pharmacy-cta__button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--pharmacy-white);
}

.pharmacy-cta__button:hover {
  transform: translateY(-2px);
}

.pharmacy-cta__button--primary:hover {
  background: var(--pharmacy-white);
  border-color: var(--pharmacy-white);
}

.pharmacy-cta__button--secondary:hover {
  border-color: var(--pharmacy-gold);
  color: var(--pharmacy-gold);
}

.pharmacy-cta__button:focus-visible {
  outline: 2px solid var(--pharmacy-gold);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .pharmacy-cta {
    min-height: 760px;
  }

  .pharmacy-cta__container {
    width: min(100% - 36px, 720px);
    min-height: 760px;
  }

  .pharmacy-cta__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(6, 22, 47, 0.95) 0%,
        rgba(6, 22, 47, 0.78) 58%,
        rgba(6, 22, 47, 0.46) 100%
      ),
      linear-gradient(
        180deg,
        rgba(6, 22, 47, 0.18) 0%,
        rgba(6, 22, 47, 0.78) 100%
      );
  }
}

@media (max-width: 640px) {
  .pharmacy-cta {
    min-height: 720px;
  }

  .pharmacy-cta__media img {
    object-position: 62% center;
  }

  .pharmacy-cta__container {
    width: min(100% - 28px, 520px);
    min-height: 720px;
    padding: 82px 0;
  }

  .pharmacy-cta__eyebrow {
    margin-bottom: 22px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .pharmacy-cta__title {
    font-size: clamp(3rem, 15vw, 4.7rem);
    line-height: 0.96;
  }

  .pharmacy-cta__description {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .pharmacy-cta__actions {
    margin-top: 34px;
    gap: 12px;
  }

  .pharmacy-cta__button {
    width: 100%;
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacy-cta__media img,
  .pharmacy-cta__button {
    transition: none;
    transform: none;
  }

  .pharmacy-cta:hover .pharmacy-cta__media img,
  .pharmacy-cta__button:hover {
    transform: none;
  }
}









/*==================================================
DENTAL CTA
==================================================*/

.dental-cta{

    position:relative;

    overflow:hidden;

    min-height:720px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#06162f;

}

.dental-cta-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1.05);

    transition:transform 8s ease;

}

.dental-cta:hover .dental-cta-image{

    transform:scale(1.12);

}

.dental-cta-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(6,22,47,.90) 12%,
    rgba(6,22,47,.72) 45%,
    rgba(6,22,47,.45) 100%
    );

    z-index:1;

}

.dental-cta-container{

    position:relative;

    z-index:2;

    width:100%;

    max-width:1400px;

    padding:140px 6vw;

}

.dental-cta-content{

    max-width:700px;

}

.dental-cta-label{

    display:inline-flex;

    align-items:center;

    gap:15px;

    color:#d6ae4c;

    font-size:.72rem;

    font-weight:800;

    letter-spacing:.18em;

    text-transform:uppercase;

}

.dental-cta-label::before{

    content:"";

    width:42px;

    height:1px;

    background:#d6ae4c;

}

.dental-cta h2{

    margin:28px 0;

    color:#fff;

    font-size:clamp(3.5rem,6vw,6.5rem);

    line-height:.95;

    letter-spacing:-.06em;

}

.dental-cta h2 em{

    display:block;

    color:#d6ae4c;

    font-family:"Libre Baskerville",serif;

    font-style:normal;

    font-weight:400;

}

.dental-cta p{

    max-width:620px;

    margin-bottom:45px;

    color:rgba(255,255,255,.76);

    font-size:1.05rem;

    line-height:1.9;

}

.dental-cta-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.dental-cta-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:190px;

    height:58px;

    background:#d6ae4c;

    color:#06162f;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.dental-cta-btn-primary:hover{

    background:#fff;

}

.dental-cta-btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    height:58px;

    border:1px solid rgba(255,255,255,.45);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.dental-cta-btn-secondary:hover{

    background:#fff;

    color:#06162f;

    border-color:#fff;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:900px){

.dental-cta{

min-height:620px;

}

.dental-cta-container{

padding:100px 30px;

}

}

@media(max-width:768px){

.dental-cta h2{

font-size:3rem;

}

.dental-cta-buttons{

flex-direction:column;

}

.dental-cta-btn-primary,
.dental-cta-btn-secondary{

width:100%;

}

}

@media(max-width:576px){

.dental-cta{

min-height:560px;

}

.dental-cta-container{

padding:80px 20px;

}

.dental-cta h2{

font-size:2.4rem;

}

.dental-cta p{

font-size:.95rem;

}

}












/* Medical Imaging Technology Cinematic Programme Hero */

:root {
  --imaging-navy: #06162f;
  --imaging-gold: #d6ae4c;
  --imaging-dark-gold: #b58b2b;
  --imaging-white: #ffffff;
  --imaging-soft: #f7f5ef;
}

.imaging-programme-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--imaging-navy);
  color: var(--imaging-white);
  isolation: isolate;
}

.imaging-programme-hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.imaging-programme-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: imagingHeroImage 1600ms ease-out forwards;
}

.imaging-programme-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(6, 22, 47, 0.95) 0%,
      rgba(6, 22, 47, 0.84) 38%,
      rgba(6, 22, 47, 0.42) 72%,
      rgba(6, 22, 47, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.12) 0%,
      rgba(6, 22, 47, 0.72) 100%
    );
}

.imaging-programme-hero-grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.13;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='imagingNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23imagingNoise)' opacity='.72'/%3E%3C/svg%3E");
}

.imaging-programme-hero-container {
  width: min(100% - 48px, 1240px);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 148px 0 148px;
}

.imaging-programme-hero-content {
  width: min(760px, 100%);
  opacity: 0;
  transform: translateY(28px);
  animation: imagingHeroContent 900ms ease 180ms forwards;
}

.imaging-programme-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  color: var(--imaging-gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.imaging-programme-badge-line {
  width: 46px;
  height: 1px;
  background: var(--imaging-gold);
}

.imaging-programme-hero-content h1 {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.6vw, 9.2rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.imaging-programme-statement {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.7vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.imaging-programme-description {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.78;
}

.imaging-programme-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.imaging-programme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.imaging-programme-btn.primary {
  background: var(--imaging-gold);
  border-color: var(--imaging-gold);
  color: var(--imaging-navy);
}

.imaging-programme-btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--imaging-white);
}

.imaging-programme-btn:hover {
  transform: translateY(-2px);
}

.imaging-programme-btn.primary:hover {
  background: var(--imaging-white);
  border-color: var(--imaging-white);
}

.imaging-programme-btn.secondary:hover {
  border-color: var(--imaging-gold);
  color: var(--imaging-gold);
}

.imaging-programme-btn:focus-visible {
  outline: 2px solid var(--imaging-gold);
  outline-offset: 4px;
}

.imaging-programme-code {
  position: absolute;
  top: clamp(116px, 12vw, 156px);
  right: max(24px, calc((100vw - 1240px) / 2));
  z-index: 2;
  max-width: 240px;
  padding-left: 22px;
  border-left: 1px solid rgba(214, 174, 76, 0.52);
  color: rgba(255, 255, 255, 0.74);
}

.imaging-programme-code span {
  display: block;
  margin-bottom: 10px;
  color: var(--imaging-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.imaging-programme-code strong {
  display: block;
  color: var(--imaging-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.imaging-programme-snapshot {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  width: min(100% - 48px, 1240px);
  transform: translateX(-50%);
}

.imaging-programme-snapshot-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(6, 22, 47, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.imaging-programme-snapshot-item {
  position: relative;
  padding: 26px 30px;
}

.imaging-programme-snapshot-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.imaging-programme-snapshot-item span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.imaging-programme-snapshot-item strong {
  display: block;
  color: var(--imaging-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.imaging-programme-scroll {
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 118px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.imaging-programme-scroll-line {
  position: relative;
  width: 1px;
  height: 72px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.imaging-programme-scroll-line i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--imaging-gold);
  transform: translateY(-100%);
  animation: imagingScrollLine 1800ms ease-in-out infinite;
}

@keyframes imagingHeroImage {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.03);
  }
}

@keyframes imagingHeroContent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imagingScrollLine {
  0% {
    transform: translateY(-100%);
  }

  45%,
  55% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100%);
  }
}

@media (max-width: 1100px) {
  .imaging-programme-code {
    display: none;
  }

  .imaging-programme-scroll {
    display: none;
  }

  .imaging-programme-hero-container {
    padding-bottom: 180px;
  }
}

@media (max-width: 820px) {
  .imaging-programme-hero {
    min-height: 96svh;
  }

  .imaging-programme-hero-container {
    width: min(100% - 36px, 720px);
    min-height: 96svh;
    padding: 128px 0 220px;
  }

  .imaging-programme-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(6, 22, 47, 0.96) 0%,
        rgba(6, 22, 47, 0.82) 62%,
        rgba(6, 22, 47, 0.5) 100%
      ),
      linear-gradient(
        180deg,
        rgba(6, 22, 47, 0.14) 0%,
        rgba(6, 22, 47, 0.78) 100%
      );
  }

  .imaging-programme-snapshot-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .imaging-programme-snapshot-item:nth-child(2) {
    border-right: 0;
  }

  .imaging-programme-snapshot-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 560px) {
  .imaging-programme-hero-media img {
    object-position: 62% center;
  }

  .imaging-programme-hero-container {
    width: min(100% - 28px, 520px);
    padding: 108px 0 248px;
  }

  .imaging-programme-badge {
    gap: 14px;
    margin-bottom: 24px;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .imaging-programme-badge-line {
    width: 32px;
  }

  .imaging-programme-hero-content h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
    line-height: 0.94;
  }

  .imaging-programme-statement {
    margin-top: 28px;
    font-size: clamp(1.45rem, 8vw, 2.15rem);
  }

  .imaging-programme-description {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .imaging-programme-actions {
    margin-top: 34px;
    gap: 12px;
  }

  .imaging-programme-btn {
    width: 100%;
    min-height: 50px;
  }

  .imaging-programme-snapshot {
    width: min(100% - 28px, 520px);
  }

  .imaging-programme-snapshot-item {
    padding: 22px 20px;
  }

  .imaging-programme-snapshot-item strong {
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .imaging-programme-hero-media img,
  .imaging-programme-hero-content,
  .imaging-programme-scroll-line i,
  .imaging-programme-btn {
    animation: none;
    transition: none;
    transform: none;
  }

  .imaging-programme-hero-content {
    opacity: 1;
  }

  .imaging-programme-btn:hover {
    transform: none;
  }
}






/* Medical Imaging Technology About the Programme */

.imaging-about {
  position: relative;
  overflow: hidden;
  background: var(--imaging-soft);
  color: var(--imaging-navy);
  padding: clamp(96px, 13vw, 176px) 0;
}

.imaging-about-container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.imaging-about-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  row-gap: 28px;
  align-items: start;
}

.imaging-about-kicker {
  display: block;
  padding-top: 16px;
  color: var(--imaging-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.imaging-about-intro h2 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.imaging-about-intro p {
  grid-column: 2;
  max-width: 680px;
  margin: 0;
  color: rgba(6, 22, 47, 0.68);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.82;
}

.imaging-about-quote {
  max-width: 900px;
  margin: clamp(62px, 8vw, 108px) 0 0 auto;
  padding: clamp(34px, 5vw, 58px) 0 clamp(34px, 5vw, 58px)
    clamp(32px, 5vw, 72px);
  border-left: 1px solid rgba(181, 139, 43, 0.5);
}

.imaging-about-quote p {
  margin: 0;
  color: rgba(6, 22, 47, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.038em;
}

.imaging-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(76px, 10vw, 132px);
  border-top: 1px solid rgba(6, 22, 47, 0.14);
  border-left: 1px solid rgba(6, 22, 47, 0.14);
}

.imaging-about-card {
  min-height: 320px;
  padding: clamp(30px, 3.6vw, 48px);
  border-right: 1px solid rgba(6, 22, 47, 0.14);
  border-bottom: 1px solid rgba(6, 22, 47, 0.14);
  background: rgba(255, 255, 255, 0.34);
  transition:
    background-color 260ms ease,
    transform 260ms ease;
}

.imaging-about-card:hover {
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-4px);
}

.imaging-about-card span {
  display: block;
  margin-bottom: clamp(44px, 5vw, 72px);
  color: var(--imaging-dark-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.imaging-about-card h3 {
  max-width: 330px;
  margin: 0;
  color: var(--imaging-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.imaging-about-card p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(6, 22, 47, 0.66);
  font-size: 0.98rem;
  line-height: 1.72;
}

.imaging-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.imaging-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
}

@media (max-width: 980px) {
  .imaging-about-intro {
    grid-template-columns: 1fr;
  }

  .imaging-about-kicker {
    padding-top: 0;
  }

  .imaging-about-intro p {
    grid-column: auto;
  }

  .imaging-about-quote {
    margin-left: 0;
  }

  .imaging-about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .imaging-about-card {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .imaging-about {
    padding: 82px 0;
  }

  .imaging-about-container {
    width: min(100% - 28px, 520px);
  }

  .imaging-about-intro h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .imaging-about-quote {
    margin-top: 48px;
    padding: 28px 0 28px 24px;
  }

  .imaging-about-quote p {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .imaging-about-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .imaging-about-card {
    min-height: auto;
    padding: 32px 26px 34px;
  }

  .imaging-about-card span {
    margin-bottom: 42px;
  }

  .imaging-about-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .imaging-reveal,
  .imaging-reveal.is-visible,
  .imaging-about-card {
    transition: none;
    transform: none;
  }

  .imaging-reveal {
    opacity: 1;
  }

  .imaging-about-card:hover {
    transform: none;
  }
}






/* Medical Imaging Technology Professional Journey */

.imaging-journey {
  position: relative;
  overflow: hidden;
  background: var(--imaging-navy);
  color: var(--imaging-white);
  padding: clamp(96px, 13vw, 176px) 0;
}

.imaging-journey-intro,
.imaging-journey-experience,
.imaging-journey-finale {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.imaging-journey-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  row-gap: 28px;
  align-items: start;
}

.imaging-journey-intro > span,
.imaging-journey-finale > span {
  display: block;
  padding-top: 16px;
  color: var(--imaging-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.imaging-journey-intro h2 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.imaging-journey-intro p {
  grid-column: 2;
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.82;
}

.imaging-journey-intro-line {
  grid-column: 2;
  width: 100%;
  height: 1px;
  margin-top: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.imaging-journey-intro-line i {
  display: block;
  width: 34%;
  height: 100%;
  background: var(--imaging-gold);
}

.imaging-journey-experience {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.74fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
  margin-top: clamp(72px, 10vw, 132px);
}

.imaging-journey-sticky {
  position: sticky;
  top: 96px;
  min-height: clamp(560px, 58vw, 760px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.imaging-journey-visuals,
.imaging-journey-image {
  position: absolute;
  inset: 0;
}

.imaging-journey-image {
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 520ms ease,
    transform 900ms ease;
}

.imaging-journey-image.active {
  opacity: 1;
  transform: scale(1);
}

.imaging-journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.imaging-journey-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.04) 0%,
      rgba(6, 22, 47, 0.78) 100%
    );
  pointer-events: none;
}

.imaging-journey-stage-number {
  position: absolute;
  left: clamp(28px, 4vw, 52px);
  top: clamp(28px, 4vw, 52px);
  z-index: 3;
}

.imaging-journey-stage-number span {
  display: block;
  margin-bottom: 10px;
  color: var(--imaging-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.imaging-journey-stage-number strong {
  display: block;
  color: var(--imaging-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.imaging-journey-progress {
  position: absolute;
  left: clamp(28px, 4vw, 52px);
  right: clamp(28px, 4vw, 52px);
  bottom: clamp(28px, 4vw, 52px);
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.imaging-journey-progress-label,
.imaging-journey-progress-count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.imaging-journey-progress-track {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.imaging-journey-progress-track i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--imaging-gold);
  transition: width 420ms ease;
}

.imaging-journey-steps {
  display: grid;
  gap: 24px;
}

.imaging-journey-step {
  min-height: 360px;
}

.imaging-journey-step-inner {
  height: 100%;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}

.imaging-journey-step.active .imaging-journey-step-inner,
.imaging-journey-step:hover .imaging-journey-step-inner {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(214, 174, 76, 0.5);
  transform: translateX(8px);
}

.imaging-journey-kicker {
  display: block;
  margin-bottom: clamp(44px, 5vw, 74px);
  color: var(--imaging-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.imaging-journey-step h3 {
  max-width: 620px;
  margin: 0;
  color: var(--imaging-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.imaging-journey-step p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.76;
}

.imaging-journey-stage-label {
  display: inline-block;
  margin-top: 34px;
  padding-top: 14px;
  border-top: 1px solid rgba(214, 174, 76, 0.55);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.imaging-journey-finale {
  margin-top: clamp(80px, 12vw, 148px);
  padding-top: clamp(48px, 7vw, 84px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.imaging-journey-finale h2 {
  max-width: 1040px;
  margin: 28px 0 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.6vw, 5.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

@media (max-width: 980px) {
  .imaging-journey-intro {
    grid-template-columns: 1fr;
  }

  .imaging-journey-intro > span,
  .imaging-journey-finale > span {
    padding-top: 0;
  }

  .imaging-journey-intro p,
  .imaging-journey-intro-line {
    grid-column: auto;
  }

  .imaging-journey-experience {
    grid-template-columns: 1fr;
  }

  .imaging-journey-sticky {
    position: relative;
    top: auto;
    min-height: 560px;
  }

  .imaging-journey-step {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .imaging-journey {
    padding: 82px 0;
  }

  .imaging-journey-intro,
  .imaging-journey-experience,
  .imaging-journey-finale {
    width: min(100% - 28px, 520px);
  }

  .imaging-journey-intro h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .imaging-journey-experience {
    margin-top: 56px;
    gap: 38px;
  }

  .imaging-journey-sticky {
    min-height: 420px;
  }

  .imaging-journey-progress {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .imaging-journey-step-inner {
    padding: 32px 26px 34px;
  }

  .imaging-journey-step.active .imaging-journey-step-inner,
  .imaging-journey-step:hover .imaging-journey-step-inner {
    transform: none;
  }

  .imaging-journey-kicker {
    margin-bottom: 42px;
  }

  .imaging-journey-step h3 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .imaging-journey-finale {
    margin-top: 62px;
  }

  .imaging-journey-finale h2 {
    margin-left: 0;
    font-size: clamp(2rem, 10vw, 3.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .imaging-journey-image,
  .imaging-journey-step-inner,
  .imaging-journey-progress-track i {
    transition: none;
    transform: none;
  }

  .imaging-journey-step.active .imaging-journey-step-inner,
  .imaging-journey-step:hover .imaging-journey-step-inner {
    transform: none;
  }
}










/* Medical Imaging Technology What You’ll Learn */

.imaging-core-learning {
  position: relative;
  overflow: hidden;
  background: var(--imaging-white);
  color: var(--imaging-navy);
  padding: clamp(96px, 13vw, 176px) 0;
}

.imaging-core-learning-container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.imaging-core-learning-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.45fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: end;
}

.imaging-core-learning-heading span {
  display: block;
  margin-bottom: 26px;
  color: var(--imaging-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.imaging-core-learning-heading h2 {
  max-width: 940px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.imaging-core-learning-header > p {
  max-width: 420px;
  margin: 0 0 10px;
  color: rgba(6, 22, 47, 0.66);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.78;
}

.imaging-core-learning-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.76fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
  margin-top: clamp(72px, 10vw, 132px);
}

.imaging-core-learning-visual {
  position: sticky;
  top: 96px;
  min-height: clamp(560px, 58vw, 760px);
  overflow: hidden;
  background: var(--imaging-navy);
}

.imaging-core-learning-image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 520ms ease,
    transform 900ms ease;
}

.imaging-core-learning-image.active {
  opacity: 1;
  transform: scale(1);
}

.imaging-core-learning-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.imaging-core-learning-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.02) 0%,
      rgba(6, 22, 47, 0.76) 100%
    );
  pointer-events: none;
}

.imaging-core-learning-image-caption {
  position: absolute;
  left: clamp(26px, 4vw, 52px);
  right: clamp(26px, 4vw, 52px);
  bottom: clamp(26px, 4vw, 52px);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.imaging-core-learning-image-index {
  color: var(--imaging-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.imaging-core-learning-image-caption strong {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-align: right;
}

.imaging-core-learning-specialities {
  border-top: 1px solid rgba(6, 22, 47, 0.16);
}

.imaging-core-learning-item {
  border-bottom: 1px solid rgba(6, 22, 47, 0.16);
}

.imaging-core-learning-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 28px;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 2.8vw, 34px) 0;
  border: 0;
  background: transparent;
  color: var(--imaging-navy);
  text-align: left;
  cursor: pointer;
}

.imaging-core-learning-number {
  color: var(--imaging-dark-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.imaging-core-learning-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.35vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  transition: color 220ms ease;
}

.imaging-core-learning-symbol {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
}

.imaging-core-learning-symbol::before,
.imaging-core-learning-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 1px;
  background: rgba(6, 22, 47, 0.56);
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.imaging-core-learning-symbol::after {
  transform: rotate(90deg);
}

.imaging-core-learning-item.active .imaging-core-learning-symbol::after {
  transform: rotate(0deg);
}

.imaging-core-learning-trigger:hover .imaging-core-learning-name,
.imaging-core-learning-item.active .imaging-core-learning-name {
  color: var(--imaging-dark-gold);
}

.imaging-core-learning-trigger:hover .imaging-core-learning-symbol::before,
.imaging-core-learning-trigger:hover .imaging-core-learning-symbol::after,
.imaging-core-learning-item.active .imaging-core-learning-symbol::before,
.imaging-core-learning-item.active .imaging-core-learning-symbol::after {
  background: var(--imaging-dark-gold);
}

.imaging-core-learning-trigger:focus-visible {
  outline: 2px solid var(--imaging-dark-gold);
  outline-offset: 6px;
}

.imaging-core-learning-content {
  padding: 0 0 clamp(28px, 3vw, 40px) 78px;
}

.imaging-core-learning-content-inner p {
  max-width: 520px;
  margin: 0;
  color: rgba(6, 22, 47, 0.66);
  font-size: 1rem;
  line-height: 1.76;
}

@media (max-width: 1040px) {
  .imaging-core-learning-header,
  .imaging-core-learning-layout {
    grid-template-columns: 1fr;
  }

  .imaging-core-learning-header > p {
    max-width: 680px;
    margin-bottom: 0;
  }

  .imaging-core-learning-visual {
    position: relative;
    top: auto;
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .imaging-core-learning {
    padding: 82px 0;
  }

  .imaging-core-learning-container {
    width: min(100% - 28px, 520px);
  }

  .imaging-core-learning-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .imaging-core-learning-layout {
    margin-top: 56px;
    gap: 40px;
  }

  .imaging-core-learning-visual {
    min-height: 420px;
  }

  .imaging-core-learning-image-caption {
    display: block;
  }

  .imaging-core-learning-image-caption strong {
    display: block;
    max-width: 280px;
    margin-top: 12px;
    text-align: left;
  }

  .imaging-core-learning-trigger {
    grid-template-columns: 42px minmax(0, 1fr) 22px;
    gap: 16px;
    padding: 24px 0;
  }

  .imaging-core-learning-name {
    font-size: clamp(1.4rem, 7.6vw, 2.15rem);
  }

  .imaging-core-learning-content {
    padding: 0 0 28px 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .imaging-core-learning-image,
  .imaging-core-learning-name,
  .imaging-core-learning-symbol::before,
  .imaging-core-learning-symbol::after {
    transition: none;
    transform: none;
  }
}







/* Medical Imaging Technology Learning Experience */

.imaging-experience {
  position: relative;
  overflow: hidden;
  background: var(--imaging-soft);
  color: var(--imaging-navy);
  padding: clamp(96px, 13vw, 176px) 0;
}

.imaging-experience-container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.imaging-experience-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  align-items: start;
}

.imaging-experience-header span {
  display: block;
  padding-top: 16px;
  color: var(--imaging-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.imaging-experience-header h2 {
  max-width: 1040px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.imaging-experience-lead {
  max-width: 660px;
  margin: clamp(42px, 6vw, 72px) 0 0 auto;
}

.imaging-experience-lead p {
  margin: 0;
  color: rgba(6, 22, 47, 0.68);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.82;
}

.imaging-experience-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.52fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: end;
  margin-top: clamp(72px, 10vw, 132px);
}

.imaging-experience-image {
  position: relative;
  min-height: clamp(540px, 58vw, 740px);
  margin: 0;
  overflow: hidden;
  background: var(--imaging-navy);
}

.imaging-experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms ease;
}

.imaging-experience-feature:hover .imaging-experience-image img {
  transform: scale(1.035);
}

.imaging-experience-feature-copy {
  padding: clamp(34px, 4vw, 56px) 0;
  border-top: 1px solid rgba(6, 22, 47, 0.18);
  border-bottom: 1px solid rgba(6, 22, 47, 0.18);
}

.imaging-experience-feature-copy span,
.imaging-experience-block span {
  display: block;
  margin-bottom: 34px;
  color: var(--imaging-dark-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.imaging-experience-feature-copy h3,
.imaging-experience-block h3 {
  margin: 0;
  color: var(--imaging-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.imaging-experience-feature-copy p,
.imaging-experience-block p {
  margin: 24px 0 0;
  color: rgba(6, 22, 47, 0.66);
  font-size: 1rem;
  line-height: 1.76;
}

.imaging-experience-editorial {
  display: grid;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  margin-top: clamp(72px, 10vw, 128px);
  overflow-x: auto;
  border-top: 1px solid rgba(6, 22, 47, 0.14);
  border-left: 1px solid rgba(6, 22, 47, 0.14);
  scrollbar-width: thin;
  scrollbar-color: var(--imaging-dark-gold) rgba(6, 22, 47, 0.08);
}

.imaging-experience-block {
  min-height: 380px;
  padding: clamp(30px, 3.2vw, 44px);
  border-right: 1px solid rgba(6, 22, 47, 0.14);
  border-bottom: 1px solid rgba(6, 22, 47, 0.14);
  background: rgba(255, 255, 255, 0.28);
  transition:
    background-color 260ms ease,
    transform 260ms ease;
}

.imaging-experience-block:hover {
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-4px);
}

.imaging-experience-block span {
  margin-bottom: clamp(44px, 5vw, 74px);
}

.imaging-experience-block h3 {
  font-size: clamp(1.5rem, 2vw, 2.15rem);
}

.imaging-experience-block p {
  font-size: 0.96rem;
}

@media (max-width: 1040px) {
  .imaging-experience-header {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .imaging-experience-header span {
    padding-top: 0;
  }

  .imaging-experience-lead {
    margin-left: 0;
  }

  .imaging-experience-feature {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .imaging-experience-feature-copy {
    max-width: 720px;
  }

  .imaging-experience-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }
}

@media (max-width: 640px) {
  .imaging-experience {
    padding: 82px 0;
  }

  .imaging-experience-container {
    width: min(100% - 28px, 520px);
  }

  .imaging-experience-header h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .imaging-experience-feature {
    margin-top: 56px;
  }

  .imaging-experience-image {
    min-height: 420px;
  }

  .imaging-experience-feature-copy {
    padding: 32px 0;
  }

  .imaging-experience-feature-copy h3 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }

  .imaging-experience-editorial {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .imaging-experience-block {
    min-height: auto;
    padding: 32px 26px 34px;
  }

  .imaging-experience-block:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .imaging-experience-image img,
  .imaging-experience-block {
    transition: none;
  }

  .imaging-experience-feature:hover .imaging-experience-image img,
  .imaging-experience-block:hover {
    transform: none;
  }
}





/* Medical Imaging Technology Career Opportunities */

.imaging-careers {
  position: relative;
  overflow: hidden;
  background: var(--imaging-navy);
  color: var(--imaging-white);
  padding: clamp(96px, 13vw, 176px) 0;
}

.imaging-careers-container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.imaging-careers-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  row-gap: 30px;
  align-items: start;
}

.imaging-careers-header span {
  display: block;
  padding-top: 16px;
  color: var(--imaging-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.imaging-careers-header h2 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.imaging-careers-header p {
  grid-column: 2;
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.82;
}

.imaging-careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.8fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: stretch;
  margin-top: clamp(72px, 10vw, 132px);
}

.imaging-careers-image {
  position: relative;
  min-height: clamp(560px, 58vw, 760px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.imaging-careers-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.02) 0%,
      rgba(6, 22, 47, 0.52) 100%
    );
  pointer-events: none;
}

.imaging-careers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms ease;
}

.imaging-careers-image:hover img {
  transform: scale(1.035);
}

.imaging-careers-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.imaging-careers-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: clamp(26px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    padding-left 260ms ease,
    border-color 260ms ease;
}

.imaging-careers-item:hover {
  padding-left: 14px;
  border-color: rgba(214, 174, 76, 0.56);
}

.imaging-careers-item span {
  color: rgba(214, 174, 76, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.imaging-careers-item h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.45vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  transition: color 220ms ease;
}

.imaging-careers-item:hover h3 {
  color: var(--imaging-gold);
}

@media (max-width: 980px) {
  .imaging-careers-header {
    grid-template-columns: 1fr;
  }

  .imaging-careers-header span {
    padding-top: 0;
  }

  .imaging-careers-header p {
    grid-column: auto;
  }

  .imaging-careers-layout {
    grid-template-columns: 1fr;
  }

  .imaging-careers-image {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .imaging-careers {
    padding: 82px 0;
  }

  .imaging-careers-container {
    width: min(100% - 28px, 520px);
  }

  .imaging-careers-header h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .imaging-careers-layout {
    margin-top: 56px;
    gap: 44px;
  }

  .imaging-careers-image {
    min-height: 420px;
  }

  .imaging-careers-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .imaging-careers-item:hover {
    padding-left: 0;
  }

  .imaging-careers-item h3 {
    font-size: clamp(1.42rem, 7.8vw, 2.22rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .imaging-careers-image img,
  .imaging-careers-item,
  .imaging-careers-item h3 {
    transition: none;
  }

  .imaging-careers-image:hover img {
    transform: none;
  }

  .imaging-careers-item:hover {
    padding-left: 0;
  }
}









/* Medical Imaging Technology Programme Information */

.imaging-info {
  position: relative;
  overflow: hidden;
  background: var(--imaging-white);
  color: var(--imaging-navy);
  padding: clamp(96px, 13vw, 176px) 0;
}

.imaging-info-container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.imaging-info-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  align-items: start;
}

.imaging-info-header span {
  display: block;
  padding-top: 16px;
  color: var(--imaging-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.imaging-info-header h2 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.imaging-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(72px, 10vw, 128px);
  border-top: 1px solid rgba(6, 22, 47, 0.14);
  border-left: 1px solid rgba(6, 22, 47, 0.14);
}

.imaging-info-item {
  min-height: 260px;
  padding: clamp(28px, 3.2vw, 44px);
  border-right: 1px solid rgba(6, 22, 47, 0.14);
  border-bottom: 1px solid rgba(6, 22, 47, 0.14);
  background: #ffffff;
  transition:
    background-color 260ms ease,
    transform 260ms ease;
}

.imaging-info-item:hover {
  background: var(--imaging-soft);
  transform: translateY(-4px);
}

.imaging-info-item-wide {
  grid-column: span 2;
}

.imaging-info-item-outcome {
  background: var(--imaging-navy);
  color: var(--imaging-white);
}

.imaging-info-item-outcome:hover {
  background: #071b3b;
}

.imaging-info-label {
  margin: 0 0 clamp(46px, 5vw, 72px);
  color: var(--imaging-dark-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.imaging-info-item-outcome .imaging-info-label {
  color: var(--imaging-gold);
}

.imaging-info-item h3 {
  max-width: 370px;
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.15vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.imaging-info-item p:not(.imaging-info-label) {
  max-width: 350px;
  margin: 18px 0 0;
  color: rgba(6, 22, 47, 0.66);
  font-size: 0.98rem;
  line-height: 1.7;
}

.imaging-info-item-outcome p:not(.imaging-info-label) {
  color: rgba(255, 255, 255, 0.72);
}

.imaging-info-list {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.imaging-info-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(6, 22, 47, 0.66);
  font-size: 0.98rem;
  line-height: 1.6;
}

.imaging-info-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--imaging-dark-gold);
}

@media (max-width: 1040px) {
  .imaging-info-header {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .imaging-info-header span {
    padding-top: 0;
  }

  .imaging-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .imaging-info-item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .imaging-info {
    padding: 82px 0;
  }

  .imaging-info-container {
    width: min(100% - 28px, 520px);
  }

  .imaging-info-header h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .imaging-info-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .imaging-info-item,
  .imaging-info-item-wide {
    grid-column: span 1;
    min-height: auto;
    padding: 32px 26px 34px;
  }

  .imaging-info-label {
    margin-bottom: 42px;
  }

  .imaging-info-item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .imaging-info-item {
    transition: none;
  }

  .imaging-info-item:hover {
    transform: none;
  }
}









/* Medical Imaging Technology FAQ */

.imaging-faq {
  position: relative;
  overflow: hidden;
  background: var(--imaging-soft);
  color: var(--imaging-navy);
  padding: clamp(96px, 13vw, 176px) 0;
}

.imaging-faq-container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.imaging-faq-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(40px, 8vw, 132px);
  align-items: start;
}

.imaging-faq-header span {
  display: block;
  padding-top: 16px;
  color: var(--imaging-dark-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.imaging-faq-header h2 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.imaging-faq-list {
  max-width: 980px;
  margin: clamp(72px, 10vw, 128px) 0 0 auto;
  border-top: 1px solid rgba(6, 22, 47, 0.16);
}

.imaging-faq-item {
  border-bottom: 1px solid rgba(6, 22, 47, 0.16);
}

.imaging-faq-item h3 {
  margin: 0;
}

.imaging-faq-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: clamp(26px, 3vw, 38px) 0;
  border: 0;
  background: transparent;
  color: var(--imaging-navy);
  text-align: left;
  cursor: pointer;
}

.imaging-faq-trigger span {
  color: var(--imaging-dark-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.imaging-faq-trigger strong {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  transition: color 220ms ease;
}

.imaging-faq-trigger:hover strong,
.imaging-faq-item.is-open .imaging-faq-trigger strong {
  color: var(--imaging-dark-gold);
}

.imaging-faq-trigger:focus-visible {
  outline: 2px solid var(--imaging-dark-gold);
  outline-offset: 6px;
}

.imaging-faq-answer {
  padding: 0 0 clamp(28px, 3vw, 42px) 82px;
}

.imaging-faq-answer p {
  max-width: 680px;
  margin: 0;
  color: rgba(6, 22, 47, 0.66);
  font-size: 1rem;
  line-height: 1.78;
}

@media (max-width: 920px) {
  .imaging-faq-header {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .imaging-faq-header span {
    padding-top: 0;
  }

  .imaging-faq-list {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .imaging-faq {
    padding: 82px 0;
  }

  .imaging-faq-container {
    width: min(100% - 28px, 520px);
  }

  .imaging-faq-header h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1;
  }

  .imaging-faq-list {
    margin-top: 58px;
  }

  .imaging-faq-trigger {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .imaging-faq-trigger strong {
    font-size: clamp(1.42rem, 7.8vw, 2.22rem);
  }

  .imaging-faq-answer {
    padding: 0 0 30px 58px;
  }
}





/* Medical Imaging Technology Cinematic CTA */

.imaging-cta {
  position: relative;
  min-height: clamp(720px, 88svh, 980px);
  overflow: hidden;
  background: var(--imaging-navy);
  color: var(--imaging-white);
  isolation: isolate;
}

.imaging-cta-media {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.imaging-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 1400ms ease;
}

.imaging-cta:hover .imaging-cta-media img {
  transform: scale(1.06);
}

.imaging-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(6, 22, 47, 0.95) 0%,
      rgba(6, 22, 47, 0.84) 38%,
      rgba(6, 22, 47, 0.44) 72%,
      rgba(6, 22, 47, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 22, 47, 0.18) 0%,
      rgba(6, 22, 47, 0.72) 100%
    );
}

.imaging-cta-grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='imagingCtaNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23imagingCtaNoise)' opacity='.72'/%3E%3C/svg%3E");
}

.imaging-cta-container {
  width: min(100% - 48px, 1240px);
  min-height: clamp(720px, 88svh, 980px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(96px, 12vw, 156px) 0;
}

.imaging-cta-content {
  width: min(760px, 100%);
}

.imaging-cta-content span {
  display: block;
  margin-bottom: 28px;
  color: var(--imaging-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.imaging-cta-content h2 {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.imaging-cta-content p {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.78;
}

.imaging-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.imaging-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.imaging-cta-btn.primary {
  background: var(--imaging-gold);
  border-color: var(--imaging-gold);
  color: var(--imaging-navy);
}

.imaging-cta-btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--imaging-white);
}

.imaging-cta-btn:hover {
  transform: translateY(-2px);
}

.imaging-cta-btn.primary:hover {
  background: var(--imaging-white);
  border-color: var(--imaging-white);
}

.imaging-cta-btn.secondary:hover {
  border-color: var(--imaging-gold);
  color: var(--imaging-gold);
}

.imaging-cta-btn:focus-visible {
  outline: 2px solid var(--imaging-gold);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .imaging-cta {
    min-height: 760px;
  }

  .imaging-cta-container {
    width: min(100% - 36px, 720px);
    min-height: 760px;
  }

  .imaging-cta-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(6, 22, 47, 0.96) 0%,
        rgba(6, 22, 47, 0.82) 60%,
        rgba(6, 22, 47, 0.5) 100%
      ),
      linear-gradient(
        180deg,
        rgba(6, 22, 47, 0.16) 0%,
        rgba(6, 22, 47, 0.78) 100%
      );
  }
}

@media (max-width: 640px) {
  .imaging-cta {
    min-height: 720px;
  }

  .imaging-cta-media img {
    object-position: 62% center;
  }

  .imaging-cta-container {
    width: min(100% - 28px, 520px);
    min-height: 720px;
    padding: 82px 0;
  }

  .imaging-cta-content span {
    margin-bottom: 22px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .imaging-cta-content h2 {
    font-size: clamp(3rem, 15vw, 4.7rem);
    line-height: 0.96;
  }

  .imaging-cta-content p {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .imaging-cta-actions {
    margin-top: 34px;
    gap: 12px;
  }

  .imaging-cta-btn {
    width: 100%;
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .imaging-cta-media img,
  .imaging-cta-btn {
    transition: none;
    transform: none;
  }

  .imaging-cta:hover .imaging-cta-media img,
  .imaging-cta-btn:hover {
    transform: none;
  }
}

