
.osbe-parent-page__inner {
  display: flex;
  flex-direction: column;
  gap: var(--osbe-sp-10);
  padding-block: var(--osbe-sp-10);
}

@media (min-width: 640px) {
  .osbe-parent-page__inner {
    padding-block: var(--osbe-sp-12);
  }
}


.osbe-parent-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--osbe-radius-xl);
  background: linear-gradient(
    135deg,
    var(--osbe-gradient-hub-start),
    var(--osbe-gradient-hub-end)
  );
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .osbe-parent-hero {
    height: 30rem;
  }
}

@media (min-width: 1024px) {
  .osbe-parent-hero {
    height: 29.1875rem;
  }
}

.osbe-parent-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.osbe-parent-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.osbe-parent-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--osbe-sp-7);
  padding: var(--osbe-sp-8) var(--osbe-sp-7);
  width: 100%;
  text-align: center;
}

.osbe-parent-hero__title {
  font-family: var(--osbe-font-display);
  font-size: var(--osbe-fs-5xl);
  font-weight: 700;
  color: #ffffff;
  line-height: var(--osbe-lh-tight);
  margin: 0;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .osbe-parent-hero__title {
    font-size: var(--osbe-fs-6xl);
  }
}

@media (min-width: 1024px) {
  .osbe-parent-hero__title {
    font-size: var(--osbe-fs-hero);
    max-width: 50rem;
  }
}


.osbe-jump-menu {
  position: relative;
  width: 100%;
  max-width: 18.5rem;
}

.osbe-jump-menu__select {
  display: block;
  width: 100%;
  height: 3rem;
  padding: 0 3rem 0 1.25rem;
  background-color: #ffffff;
  border: none;
  border-radius: var(--osbe-radius-sm);
  font-family: var(--osbe-font-body);
  font-size: var(--osbe-fs-base);
  color: var(--osbe-color-slate);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.osbe-jump-menu__select:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.osbe-jump-menu__chevron {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--osbe-color-slate);
  pointer-events: none;
}


/* overrides parent theme paragraph styles for lead sentence */
.osbe-parent-intro__content > p:first-child {
  font-size: var(--osbe-fs-lead);
  font-weight: 600 !important;
  line-height: var(--osbe-lh-relaxed) !important;
  color: #002d3b !important;
  margin-bottom: var(--osbe-sp-7);
}

.osbe-parent-intro__content > p {
  font-size: var(--osbe-fs-base);
  line-height: var(--osbe-lh-relaxed);
  color: var(--osbe-color-slate);
}

/* overrides parent theme body a styles */
.osbe-parent-intro__content a {
  color: var(--osbe-color-blue) !important;
  font-weight: 700;
  text-decoration: none !important;
}

.osbe-parent-intro__content a:hover {
  color: var(--osbe-color-navy);
}


/* overrides parent theme paragraph styles for lead sentence */
.osbe-parent-outro__content > p:first-child {
  font-size: var(--osbe-fs-lead);
  font-weight: 600 !important;
  line-height: var(--osbe-lh-relaxed) !important;
  color: #002d3b !important;
  margin-bottom: var(--osbe-sp-7);
}

.osbe-parent-outro__content > p {
  font-size: var(--osbe-fs-base);
  line-height: var(--osbe-lh-relaxed);
  color: var(--osbe-color-slate);
}

/* overrides parent theme body a styles */
.osbe-parent-outro__content a {
  color: var(--osbe-color-blue) !important;
  font-weight: 700;
  text-decoration: none !important;
}

.osbe-parent-outro__content a:hover {
  color: var(--osbe-color-navy);
}


.osbe-parent-sections {
  display: flex;
  flex-direction: column;
  gap: var(--osbe-sp-10);
}

@media (min-width: 640px) {
  .osbe-parent-sections {
    gap: var(--osbe-sp-14);
  }
}


.osbe-parent-section-block {
  border-radius: var(--osbe-radius-xl);
  padding: var(--osbe-sp-8) var(--osbe-sp-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--osbe-sp-8);
  align-items: stretch;
  scroll-margin-top: 5.5rem;
}

@media (min-width: 640px) {
  .osbe-parent-section-block {
    padding: var(--osbe-sp-9);
  }

  .osbe-parent-section-block:not(.osbe-parent-section-block--has-image):not(
      .osbe-parent-section-block--no-bg
    ) {
    padding: var(--osbe-sp-12);
  }
}

@media (min-width: 1024px) {
  .osbe-parent-section-block--has-image {
    grid-template-columns: 1fr 1fr;
  }

  .osbe-parent-section-block--has-image.osbe-parent-section-block--image-right {
    grid-template-areas: "content image";
  }

  .osbe-parent-section-block--has-image.osbe-parent-section-block--image-left {
    grid-template-areas: "image content";
  }

  .osbe-parent-section-block--has-image .osbe-parent-section-block__content {
    grid-area: content;
    align-self: center;
  }
  .osbe-parent-section-block__content a {
    width: fit-content;
  }

  .osbe-parent-section-block--has-image .osbe-parent-section-block__image-wrap {
    grid-area: image;
    align-self: stretch;
  }
}

.osbe-parent-section-block--no-bg {
  padding: 0;
}

.osbe-parent-section-block--stone {
  background-color: var(--osbe-color-stone);
  --surface-color: var(--osbe-color-stone);
}

.osbe-parent-section-block--stone .osbe-parent-section-block__heading {
  color: var(--osbe-color-navy);
}

.osbe-parent-section-block--terracotta {
  background-color: var(--osbe-color-terracotta);
  --surface-color: var(--osbe-color-terracotta);
}

.osbe-parent-section-block--slate {
  background-color: var(--osbe-color-slate);
  --surface-color: var(--osbe-color-slate);
}

.osbe-parent-section-block .osbe-parent-section-block__heading {
  font-family: var(--osbe-font-display);
  font-size: var(--osbe-fs-4xl);
  font-weight: 700;
  line-height: var(--osbe-lh-tight);
  margin: 0;
}

@media (min-width: 640px) {
  .osbe-parent-section-block .osbe-parent-section-block__heading {
    font-size: var(--osbe-fs-5xl);
  }
}

.osbe-parent-section-block__heading--navy {
  color: var(--osbe-color-navy);
}

.osbe-parent-section-block__heading--light {
  color: var(--osbe-color-syringa);
}

.osbe-parent-section-block__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--osbe-sp-5);
  min-width: 0;
}

.osbe-parent-section-block__body {
  font-size: var(--osbe-fs-base);
  line-height: var(--osbe-lh-relaxed);
  color: var(--osbe-color-slate);
  margin: 0;
}

.osbe-parent-section-block__body--light {
  color: var(--osbe-color-syringa);
}

.osbe-parent-section-block__body a {
  color: var(--osbe-color-blue);
  font-weight: 700;
  text-decoration: none;
  background-image: linear-gradient(
    var(--osbe-color-blue),
    var(--osbe-color-blue)
  );
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 0 0.125rem;
  border-radius: 2px;
  transition:
    background-size var(--osbe-transition-fast),
    color var(--osbe-transition-fast);
}

/* !important overrides parent theme main a:hover { color: var(--color6) !important } */
.osbe-parent-section-block__body a:hover {
  background-size: 100% 100%;
  color: #ffffff !important;
}

.osbe-parent-section-block__body--light a {
  color: var(--osbe-color-gold);
  background-image: linear-gradient(
    var(--osbe-color-gold),
    var(--osbe-color-gold)
  );
}

/* !important overrides parent theme main a:hover { color: var(--color6) !important } */
.osbe-parent-section-block__body--light a:hover {
  color: #ffffff !important;
}

.osbe-parent-section-block__quick-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--osbe-sp-4);
}

.osbe-parent-section-block__quick-links--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.osbe-parent-section-block__quick-links .osbe-btn {
  display: block;
  max-width: 18.125rem;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.osbe-parent-section-block__content > .osbe-btn {
  display: block;
  text-align: left;
}

.osbe-parent-section-block__image-wrap {
  min-height: 12rem;
  overflow: hidden;
  border-radius: var(--osbe-radius-md);
  box-shadow: inset 0 14px 4px 0 rgba(0, 0, 0, 0.25);
  margin: 0;
  position: relative;
}

.osbe-parent-section-block__image-wrap figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.625rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.2rem 0.5rem;
  text-align: right;
  margin: 0;
}

@media (min-width: 640px) {
  .osbe-parent-section-block__image-wrap {
    min-height: 20rem;
  }
}

@media (min-width: 1024px) {
  .osbe-parent-section-block__image-wrap {
    min-height: 22rem;
    max-height: 36rem;
    height: auto;
  }
}

.osbe-parent-section-block__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.osbe-parent-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--osbe-sp-10);
}

@media (min-width: 1024px) {
  .osbe-parent-two-col {
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    align-items: start;
  }
}

.osbe-parent-two-col__column {
  display: flex;
  flex-direction: column;
  gap: var(--osbe-sp-5);
  scroll-margin-top: 5.5rem;
}

@media (min-width: 1024px) {
  .osbe-parent-two-col__column:first-of-type {
    padding-right: var(--osbe-sp-8);
  }

  .osbe-parent-two-col__column:last-of-type {
    padding-left: var(--osbe-sp-8);
  }
}

.osbe-parent-two-col__divider {
  display: none;
}

@media (min-width: 1024px) {
  .osbe-parent-two-col__divider {
    display: block;
    width: 1px;
    background-color: var(--osbe-color-stone);
    align-self: stretch;
  }
}

.osbe-parent-two-col__heading {
  font-family: var(--osbe-font-display);
  font-size: var(--osbe-fs-4xl);
  font-weight: 700;
  color: var(--osbe-color-navy);
  line-height: var(--osbe-lh-tight);
  margin: 0;
}

@media (min-width: 1024px) {
  .osbe-parent-two-col__heading {
    font-size: var(--osbe-fs-6xl);
  }
}

.osbe-parent-two-col__image-wrap {
  overflow: hidden;
  border-radius: var(--osbe-radius-md);
  box-shadow: inset 0 6px 2px 0 rgba(0, 0, 0, 0.12);
  margin: 0;
  position: relative;
}

.osbe-parent-two-col__image-wrap figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.625rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.2rem 0.5rem;
  text-align: right;
  margin: 0;
}

.osbe-parent-two-col__image {
  width: 100%;
  height: auto;
  display: block;
}

.osbe-parent-two-col__body {
  font-size: var(--osbe-fs-base);
  line-height: var(--osbe-lh-relaxed);
  color: var(--osbe-color-slate);
}

/* !important overrides parent theme main a:hover { color: var(--color6) !important } */
.osbe-parent-two-col__body a {
  color: var(--osbe-color-blue);
  font-weight: 700;
  text-decoration: none;
}

.osbe-parent-two-col__body a:hover {
  color: var(--osbe-color-navy) !important;
}


#trustee-zone-equalization .osbe-parent-section-block__image-wrap,
#annual-ipcsc-portfolio-report .osbe-parent-section-block__image-wrap {
  background: #ffffff;
}

#trustee-zone-equalization .osbe-parent-section-block__image,
#annual-ipcsc-portfolio-report .osbe-parent-section-block__image {
  object-fit: contain;
}
#admission-redesign-direct-admissions .osbe-parent-section-block__image {
  object-fit: contain !important;
  padding: 1rem;
}

#admission-redesign-direct-admissions .osbe-parent-section-block__image-wrap {
  background-color: var(--osbe-color-syringa);
}

#strategic-plans .osbe-parent-section-block__quick-links .osbe-btn {
  text-overflow: unset !important;
}
