:root {
  --blue: #1d4080;
  --blue-rgb: 29, 64, 128;
  --blue-dark: #0e2650;
  --blue-pale: #e8eef8;
  --blue-light: #a8c4f0;
  --section: #f0f4fa;
  --ink: #0f1923;
  --muted: #556070;
  --border: #dce4ed;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 10px 35px rgba(14, 38, 80, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.65;
  background: var(--white);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--blue);
}
h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.12;
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: 400;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: 1.35rem;
}

p {
  margin-block-start: 0;
  /* margin-block-end: 0; */
}
strong {
  font-weight: 600;
}
.sb-container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
.sb-narrow {
  width: min(820px, calc(100% - 48px));
}
.sb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.sb-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.sb-header__brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.sb-header__brand .custom-logo-link {
  display: flex;
  align-items: center;
}
.sb-header__brand .custom-logo {
  width: auto;
  height: 48px;
  object-fit: contain;
}
.sb-logo {
  font-family: Fraunces, serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--blue-dark);
}
.sb-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}
.sb-nav > ul {
  display: flex;
  gap: 2px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 4px 6px;
  background: var(--section);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.sb-nav li {
  position: relative;
}
.sb-nav a {
  display: block;
  padding: 6px 13px;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 100px;
  transition: color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.sb-nav a:hover,
.sb-nav a:focus-visible,
.sb-nav .current-menu-item > a,
.sb-nav .current-menu-ancestor > a {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 1px 4px rgba(29, 64, 128, 0.1);
}
.sb-nav .menu-item-has-children > a {
  display: flex;
  gap: 6px;
  align-items: center;
}
.sb-nav .menu-item-has-children > a::after {
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}
.sb-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: grid;
  visibility: hidden;
  list-style: none;
  min-width: 220px;
  gap: 2px;
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(14, 38, 80, 0.14);
  opacity: 0;
  transform: translateY(6px);
  transition: visibility 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}
.sb-nav .sub-menu a {
  padding: 9px 12px;
  border-radius: 7px;
  box-shadow: none;
}
.sb-nav .sub-menu a:hover,
.sb-nav .sub-menu a:focus-visible,
.sb-nav .sub-menu .current-menu-item > a {
  color: var(--blue);
  background: var(--blue-pale);
  box-shadow: none;
}
.sb-nav li:hover > .sub-menu,
.sb-nav li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.sb-header__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.sb-header__actions .sb-btn {
  padding: 8px 18px;
  font-size: 0.8125rem;
}
.sb-header__actions .sb-btn--outline:hover,
.sb-header__actions .sb-btn--outline:focus {
  color: var(--white);
  background: var(--blue);
}
.sb-menu-toggle {
  display: none;
  padding: 6px;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.sb-menu-toggle svg {
  width: 24px;
  height: 24px;
}
.sb-menu-toggle__close {
  display: none;
}
.sb-menu-toggle[aria-expanded="true"] .sb-menu-toggle__open {
  display: none;
}
.sb-menu-toggle[aria-expanded="true"] .sb-menu-toggle__close {
  display: block;
}
.sb-mobile-menu {
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.sb-mobile-menu[hidden] {
  display: none;
}
.sb-mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sb-mobile-menu .sub-menu {
  margin: 2px 0 8px 16px;
  padding: 6px;
  background: var(--section);
  border-left: 2px solid var(--blue-light);
  border-radius: 0 8px 8px 0;
}
.sb-mobile-menu .sub-menu a:not(.sb-btn) {
  padding: 9px 12px;
  font-size: 0.875rem;
}
.sb-mobile-menu a:not(.sb-btn) {
  display: block;
  padding: 12px 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
}
.sb-mobile-menu a:not(.sb-btn):hover,
.sb-mobile-menu a:not(.sb-btn):focus-visible,
.sb-mobile-menu .current-menu-item > a,
.sb-mobile-menu .current-menu-ancestor > a {
  color: var(--blue);
  background: var(--blue-pale);
}
.sb-mobile-menu__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.sb-mobile-menu__actions .sb-btn {
  flex: 1;
  padding: 12px;
  font-size: 0.9375rem;
  text-align: center;
}
.sb-eyebrow,
.wp-block-paragraph.is-style-sb-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 12px;
}
.sb-badge {
  display: inline-block;
  margin: 0 0 24px;
  padding: 5px 14px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background-color: var(--blue-dark);
  color: var(--white);
}
.sb-lead {
  color: var(--muted);
  max-width: 720px;
}
.sb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.sb-btn {
  display: inline-block;
  padding: 12px 26px;
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}
.sb-btn:hover, .sb-btn:focus {
  background-color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.sb-btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.sb-btn--outline:focus, .sb-btn--outline:hover {
  background-color: rgba(var(--blue-rgb), 0.2);
  color: var(--blue);
  border-color: var(--blue);
}
.sb-btn--light {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.sb-btn--light:focus, .sb-btn--light:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}

.sb-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.sb-list-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(14, 38, 80, 0.02);
}
.sb-list-card p {
  color: var(--muted);
}
.sb-list-card h2,
.sb-list-card h3 {
  font-size: 1.35rem;
}
.sb-list-card h2 a,
.sb-list-card h3 a {
  color: var(--ink);
  text-decoration: none;
}
.sb-list-grid--programs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 34px;
}
.sb-list-grid--programs .sb-list-card {
  padding: 0;
}
.sb-list-grid--programs .sb-list-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.sb-list-grid--programs .sb-list-card > div {
  padding: 28px;
}
.sb-text-link {
  font-weight: 600;
  text-decoration: none;
}
.sb-page-hero {
  background: var(--section);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.sb-detail-hero {
  padding: 120px 0 64px;
  color: var(--white);
  background: linear-gradient(
      90deg,
      rgba(14, 38, 80, 0.95),
      rgba(14, 38, 80, 0.72)
    ),
    var(--hero);
  background-size: cover;
  background-position: center;
}
.sb-detail-hero h1,
.sb-detail-hero .sb-lead {
  color: var(--white);
}
.sb-detail-hero .sb-eyebrow {
  color: #dbe7ff;
}
.sb-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 60px;
  padding: 72px 0;
}
.sb-prose {
  max-width: 780px;
}
.sb-prose h2 {
  font-size: 1.9rem;
  margin-top: 48px;
}
.sb-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.sb-info-grid div {
  padding: 18px;
  background: var(--section);
  border-radius: 10px;
}
.sb-info-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}
.sb-info-grid strong {
  display: block;
  margin-top: 3px;
}
.sb-sidebar {
  align-self: start;
  position: sticky;
  top: 110px;
  background: var(--section);
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.sb-entry-content > .alignfull {
  width: 100%;
}
.sb-entry-content > :not(.alignfull):not(.alignwide) {
  width: min(760px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.sb-footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 64px 0 0;
}
.sb-footer a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.sb-footer__grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 280px;
  gap: 48px;
  padding-bottom: 48px;
}
.sb-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.sb-footer__logo img {
  display: block;
  width: min(100%, 240px);
  height: auto;
  object-fit: contain;
}
.sb-footer__brand > p,
.sb-footer__newsletter > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  line-height: 1.7;
}
.sb-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.sb-footer__socials a {
  display: grid;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  place-items: center;
}
.sb-footer__socials a:hover,
.sb-footer__socials a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}
.sb-footer__socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sb-footer__navigation {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 24px;
}
.sb-footer h2 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.4);
  font-family: Inter, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sb-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sb-footer__column a {
  font-size: 0.8125rem;
}
.sb-footer__column a:hover,
.sb-footer__column a:focus-visible,
.sb-footer__bottom a:hover,
.sb-footer__bottom a:focus-visible {
  color: var(--white);
}
.sb-footer__newsletter > p {
  margin-bottom: 16px;
}
.sb-footer__newsletter-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 10px 14px;
  color: var(--blue) !important;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--blue-light);
  border-radius: 8px;
}
.sb-footer__newsletter-link:hover,
.sb-footer__newsletter-link:focus-visible {
  background: var(--white);
}
.sb-footer__newsletter .ff-el-group {
  margin-bottom: 8px;
}
.sb-footer__newsletter .ff-el-input--content input {
  min-height: 40px;
  padding: 10px 14px;
  color: var(--white);
  font: inherit;
  font-size: 0.8125rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}
.sb-footer__newsletter .ff-el-input--content input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}
.sb-footer__newsletter form .ff-btn-submit:not(.ff_btn_no_style) {
  width: 100%;
  min-height: 40px;
  padding: 10px 14px;
  color: var(--blue) !important;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--blue-light) !important;
  border: 0 !important;
  border-radius: 8px;
  opacity: 1;
}
.sb-footer__newsletter form .ff-btn-submit:not(.ff_btn_no_style):hover,
.sb-footer__newsletter form .ff-btn-submit:not(.ff_btn_no_style):focus-visible {
  color: var(--blue) !important;
  background: var(--white) !important;
}
.sb-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px 0 28px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.75rem;
}
.sb-footer__bottom ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.sb-footer__bottom a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.75rem;
}
.sb-logo--light {
  color: var(--white);
}
@media (max-width: 1050px) {
  .sb-footer__grid {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .sb-footer__newsletter {
    grid-column: 1 / -1;
    max-width: 420px;
  }
}
@media (max-width: 800px) {
  .sb-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .sb-header > .sb-header__inner > .sb-nav,
  .sb-header__actions {
    display: none;
  }
  .sb-detail-layout,
  .sb-footer__grid {
    grid-template-columns: 1fr;
  }
  .sb-footer__newsletter {
    grid-column: auto;
  }
  .sb-list-grid,
  .sb-list-grid--programs {
    grid-template-columns: 1fr;
  }
  .sb-sidebar {
    position: static;
  }
  .sb-info-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .sb-footer {
    padding-top: 48px;
  }
  .sb-footer__navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }
  .sb-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
