.doctoralSection {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding-block: var(--space-100);
  background: #0a1238;
}

.doctoralBackground,
.doctoralOverlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.doctoralBackground {
  z-index: 0;
  object-position: center 40%;
}

.doctoralOverlay {
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.5;
}

.doctoralWash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(-42.05deg, rgba(255, 255, 255, 0) 49.75%, #ffffff 90.23%);
  pointer-events: none;
}

.doctoralBottomFade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: clamp(16rem, calc(588 / 1166 * 100%), 36.75rem);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 2, 25, 0) 0%, #020219 93.269%);
}

.doctoralContainer {
  position: relative;
  z-index: 3;
}

.doctoralIntro {
  display: flex;
  flex-direction: column;
  gap: var(--space-40);
  margin-bottom: var(--space-100);
}

.doctoralHeading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.doctoralEyebrow {
  color: var(--color-black);
  font-size: var(--fs-36);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}

.doctoralTitle {
  color: var(--color-black);
  font-size: var(--fs-80);
  font-weight: 300;
  line-height: 1;
}

.doctoralCopy {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  max-width: 42.25rem;
  color: var(--color-black);
  font-size: var(--fs-20);
  font-weight: 400;
  line-height: 1.36;
}

.doctoralGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
}

.doctoralCard {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  min-width: 0;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 0.542px solid var(--color-border-glass);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(11.378px);
  -webkit-backdrop-filter: blur(11.378px);
  background-image: linear-gradient(
    176.29deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.doctoralCardIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 0.6875rem;
  background: var(--color-white);
  box-shadow: var(--shadow-icon);
}

.doctoralCardIcon img {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  max-width: none;
  object-fit: contain;
}

.doctoralCardTitle {
  min-width: 0;
  color: var(--color-white);
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.03em;
}

@media (min-width: 769px) {
  .doctoralCardTitle {
    overflow-wrap: break-word;
  }
}

@media (max-width: 768px) {
  .doctoralSection {
    padding-block: 2.5rem;
  }

  .doctoralWash {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.12) 42%,
      rgba(10, 18, 56, 0.28) 100%
    );
  }

  .doctoralIntro {
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .doctoralHeading {
    gap: 0.375rem;
  }

  .doctoralEyebrow {
    font-size: clamp(1.125rem, 4.8vw, 1.5rem);
  }

  .doctoralTitle {
    font-size: clamp(1.75rem, 7.2vw, 2.5rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .doctoralCopy {
    max-width: none;
    font-size: clamp(0.9375rem, 3.6vw, 1.125rem);
  }

  .doctoralGrid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .doctoralCard {
    gap: 0.875rem;
    padding: 0.875rem 1rem;
  }

  .doctoralCardIcon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .doctoralCardIcon img {
    width: 2.125rem;
    height: 2.125rem;
  }

  .doctoralCardTitle {
    font-size: clamp(1rem, 4.2vw, 1.25rem);
  }
}

@media (max-width: 350px) {
  .doctoralTitle {
    font-size: clamp(1.5rem, 8vw, 1.75rem);
  }

  .doctoralCard {
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
  }

  .doctoralCardIcon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
  }

  .doctoralCardIcon img {
    width: 1.625rem;
    height: 1.625rem;
  }

  .doctoralCardTitle {
    font-size: 0.9375rem;
    line-height: 1.3;
  }
}
