@charset "UTF-8";
:root {
  --dh-color-primary-dark-teal: #003c54;
  --dh-color-primary-teal: #006688;
  --dh-color-dark-gold: #877136;
  --dh-color-light-gold: #bfa55d;
  --dh-color-dark-gray: #485157;
  --dh-color-medium-gray: #636363;
  --dh-color-white: #ffffff;
  --dh-color-warm-beige: #e3c8b8;
  --dh-color-muted-beige: #d1c7bc;
  --dh-color-light-gray: #dadada;
  --dh-surface-page: var(--dh-color-white);
  --dh-surface-band-warm: var(--dh-color-warm-beige);
  --dh-surface-band-muted: var(--dh-color-muted-beige);
  --dh-surface-band-dark: var(--dh-color-primary-dark-teal);
  --dh-surface-band-gold: var(--dh-color-dark-gold);
  --dh-text-default: var(--dh-color-dark-gray);
  --dh-text-on-dark: var(--dh-color-white);
  --dh-text-display: var(--dh-color-primary-dark-teal);
  --dh-text-accent: var(--dh-color-dark-gold);
  --dh-link-default: var(--dh-color-primary-teal);
  --dh-link-hover: var(--dh-color-primary-dark-teal);
  --dh-font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --dh-font-display: "freight-text-pro", Georgia, "Times New Roman", serif;
  --dh-fs-xs: 0.75rem;
  --dh-fs-sm: 0.875rem;
  --dh-fs-base: 1rem;
  --dh-fs-md: 1.125rem;
  --dh-fs-lg: 1.25rem;
  --dh-fs-xl: 1.5rem;
  --dh-fs-2xl: 2rem;
  --dh-fs-3xl: 2.5rem;
  --dh-fs-4xl: 3rem;
  --dh-fs-5xl: 3.75rem;
  --dh-fs-6xl: 4.5rem;
  --dh-lh-tight: 1.1;
  --dh-lh-snug: 1.25;
  --dh-lh-normal: 1.5;
  --dh-lh-relaxed: 1.65;
  --dh-fw-light: 300;
  --dh-fw-regular: 400;
  --dh-fw-medium: 500;
  --dh-fw-semibold: 600;
  --dh-fw-bold: 700;
  --dh-fw-extrabold: 800;
  --dh-fw-black: 900;
  --dh-space-1: 0.25rem;
  --dh-space-2: 0.5rem;
  --dh-space-3: 0.75rem;
  --dh-space-4: 1rem;
  --dh-space-5: 1.5rem;
  --dh-space-6: 2rem;
  --dh-space-7: 2.5rem;
  --dh-space-8: 3rem;
  --dh-space-9: 4rem;
  --dh-space-10: 5rem;
  --dh-space-11: 6rem;
  --dh-space-12: 8rem;
  --dh-section-py: var(--dh-space-10);
  --dh-section-py-tight: var(--dh-space-7);
  --dh-section-py-loose: var(--dh-space-12);
  --dh-max-width: 1280px;
  --dh-gutter: clamp(1rem, 4vw, 1.875rem);
  --dh-radius-sm: 4px;
  --dh-radius-md: 8px;
  --dh-radius-lg: 16px;
  --dh-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --dh-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --dh-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --dh-transition-fast: 150ms ease;
  --dh-transition-base: 250ms ease;
  --dh-transition-slow: 400ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

body:where(.page-node-type-landing-page, .page-node-type-page) {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  line-height: var(--dh-lh-normal);
  color: var(--dh-text-default);
  background: var(--dh-surface-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:where(.page-node-type-landing-page, .page-node-type-page) img,
body:where(.page-node-type-landing-page, .page-node-type-page) svg,
body:where(.page-node-type-landing-page, .page-node-type-page) video {
  display: block;
  max-width: 100%;
  height: auto;
}
body:where(.page-node-type-landing-page, .page-node-type-page) button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
body:where(.page-node-type-landing-page, .page-node-type-page) a {
  color: var(--dh-link-default);
  text-decoration: none;
}
body:where(.page-node-type-landing-page, .page-node-type-page) a:hover, body:where(.page-node-type-landing-page, .page-node-type-page) a:focus-visible {
  color: var(--dh-link-hover);
}

.p-cta-hub__body a:hover {
  color: var(--dh-color-light-gray);
}

body:where(.page-node-type-landing-page, .page-node-type-page) ul,
body:where(.page-node-type-landing-page, .page-node-type-page) ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
body:where(.page-node-type-landing-page, .page-node-type-page) p,
body:where(.page-node-type-landing-page, .page-node-type-page) h1, body:where(.page-node-type-landing-page, .page-node-type-page) h2, body:where(.page-node-type-landing-page, .page-node-type-page) h3, body:where(.page-node-type-landing-page, .page-node-type-page) h4, body:where(.page-node-type-landing-page, .page-node-type-page) h5, body:where(.page-node-type-landing-page, .page-node-type-page) h6 {
  margin: 0;
}
body:where(.page-node-type-landing-page, .page-node-type-page) input,
body:where(.page-node-type-landing-page, .page-node-type-page) select,
body:where(.page-node-type-landing-page, .page-node-type-page) textarea {
  font: inherit;
  color: inherit;
}

.dh-display-3, .dh-display-2, .dh-display-1 {
  font-family: var(--dh-font-display);
  font-weight: var(--dh-fw-regular);
  line-height: var(--dh-lh-tight);
  color: var(--dh-text-display);
}

.dh-heading-3, .dh-heading-2, .dh-heading-1 {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-semibold);
  line-height: var(--dh-lh-snug);
  color: var(--dh-text-display);
}

.dh-display-1 {
  font-size: clamp(var(--dh-fs-3xl), 5vw, var(--dh-fs-6xl));
}

.dh-display-2 {
  font-size: clamp(var(--dh-fs-2xl), 4vw, var(--dh-fs-5xl));
}

.dh-display-3 {
  font-size: clamp(var(--dh-fs-xl), 3vw, var(--dh-fs-4xl));
}

.dh-eyebrow {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-text-accent);
}

.dh-heading-1 {
  font-size: clamp(var(--dh-fs-2xl), 3vw, var(--dh-fs-3xl));
}

.dh-heading-2 {
  font-size: clamp(var(--dh-fs-xl), 2.4vw, var(--dh-fs-2xl));
}

.dh-heading-3 {
  font-size: clamp(var(--dh-fs-lg), 2vw, var(--dh-fs-xl));
}

.dh-text-lead {
  font-size: clamp(var(--dh-fs-md), 1.6vw, var(--dh-fs-lg));
  line-height: var(--dh-lh-relaxed);
}

.dh-text-body {
  font-size: var(--dh-fs-base);
  line-height: var(--dh-lh-relaxed);
}

.dh-text-small {
  font-size: var(--dh-fs-sm);
  line-height: var(--dh-lh-normal);
}

.dh-section {
  width: 100%;
  position: relative;
  padding-top: var(--dh-section-py);
  padding-bottom: var(--dh-section-py);
  background: var(--dh-surface-page);
}
.dh-section--tight {
  padding-top: var(--dh-section-py-tight);
  padding-bottom: var(--dh-section-py-tight);
}
.dh-section--loose {
  padding-top: var(--dh-section-py-loose);
  padding-bottom: var(--dh-section-py-loose);
}
.dh-section--flush {
  padding-top: 0;
  padding-bottom: 0;
}
.dh-section--warm-beige {
  background: var(--dh-surface-band-warm);
}
.dh-section--muted-beige {
  background: var(--dh-surface-band-muted);
}
.dh-section--dark-teal {
  background: var(--dh-surface-band-dark);
  color: var(--dh-text-on-dark);
}
.dh-section--gold {
  background: var(--dh-surface-band-gold);
  color: var(--dh-text-on-dark);
}
.dh-section--light-gray {
  background: var(--dh-color-light-gray);
}

.dh-inner {
  width: 100%;
  max-width: var(--dh-max-width);
  margin-inline: auto;
  padding-inline: var(--dh-gutter);
  position: relative;
}

.dh-stack {
  display: flex;
  flex-direction: column;
  gap: var(--dh-space-5);
}
.dh-stack--tight {
  gap: var(--dh-space-3);
}
.dh-stack--loose {
  gap: var(--dh-space-7);
}

.dh-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--dh-space-4);
  align-items: center;
}

.dh-grid {
  display: grid;
  gap: var(--dh-space-6);
}
.dh-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.dh-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.dh-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.dh-no-scrollbar {
  scrollbar-width: none;
}
.dh-no-scrollbar::-webkit-scrollbar {
  display: none;
}

.dh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--dh-space-2);
  padding: var(--dh-space-3) var(--dh-space-6);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--dh-radius-sm);
  cursor: pointer;
  transition: background-color var(--dh-transition-base), border-color var(--dh-transition-base), color var(--dh-transition-base), transform var(--dh-transition-fast);
}
.dh-btn:hover, .dh-btn:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}
.dh-btn:focus-visible {
  outline: 2px solid var(--dh-color-light-gold);
  outline-offset: 3px;
}
.dh-btn:active {
  transform: translateY(0);
}
.dh-btn--primary {
  background: var(--dh-color-primary-dark-teal);
  border-color: var(--dh-color-primary-dark-teal);
  color: var(--dh-color-white);
}
.dh-btn--primary:hover, .dh-btn--primary:focus-visible {
  background: var(--dh-color-primary-teal);
  border-color: var(--dh-color-primary-teal);
  color: var(--dh-color-white);
}
.dh-btn--gold {
  background: var(--dh-color-dark-gold);
  border-color: var(--dh-color-dark-gold);
  color: var(--dh-color-white);
}
.dh-btn--gold:hover, .dh-btn--gold:focus-visible {
  background: var(--dh-color-light-gold);
  border-color: var(--dh-color-light-gold);
  color: var(--dh-color-white);
}
.dh-btn--outline {
  background: transparent;
  border-color: var(--dh-color-primary-dark-teal);
  color: var(--dh-color-primary-dark-teal);
}
.dh-btn--outline:hover, .dh-btn--outline:focus-visible {
  background: var(--dh-color-primary-dark-teal);
  color: var(--dh-color-white);
}
.dh-btn--outline-on-dark {
  background: transparent;
  border-color: var(--dh-color-white);
  color: var(--dh-color-white);
}
.dh-btn--outline-on-dark:hover, .dh-btn--outline-on-dark:focus-visible {
  background: var(--dh-color-white);
  color: var(--dh-color-primary-dark-teal);
}

.dh-visually-hidden,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dh-visually-hidden:focus,
.visually-hidden:focus {
  position: static;
  width: auto;
  height: auto;
  padding: var(--dh-space-3) var(--dh-space-5);
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.tabs-wrapper.tabs-primary {
  margin: 0 0 1.25rem;
}
.tabs-wrapper.tabs-primary > ul.nav,
.tabs-wrapper.tabs-primary > ul.nav.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: none;
  border-bottom: 1px solid #cbd1d6;
  gap: 0;
}
.tabs-wrapper.tabs-primary > ul.nav.flex-column {
  flex-direction: column;
  border-bottom: 0;
  padding-left: 0;
}
.tabs-wrapper.tabs-primary > ul.nav.flex-column .nav-item {
  margin: 0;
  width: 100%;
}
.tabs-wrapper.tabs-primary > ul.nav.flex-column .nav-link {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
}

.dhpsny-menu__nav a.is-active {
  color: var(--dh-color-primary-teal);
}

.dhpsny-menu__nav a.is-active::after {
  color: var(--dh-color-primary-teal);
}

.tabs-wrapper.tabs-primary .nav-item {
  margin: 0 4px -1px 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.tabs-wrapper.tabs-primary .nav-link {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--dh-font-body);
  font-size: 14px;
  font-weight: var(--dh-fw-semibold);
  line-height: 1.4;
  color: var(--dh-color-primary-teal);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  transition: background var(--dh-transition-fast), color var(--dh-transition-fast);
}
.tabs-wrapper.tabs-primary .nav-link:hover, .tabs-wrapper.tabs-primary .nav-link:focus-visible {
  color: var(--dh-color-primary-dark-teal);
  background: rgba(0, 102, 136, 0.06);
  text-decoration: none;
}
.tabs-wrapper.tabs-primary .nav-link.active, .tabs-wrapper.tabs-primary .nav-link.is-active {
  color: var(--dh-color-primary-dark-teal);
  background: var(--dh-color-white);
  border-color: #cbd1d6;
  border-bottom-color: var(--dh-color-white);
}
.tabs-wrapper.tabs-primary .tab-toggle.dropdown-toggle {
  display: none;
}

.tabs.primary,
ul.tabs.primary {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
  padding: 0 0 0 1rem;
  list-style: none;
  border-bottom: 1px solid #cbd1d6;
}
.tabs.primary .tabs__tab,
.tabs.primary > li,
ul.tabs.primary .tabs__tab,
ul.tabs.primary > li {
  margin: 0 4px -1px 0;
  padding: 0;
  list-style: none;
}
.tabs.primary .tabs__link,
.tabs.primary > li > a,
ul.tabs.primary .tabs__link,
ul.tabs.primary > li > a {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--dh-font-body);
  font-size: 14px;
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-decoration: none;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}
.tabs.primary .tabs__link:hover, .tabs.primary .tabs__link:focus-visible,
.tabs.primary > li > a:hover,
.tabs.primary > li > a:focus-visible,
ul.tabs.primary .tabs__link:hover,
ul.tabs.primary .tabs__link:focus-visible,
ul.tabs.primary > li > a:hover,
ul.tabs.primary > li > a:focus-visible {
  color: var(--dh-color-primary-dark-teal);
  background: rgba(0, 102, 136, 0.06);
  text-decoration: none;
}
.tabs.primary .tabs__tab.is-active .tabs__link,
.tabs.primary > li.active > a,
.tabs.primary > li > a.is-active,
ul.tabs.primary .tabs__tab.is-active .tabs__link,
ul.tabs.primary > li.active > a,
ul.tabs.primary > li > a.is-active {
  color: var(--dh-color-primary-dark-teal);
  background: var(--dh-color-white);
  border-color: #cbd1d6;
  border-bottom-color: var(--dh-color-white);
}

.tabs-wrapper.tabs-secondary,
.tabs.secondary,
ul.tabs.secondary {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem 0 1rem;
  padding: 0 0 0 1rem;
  list-style: none;
  gap: 4px;
}
.tabs-wrapper.tabs-secondary .nav-item,
.tabs-wrapper.tabs-secondary .tabs__tab,
.tabs-wrapper.tabs-secondary > li,
.tabs.secondary .nav-item,
.tabs.secondary .tabs__tab,
.tabs.secondary > li,
ul.tabs.secondary .nav-item,
ul.tabs.secondary .tabs__tab,
ul.tabs.secondary > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabs-wrapper.tabs-secondary .nav-link,
.tabs-wrapper.tabs-secondary .tabs__link,
.tabs-wrapper.tabs-secondary > li > a,
.tabs.secondary .nav-link,
.tabs.secondary .tabs__link,
.tabs.secondary > li > a,
ul.tabs.secondary .nav-link,
ul.tabs.secondary .tabs__link,
ul.tabs.secondary > li > a {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--dh-font-body);
  font-size: 12px;
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-medium-gray);
  text-decoration: none;
  border-radius: 12px;
}
.tabs-wrapper.tabs-secondary .nav-link:hover, .tabs-wrapper.tabs-secondary .nav-link:focus-visible,
.tabs-wrapper.tabs-secondary .tabs__link:hover,
.tabs-wrapper.tabs-secondary .tabs__link:focus-visible,
.tabs-wrapper.tabs-secondary > li > a:hover,
.tabs-wrapper.tabs-secondary > li > a:focus-visible,
.tabs.secondary .nav-link:hover,
.tabs.secondary .nav-link:focus-visible,
.tabs.secondary .tabs__link:hover,
.tabs.secondary .tabs__link:focus-visible,
.tabs.secondary > li > a:hover,
.tabs.secondary > li > a:focus-visible,
ul.tabs.secondary .nav-link:hover,
ul.tabs.secondary .nav-link:focus-visible,
ul.tabs.secondary .tabs__link:hover,
ul.tabs.secondary .tabs__link:focus-visible,
ul.tabs.secondary > li > a:hover,
ul.tabs.secondary > li > a:focus-visible {
  color: var(--dh-color-primary-dark-teal);
  background: rgba(0, 102, 136, 0.08);
  text-decoration: none;
}
.tabs-wrapper.tabs-secondary .nav-link.active, .tabs-wrapper.tabs-secondary .nav-link.is-active,
.tabs-wrapper.tabs-secondary .tabs__link.active,
.tabs-wrapper.tabs-secondary .tabs__link.is-active,
.tabs-wrapper.tabs-secondary > li > a.active,
.tabs-wrapper.tabs-secondary > li > a.is-active,
.tabs.secondary .nav-link.active,
.tabs.secondary .nav-link.is-active,
.tabs.secondary .tabs__link.active,
.tabs.secondary .tabs__link.is-active,
.tabs.secondary > li > a.active,
.tabs.secondary > li > a.is-active,
ul.tabs.secondary .nav-link.active,
ul.tabs.secondary .nav-link.is-active,
ul.tabs.secondary .tabs__link.active,
ul.tabs.secondary .tabs__link.is-active,
ul.tabs.secondary > li > a.active,
ul.tabs.secondary > li > a.is-active {
  color: var(--dh-color-white);
  background: var(--dh-color-primary-teal);
}

.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.action-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.action-links a {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--dh-font-body);
  font-size: 14px;
  font-weight: var(--dh-fw-bold);
  line-height: 1.2;
  color: var(--dh-color-white);
  text-decoration: none;
  background: var(--dh-color-primary-teal);
  border-radius: 4px;
  transition: background var(--dh-transition-fast);
}
.action-links a:hover, .action-links a:focus-visible {
  background: var(--dh-color-primary-dark-teal);
  color: var(--dh-color-white);
  text-decoration: none;
}

.site-header {
  background: var(--dh-color-white);
  padding-top: 0;
  padding-bottom: 0;
}
.site-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 120px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-top: 14px;
}
.site-header__logo-img {
  height: 74px;
  width: auto;
  display: block;
}
.site-header__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  padding-top: 5px;
  margin-top: -26px;
}
.site-header__lang {
  position: relative;
  display: inline-block;
}
.site-header__lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  width: 100%;
  background: rgba(0, 102, 136, 0.1);
  border: 0;
  padding: 7px 10px;
  cursor: pointer;
  color: var(--dh-color-primary-dark-teal);
  font-family: var(--dh-font-display);
  font-size: 16px;
  font-weight: var(--dh-fw-regular);
  line-height: 1;
  min-width: 106px;
  justify-content: space-between;
}
.site-header__lang--open .site-header__lang-chevron {
  transform: scaleY(-1);
}
.site-header__lang-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 20;
  min-width: 100%;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: var(--dh-color-white);
  border: 1px solid rgba(0, 102, 136, 0.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.site-header__lang-menu[hidden] {
  display: none;
}
.site-header__lang-menu li {
  margin: 0;
  padding: 0;
}
.site-header__lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 8px 14px;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  color: var(--dh-color-primary-dark-teal);
}
.site-header__lang-option:hover, .site-header__lang-option:focus-visible {
  background: rgba(0, 102, 136, 0.1);
}
.site-header__lang-option[aria-current=true] {
  font-weight: var(--dh-fw-bold);
}
.site-header__lang-option-label {
  font-family: var(--dh-font-body);
  font-size: 15px;
}
.site-header__lang-flag {
  width: 28px;
  height: 21px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.site-header__lang-flag--us {
  background: linear-gradient(180deg, #bf0a30 0%, #bf0a30 15%, #fff 15%, #fff 23%, #bf0a30 23%, #bf0a30 38%, #fff 38%, #fff 46%, #bf0a30 46%, #bf0a30 62%, #fff 62%, #fff 69%, #bf0a30 69%, #bf0a30 85%, #fff 85%, #fff 100%);
}
.site-header__lang-flag--us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 54%;
  background: #3c3b6e;
}
.site-header__lang-flag--es {
  background: linear-gradient(180deg, #c60b1e 0%, #c60b1e 25%, #ffc400 25%, #ffc400 75%, #c60b1e 75%, #c60b1e 100%);
}
.site-header__lang-flag--fr {
  background: linear-gradient(90deg, #0055a4 0%, #0055a4 33.33%, #fff 33.33%, #fff 66.66%, #ef4135 66.66%, #ef4135 100%);
}
.site-header__lang-flag--de {
  background: linear-gradient(180deg, #000 0%, #000 33.33%, #dd0000 33.33%, #dd0000 66.66%, #ffce00 66.66%, #ffce00 100%);
}
.site-header__lang-flag--it {
  background: linear-gradient(90deg, #009246 0%, #009246 33.33%, #fff 33.33%, #fff 66.66%, #ce2b37 66.66%, #ce2b37 100%);
}
.site-header__lang-text {
  font-family: var(--dh-font-body);
  font-size: 16px;
  color: var(--dh-color-primary-dark-teal);
  font-weight: var(--dh-fw-bold);
}
.site-header__lang-chevron {
  font-size: 22px;
  line-height: 1;
}
.site-header__menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 2px 0;
  cursor: pointer;
  margin-top: 20px;
  color: var(--dh-color-primary-teal);
  font-family: var(--dh-font-body);
  font-size: 20px;
  font-weight: var(--dh-fw-extrabold);
  letter-spacing: 1px;
  line-height: 1;
}
.site-header__menu:hover, .site-header__menu:focus-visible {
  color: var(--dh-color-primary-dark-teal);
}
.site-header__menu-text {
  font: inherit;
  color: inherit;
}
.site-header__menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.site-header__menu-icon span {
  display: block;
  width: 15px;
  height: 2px;
  background: var(--dh-color-primary-teal);
  border-radius: 1px;
}

.site-header__lang-chevron font {
  display: none;
}

.site-header__lang-chevron {
  background: url('../images/language_arrow.svg') no-repeat center;
  width: 15px;
  height: 8px;
  font-size: 0px;
}

.breadcrumb li::before {
  content: ">";
}

.site-footer {
  background: linear-gradient(to right, var(--dh-color-primary-teal) 0, var(--dh-color-primary-teal) max(33.33%, calc(50% - 213px)), var(--dh-color-primary-dark-teal) max(33.33%, calc(50% - 213px)));
  color: var(--dh-color-white);
  position: relative;
  overflow: hidden;
  min-height: 800px;
  padding-top: 0;
}
.site-footer__inner {
  position: relative;
}
.site-footer__partners {
  position: absolute;
  left: 30px;
  top: 48px;
  bottom: 65px;
  width: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 24px 0 30px;
  z-index: 1;
}
.site-footer__partner-link, .site-footer__partner-img {
  display: block;
}
.site-footer__partner-img {
  height: auto;
  opacity: 0.8;
  transition: opacity var(--dh-transition-fast);
}
.site-footer__partner-img--1 {
  width: 172px;
}
.site-footer__partner-img--2 {
  width: 151px;
}
.site-footer__partner-img--3 {
  width: 122px;
}
.site-footer__partner-img--4 {
  width: 130px;
}
.site-footer__partner-link:hover .site-footer__partner-img, .site-footer__partner-link:focus-visible .site-footer__partner-img {
  opacity: 1;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 0 30px;
  position: relative;
  z-index: 0;
}
.site-footer__cta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 455px;
}
.site-footer__cta-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.site-footer__cta-bar {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--dh-color-primary-teal);
  flex-shrink: 0;
}
.site-footer__cta-heading-text {
  font-family: var(--dh-font-display);
  font-size: 45px;
  font-weight: var(--dh-fw-regular);
  font-style: italic;
  line-height: 1;
  color: var(--dh-color-white);
}
.site-footer__cta-link {
  margin-left: 54px;
  font-family: var(--dh-font-body);
  font-size: 30px;
  font-weight: var(--dh-fw-black);
  color: var(--dh-color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer__cta-link:hover, .site-footer__cta-link:focus-visible {
  color: var(--dh-color-light-gold);
}
.site-footer__social {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.site-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dh-color-primary-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dh-color-white);
  font-size: 16px;
  text-decoration: none;
  transition: background var(--dh-transition-fast);
}
.site-footer__social a:hover,
.site-footer__social a:focus-visible,
.dhpsny-menu__stay-social a:hover,
.dhpsny-menu__stay-social a:focus-visible {
  background: var(--dh-color-dark-gold);
}

.site-footer__main {
  display: flex;
  padding: 150px 0 40px;
  position: relative;
  z-index: 0;
}
.site-footer__info {
  margin-left: 512px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-footer__brand {
  margin-bottom: 58px;
}
.site-footer__brand-img {
  width: 312px;
  height: auto;
  display: block;
}
.site-footer__address {
  margin: 0;
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-regular);
  line-height: 1.8;
  color: var(--dh-color-white);
}
.site-footer__email {
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-black);
  color: var(--dh-color-white);
  text-decoration: underline;
}
.site-footer__email:hover, .site-footer__email:focus-visible {
  color: var(--dh-color-light-gold);
}
.site-footer__links {
  margin-left: auto;
  flex-shrink: 0;
}
.site-footer__links-title {
  font-family: var(--dh-font-body);
  font-size: 14px;
  font-weight: var(--dh-fw-extrabold);
  color: var(--dh-color-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.site-footer__links > *:not(.site-footer__links-title) {
  margin: 0;
  padding: 0;
}
.site-footer__links .menu,
.site-footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 33px;
}
.site-footer__links li {
  margin: 0;
  padding: 0;
}
.site-footer__links a {
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-extrabold);
  color: var(--dh-color-white) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__links .menu-item--active-trail a {
  color: var(--dh-color-light-gold) !important;
}
.site-footer__copyright {
  padding: 0;
  margin-left: 512px;
  position: relative;
  z-index: 0;
}
.site-footer__copyright-text {
  margin: 0;
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-white);
  white-space: pre-wrap;
}
.site-footer__skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.site-footer__skyline img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.55;
}
.site-footer--compact {
  overflow: visible;
}
.site-footer--compact .site-footer__inner {
  display: flex;
  align-items: flex-start;
  padding-top: 49px;
  padding-bottom: 0;
  min-height: 305px;
}
.site-footer--compact .site-footer__partners {
  position: relative;
  left: auto;
  top: 0;
  bottom: auto;
  width: 172px;
  align-self: stretch;
  margin-top: -49px;
  padding-bottom: 24px;
  gap: 20px;
  flex-shrink: 0;
}
.site-footer--compact .site-footer__top {
  padding: 0;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer--compact .site-footer__cta {
  margin-left: 283px;
}

.dhpsny-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  font-family: var(--dh-font-body);
  -webkit-font-smoothing: antialiased;
}
.dhpsny-menu[hidden] {
  display: none;
}
.dhpsny-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(72, 80, 87, 0.82);
  animation: dhpsny-menu-fade 220ms ease-out;
}
.dhpsny-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 626px;
  max-width: 100vw;
  background: var(--dh-color-white);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
  animation: dhpsny-menu-slide 280ms cubic-bezier(0.22, 1, 0.36, 1);
  padding-left: 105px;
  padding-right: 25px;
}
.dhpsny-menu__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 0;
}
.dhpsny-menu__logo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
}
.dhpsny-menu__logo-img {
  height: 71px;
  width: auto;
  display: block;
}
.dhpsny-menu__close {
  width: 21px;
  height: 21px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  color: var(--dh-color-primary-teal);
  flex-shrink: 0;
  margin-top: 6px;
}
.dhpsny-menu__close svg {
  width: 100%;
  height: 100%;
  display: block;
}
.dhpsny-menu__search {
  margin: 56px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dh-color-light-gold);
}
.dhpsny-menu__search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-primary-dark-teal);
}
.dhpsny-menu__search input::placeholder {
  color: #8a8e93;
}
.dhpsny-menu__search-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--dh-color-primary-teal);
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dh-color-primary-teal);
  flex-shrink: 0;
}
.dhpsny-menu__search-icon svg {
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
}
.dhpsny-menu__nav {
  margin: 36px 0;
}
.dhpsny-menu__nav ul,
.dhpsny-menu__nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.dhpsny-menu__nav li {
  margin: 0;
}
.dhpsny-menu__nav a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 24px;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-primary-dark-teal);
  text-decoration: none;
  width: fit-content;
  transition: color var(--dh-transition-fast);
}
.dhpsny-menu__nav a::after {
  content: "";
  color: var(--dh-color-light-gold);
  font-weight: var(--dh-fw-black);
  font-size: 22px;
  background: url(../images/menu-arrow.png) no-repeat 0 0;
  width: 22px;
  height: 22px;
  border: none;
}
.dhpsny-menu__nav a:hover, .dhpsny-menu__nav a:focus-visible {
  color: var(--dh-color-primary-teal);
}
.dhpsny-menu__divider {
  margin: 38px 50px 0 50px;
  height: 1px;
  background: #d0d4d8;
}
.dhpsny-menu__gold-line {
  margin: 28px 0px 0 0px;
  height: 1px;
  background: var(--dh-color-light-gold);
}
.dhpsny-menu__contact {
  margin: 22px 0px 0px 0px;
}
.dhpsny-menu__contact-link {
  font-size: 18px;
  font-weight: var(--dh-fw-extrabold);
  color: var(--dh-color-primary-dark-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dhpsny-menu__contact-link:hover, .dhpsny-menu__contact-link:focus-visible {
  color: var(--dh-color-primary-teal);
}
.dhpsny-menu__phone {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: var(--dh-fw-extrabold);
  color: var(--dh-color-primary-dark-teal);
  text-decoration: none;
}
.dhpsny-menu__phone:hover, .dhpsny-menu__phone:focus-visible {
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dhpsny-menu__stay {
  margin: 40px 0 40px 0;
  padding: 0 0px;
}
.dhpsny-menu__stay-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.dhpsny-menu__stay-photo {
  width: 147px;
  height: auto;
  align-self: stretch;
  border-radius: 0px 0 0 0px;
  object-fit: cover;
  flex-shrink: 0;
}
.dhpsny-menu__stay-panel {
  flex: 1;
  min-width: 0;
  background: var(--dh-color-dark-gold);
  color: var(--dh-color-white);
  padding: 22px 26px 26px 26px;
  border-radius: 0 0px 0px 0;
}
.dhpsny-menu__stay-heading {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 10px 0;
  flex-wrap: wrap;
  line-height: 1;
}
.dhpsny-menu__stay-heading-lead {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-medium);
  font-size: 34px;
}
.dhpsny-menu__stay-heading-emphasis {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-black);
  font-size: 34px;
}
.dhpsny-menu__stay-label {
  font-size: 14px;
  font-weight: var(--dh-fw-black);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dhpsny-menu__stay-form {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--dh-color-white);
  padding-bottom: 4px;
  margin-bottom: 18px;
}
.dhpsny-menu__stay-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--dh-font-body);
  font-size: 14px;
  font-weight: var(--dh-fw-medium);
  color: var(--dh-color-white);
}
.dhpsny-menu__stay-form input::-webkit-input-placeholder {
  color: var(--dh-color-white);
  opacity: 1;
}
.dhpsny-menu__stay-form input::-moz-placeholder {
  color: var(--dh-color-white);
  opacity: 1;
}
.dhpsny-menu__stay-form input:-ms-input-placeholder {
  color: var(--dh-color-white);
  opacity: 1;
}
.dhpsny-menu__stay-form input:-moz-placeholder {
  color: var(--dh-color-white);
  opacity: 1;
}
.dhpsny-menu__stay-form input::placeholder {
  color: var(--dh-color-white);
  opacity: 0.85;
}
.dhpsny-menu__stay-form button {
  background: transparent;
  border: 0;
  color: var(--dh-color-white);
  font-size: 0px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  background: url(../images/white-arrow.png) no-repeat 0 0;
  width: 22px;
  height: 22px;
}
.dhpsny-menu__stay-form-wrapper {
  margin-bottom: 18px;
}
.dhpsny-menu__stay-social {
  list-style: none;
  margin: 22px 0 0 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.dhpsny-menu__stay-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dh-color-primary-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--dh-color-white);
  font-size: 13px;
  transition: background var(--dh-transition-fast);
}

.dhpsny-menu__stay-social a .fa-linkedin-in:before,
.site-footer .fa-linkedin-in:before {
  content: "";
  background: url(../images/social_ln.svg) no-repeat 0 0;
  width: 15px;
  height: 14px;
  display: block;
}

.dhpsny-menu__panel .dhpsny-menu__stay-social a .fa-linkedin-in:before {
  background-size: 14px;
}

.dhpsny-menu__panel .dhpsny-menu__stay-social a .fa-facebook-f:before {
  background-size: 7px;
}

.dhpsny-menu__stay-social a .fa-instagram:before,
.site-footer .fa-instagram:before {
  content: "";
  background: url(../images/social-insta.svg) no-repeat center;
  width: 21px;
  height: 21px;
  display: block;
  background-size: 14px;
}

.dhpsny-menu__stay-social a .fa-facebook-f:before,
.site-footer .fa-facebook-f:before {
  content: "";
  background: url(../images/social_fb.svg) no-repeat 0 0;
  width: 8px;
  height: 15px;
  display: block;
}

.dhpsny-menu__stay-social a .fa-youtube:before,
.site-footer .fa-youtube:before {
  content: "";
  background: url(../images/social-yt.svg) no-repeat center;
  width: 21px;
  height: 18px;
  display: block;
  background-size: 14px;
}

.site-footer .fa-linkedin-in:before,
.site-footer .fa-instagram:before,
.site-footer .fa-youtube:before {
  background-size: 20px;
  width: 20px;
  height: 20px;
}

.site-footer .fa-facebook-f:before {
  width: 9px;
  height: 20px;
}

body.dhpsny-menu-open {
  overflow: hidden;
}

.p-page-menu {
  font-family: var(--dh-font-body);
  line-height: 1.4;
}
.p-page-menu__current {
  display: block;
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-black);
  letter-spacing: 0.5px;
  line-height: 1;
  color: var(--dh-color-primary-teal);
  text-decoration: none;
  margin: 0 0 24px;
  padding: 0;
}
.p-page-menu__current:hover {
  color: var(--dh-text-display);
}
.p-page-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-page-menu__item > .p-page-menu__list {
  margin-top: 12px;
  padding-inline-start: 18px;
}
.p-page-menu__item + .p-page-menu__item {
  margin-top: 18px;
}
.p-page-menu__link {
  display: inline-block;
  font-size: 14px;
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-link-default);
  text-decoration: none;
}
.p-page-menu__link:hover {
  color: var(--dh-link-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-page-menu--siblings .p-page-menu__link {
  position: relative;
  white-space: nowrap;
}
.p-page-menu--siblings .p-page-menu__item--current .p-page-menu__link {
  padding-inline-start: 22px;
}
.p-page-menu--siblings .p-page-menu__link {
  padding-left: 0;
}
.p-page-menu__item--current .p-page-menu__link {
  font-weight: var(--dh-fw-black);
  color: var(--dh-text-display);
}
.p-page-menu__item--current .p-page-menu__link:hover {
  color: var(--dh-text-display);
}
.p-page-menu__item--current .p-page-menu__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.p-page-menu__item--current .p-page-menu__link::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.p-text-block--dark-teal .p-page-menu__current,
.p-text-block--dark-teal .p-page-menu__item--current .p-page-menu__link,
.p-text-block--dark-gray .p-page-menu__current,
.p-text-block--dark-gray .p-page-menu__item--current .p-page-menu__link {
  color: var(--dh-text-on-dark);
}
.p-text-block--dark-teal .p-page-menu__link,
.p-text-block--dark-gray .p-page-menu__link {
  color: var(--dh-color-light-gold);
}
.p-text-block--dark-teal .p-page-menu__link:hover,
.p-text-block--dark-gray .p-page-menu__link:hover {
  color: var(--dh-color-white);
}

.p-hero {
  width: 100%;
  background: var(--dh-color-white);
}
.p-hero:has(.p-hero__image) {
  padding-bottom: 21px;
}
.p-hero__header {
  width: 100%;
  height: auto;
  min-height: 164px;
  background: var(--dh-color-dark-gold);
}
.p-hero__header-inner {
  width: 100%;
  max-width: var(--dh-max-width);
  margin-inline: auto;
  padding: 88px 0 0 30px;
  height: auto;
  box-sizing: border-box;
}
.p-hero__body {
  width: 100%;
  max-width: var(--dh-max-width);
  margin-inline: auto;
}
.p-hero__eyebrow {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-extrabold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dh-color-white);
  margin: 0 0 var(--dh-space-2);
}
.p-hero__title {
  font-family: var(--dh-font-body) !important;
  font-size: 45px !important;
  font-weight: var(--dh-fw-black) !important;
  color: var(--dh-color-white) !important;
  line-height: 1 !important;
  margin: 0 !important;
  background: unset !important;
}
.p-hero__title em,
.p-hero__title .p-hero__title-italic {
  font-family: var(--dh-font-display) !important;
  font-style: italic;
  font-weight: var(--dh-fw-regular);
}
.p-hero__subhead {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  color: var(--dh-color-white);
  margin: var(--dh-space-3) 0 0;
  max-width: 740px;
}
.p-hero__image {
  width: 1218px;
  height: 402px;
  object-fit: cover;
  margin-left: 30px;
  display: block;
}
.p-hero__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--dh-space-4);
  padding: 12px 32px 0 32px;
}
.p-hero__breadcrumb {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  color: var(--dh-color-dark-gray);
}
.p-hero__breadcrumb .current {
  font-weight: var(--dh-fw-medium);
}
.p-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.p-hero__breadcrumb a:hover {
  text-decoration: underline;
}
.p-hero__caption {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-light);
  color: var(--dh-color-dark-gray);
  text-align: left;
  line-height: 1.4;
  margin: 0;
  max-width: 400px;
}
.p-hero:not(:has(.p-hero__image)), .p-hero--bare {
  background: var(--dh-color-white);
}
.p-hero:not(:has(.p-hero__image)) .p-hero__header, .p-hero--bare .p-hero__header {
  height: auto;
  min-height: 150px;
}
.p-hero:not(:has(.p-hero__image)) .p-hero__header-inner, .p-hero--bare .p-hero__header-inner {
  padding: 88px 0 0 30px;
}
.p-hero--gold .p-hero__header {
  background: var(--dh-color-dark-gold);
}
.p-hero--dark-teal .p-hero__header {
  background: var(--dh-color-primary-teal);
}
.p-hero--dark-gray .p-hero__header {
  background: var(--dh-color-dark-gray);
}
.p-hero--warm-beige .p-hero__header {
  background: var(--dh-color-warm-beige);
}
.p-hero--warm-beige .p-hero__header .p-hero__title,
.p-hero--warm-beige .p-hero__header .p-hero__eyebrow,
.p-hero--warm-beige .p-hero__header .p-hero__subhead {
  color: var(--dh-text-display);
}
.p-hero--muted-beige .p-hero__header {
  background: var(--dh-surface-band-muted);
}
.p-hero--muted-beige .p-hero__header .p-hero__title,
.p-hero--muted-beige .p-hero__header .p-hero__eyebrow,
.p-hero--muted-beige .p-hero__header .p-hero__subhead {
  color: var(--dh-text-display);
}

.p-hero-home {
  position: relative;
  width: 100%;
  max-width: var(--dh-max-width);
  margin-inline: auto;
  background: var(--dh-color-white);
  overflow: hidden;
  padding: 0 0 0 30px;
  height: 415px;
}
.p-hero-home__slides {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 1218px;
  height: 402px;
}
.p-hero-home__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 400ms ease;
}
.p-hero-home__slide--active {
  opacity: 1;
  z-index: 1;
}
.p-hero-home__slide img {
  width: 1218px;
  height: 402px;
  object-fit: cover;
  display: block;
}
.p-hero-home__caption {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: var(--dh-color-white);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  padding: var(--dh-space-2) var(--dh-space-4);
  max-width: 80%;
  text-align: center;
}
.p-hero-home__credit {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: var(--dh-color-white);
  font-family: var(--dh-font-body);
  font-size: 12px;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.p-hero-home__credit:hover {
  text-decoration: underline;
}
.p-hero-home__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 77px;
  height: 103px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  background: rgba(135, 113, 54, 0.9);
}
.p-hero-home__arrow svg {
  width: 24px;
  height: 44px;
}
.p-hero-home__arrow svg path {
  stroke: var(--dh-color-light-gold);
}
.p-hero-home__arrow:hover svg path {
  stroke: var(--dh-color-white);
}
.p-hero-home__arrow--prev {
  left: 30px;
}
.p-hero-home__arrow--next {
  right: 32px;
}
.p-hero-home__arrow:focus-visible {
  outline: 2px solid var(--dh-color-light-gold);
  outline-offset: 4px;
}
.p-hero-home__dots {
  position: absolute;
  left: 50%;
  bottom: 12.6px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 2;
}
.p-hero-home__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dh-color-white);
  border: 1px solid var(--dh-color-dark-gold);
  padding: 0;
  cursor: pointer;
}
.p-hero-home__dot--active {
  background: var(--dh-color-light-gold);
}

.p-intro {
  padding-block: 27px 42px;
  -webkit-font-smoothing: antialiased;
  color: var(--dh-text-default);
}
.p-intro__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--dh-space-8);
}
.p-intro__lead {
  flex: 1 1 auto;
  min-width: 0;
}
.p-intro__headline {
  font-size: clamp(2.25rem, 5vw, 3.625rem);
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--dh-text-display);
  font-weight: var(--dh-fw-regular);
  max-width: 840px;
}
.p-intro__headline-lead {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
}
.p-intro__headline-accent {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-extrabold);
}
.p-intro__subhead {
  font-family: var(--dh-font-body);
  font-size: 1.75rem;
  font-weight: var(--dh-fw-semibold);
  line-height: 1.3;
  color: var(--dh-text-display);
  max-width: 750px;
  margin: 0 0 var(--dh-space-7);
}
.p-intro__subhead p {
  margin: 0;
}
.p-intro__subhead p + p {
  margin-top: 0.4em;
}
.p-intro__subhead a {
  color: var(--dh-color-primary-dark-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-intro__subhead a:hover {
  color: var(--dh-color-primary-teal);
}
.p-intro__welcome {
  margin-top: 52px;
  padding-inline-start: 254px;
}
.p-intro__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
}
.p-intro__eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 5px;
  background: var(--dh-color-light-gold);
  flex-shrink: 0;
}
.p-intro__eyebrow span {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-black);
  color: var(--dh-text-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.p-intro__body {
  font-family: var(--dh-font-body);
  font-size: 20px;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-text-default);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 0 var(--dh-space-7) 54px;
}
.p-intro__body > p {
  margin: 0;
}
.p-intro__body > p + p {
  margin-top: 0.6em;
}
.p-intro__link {
  display: inline-block;
  margin-inline-start: 54px;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-intro__link:hover {
  color: var(--dh-link-hover);
}
.p-intro__newsletter {
  flex: 0 0 280px;
  width: 280px;
  padding-top: 7px;
  font-family: var(--dh-font-body);
}
.p-intro__newsletter-label {
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dh-color-primary-teal);
  margin-bottom: 16px;
}
.p-intro__newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--dh-color-light-gold);
  padding-bottom: 4px;
}
.p-intro__newsletter-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-regular);
  color: var(--dh-text-display);
}
.p-intro__newsletter-input::placeholder {
  color: var(--dh-text-display);
  opacity: 0.6;
}
.p-intro__newsletter-submit {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--dh-color-light-gold);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: var(--dh-fw-black);
  padding: 0;
  line-height: 1;
}
.p-intro--white {
  background: var(--dh-color-white);
}
.p-intro--warm-beige {
  background: var(--dh-surface-band-warm);
}
.p-intro--muted-beige {
  background: var(--dh-surface-band-muted);
}

.p-text-block {
  padding-block: 10px 87px;
  -webkit-font-smoothing: antialiased;
  color: var(--dh-text-default);
}
.p-text-block__main {
  padding-inline-start: 208px;
}
.p-text-block__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px 6px;
}
.p-text-block__eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 5px;
  background: var(--dh-text-accent);
  flex-shrink: 0;
}
.p-text-block__eyebrow span {
  font-family: "freight-text-pro", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: var(--dh-fw-medium);
  color: var(--dh-text-display);
  letter-spacing: 0.5px;
}
.p-text-block__headline {
  font-family: var(--dh-font-body);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--dh-fw-bold);
  line-height: 1.2;
  color: var(--dh-text-display);
  margin: 0 0 var(--dh-space-4);
  max-width: 710px;
}
.p-text-block__lead {
  font-family: var(--dh-font-body);
  font-size: clamp(1.125rem, 1.875vw, 1.5rem);
  font-weight: var(--dh-fw-regular);
  line-height: 1.35;
  color: var(--dh-text-default);
  margin: 0 0 20px;
  max-width: 710px;
}
.p-text-block__body {
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-regular);
  line-height: 1.65;
  color: var(--dh-text-default);
  max-width: 710px;
}
.p-text-block__body > p {
  margin: 0;
}
.p-text-block__body > p + p {
  margin-top: 38px;
}
.p-text-block__body > ul, .p-text-block__body > ol {
  margin: 0 0 0 1.25em;
}
.p-text-block__body > ul + p, .p-text-block__body > ol + p, .p-text-block__body > p + ul, .p-text-block__body > p + ol {
  margin-top: 38px;
}
.p-text-block__body a {
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-text-block__body a:hover {
  color: var(--dh-link-hover);
}
.p-text-block__aside {
  display: none;
}
.p-text-block--with-page-menu .p-text-block__aside {
  display: block;
}

.navbar-nav ul {
  margin-left: 20px;
}

.navbar-nav li a {
  position: relative;
}

.site-footer ul.menu a.is-active {
  color: var(--dh-color-light-gold);
}

.p-text-block--white {
  background: var(--dh-color-white);
}
.p-text-block--light-gray {
  background: var(--dh-color-light-gray);
}
.p-text-block--dark-teal {
  background: var(--dh-surface-band-dark);
}
.p-text-block--dark-teal .p-text-block__eyebrow span,
.p-text-block--dark-teal .p-text-block__headline,
.p-text-block--dark-teal .p-text-block__lead,
.p-text-block--dark-teal .p-text-block__body {
  color: var(--dh-text-on-dark);
}
.p-text-block--dark-teal .p-text-block__body a {
  color: var(--dh-color-light-gold);
}
.p-text-block--dark-teal .p-text-block__body a:hover {
  color: var(--dh-color-white);
}
.p-text-block--dark-gray {
  background: var(--dh-color-dark-gray);
}
.p-text-block--dark-gray .p-text-block__eyebrow span,
.p-text-block--dark-gray .p-text-block__headline,
.p-text-block--dark-gray .p-text-block__lead,
.p-text-block--dark-gray .p-text-block__body {
  color: var(--dh-text-on-dark);
}
.p-text-block p {
  margin-bottom: 1em;
}

.p-basic-page {
  background: var(--dh-color-white);
}
.p-basic-page__content {
  padding-block: 10px 87px;
  background: var(--dh-color-white);
  color: var(--dh-text-default);
}
.p-basic-page__main {
  min-width: 0;
  padding-inline-start: 208px;
}
.p-basic-page__intro, .p-basic-page__body {
  max-width: 710px;
}
.p-basic-page__intro {
  font-family: var(--dh-font-body);
  font-size: clamp(1.125rem, 1.875vw, 1.5rem);
  font-weight: var(--dh-fw-regular);
  line-height: 1.35;
  color: var(--dh-text-default);
  margin: 0 0 34px;
}
.p-basic-page__body {
  min-width: 0;
  overflow-wrap: break-word;
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-regular);
  line-height: 1.65;
  color: var(--dh-text-default);
  /***/
  /***/
}
.p-basic-page__body .field,
.p-basic-page__body .field__item {
  display: contents;
}
.p-basic-page__body > *:first-child,
.p-basic-page__body .field__item > *:first-child {
  margin-top: 0;
}
.p-basic-page__body p {
  margin: 0;
}
.p-basic-page__body p + p,
.p-basic-page__body p + ul,
.p-basic-page__body p + ol,
.p-basic-page__body p + table,
.p-basic-page__body ul + p,
.p-basic-page__body ol + p,
.p-basic-page__body table + p,
.p-basic-page__body figure + p,
.p-basic-page__body p + figure {
  margin-top: 38px;
}
.p-basic-page__body h2,
.p-basic-page__body h3,
.p-basic-page__body h4,
.p-basic-page__body h5,
.p-basic-page__body h6 {
  color: var(--dh-text-display);
  line-height: 1.2;
  margin: 44px 0 20px;
}
.p-basic-page__body h1 {
  color: var(--dh-text-display);
  font-family: var(--dh-font-body);
  font-size: clamp(2rem, 3.6vw, 45px);
  font-weight: 900;
  line-height: 1.22;
}
.p-basic-page__body h2 {
  font-family: var(--dh-font-body);
  font-size: clamp(2rem, 3.6vw, 32px);
  font-weight: 900;
  line-height: 1.22;
}
.p-basic-page__body h3 {
  font-family: var(--dh-font-body);
  font-size: clamp(1.625rem, 2.6vw, 16px);
  font-weight: 900;
}
.p-basic-page__body h4 {
  font-family: var(--dh-font-display);
  font-size: clamp(1.5rem, 2.3vw, 24px);
  font-weight: var(--dh-fw-medium);
  line-height: 1.25;
  color: var(--dh-color-primary-teal);
}
.p-basic-page__body h5,
.p-basic-page__body h6 {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: 900;
}
.p-basic-page__body hr {
  background-color: var(--dh-color-primary-teal);
  margin: 32px 0;
}
.p-basic-page__body p + ol,
.p-basic-page__body ol + ul {
  margin-top: 32px;
}
.p-basic-page__body li::marker {
  color: var(--dh-color-dark-gold);
  font-weight: 900;
}
.p-basic-page__body table {
  width: 100%;
  border-collapse: collapse;
}
.p-basic-page__body thead th {
  color: var(--dh-color-primary-teal);
  font-weight: 900;
}
.p-basic-page__body tbody tr:nth-child(odd) {
  background: #f7f4ee;
}
.p-basic-page__body th,
.p-basic-page__body td {
  padding: 4px 8px;
  border: 0;
}
.p-basic-page__body tbody th {
  color: var(--dh-color-dark-gray);
  font-weight: 900;
}
.p-basic-page__body h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  font-family: var(--dh-font-body);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dh-text-display);
}
.p-basic-page__body h3::before {
  content: "";
  flex: 0 0 49px;
  width: 49px;
  height: 5px;
  background: var(--dh-color-light-gold);
}
.p-basic-page__body h3 + p {
  margin-top: 0;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.35;
}
.p-basic-page__body ul,
.p-basic-page__body ol {
  margin: 0 0 0 1.25em;
  padding: 0;
}
.p-basic-page__body ul {
  list-style: disc;
}
.p-basic-page__body ol {
  list-style: decimal;
}
.p-basic-page__body li + li {
  margin-top: 6px;
}
.p-basic-page__body a {
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-basic-page__body a:hover, .p-basic-page__body a:focus-visible {
  color: var(--dh-link-hover);
}
.p-basic-page__body strong,
.p-basic-page__body b {
  font-weight: 900;
  color: var(--dh-color-primary-teal);
}
.p-basic-page__body em,
.p-basic-page__body i {
  font-style: italic;
}
.p-basic-page__body table {
  width: 100%;
  min-width: 640px;
  margin: 38px 0;
  border-collapse: collapse;
  font-size: var(--dh-fs-base);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-basic-page__body table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .p-basic-page__body table > thead,
  .p-basic-page__body table > tbody,
  .p-basic-page__body table > tfoot {
    display: table;
    width: max-content;
    min-width: 640px;
  }
}
.p-basic-page__body th,
.p-basic-page__body td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}
.p-basic-page__body th {
  color: var(--dh-text-display);
  font-weight: 900;
}
.p-basic-page__body figure {
  margin: 48px 0;
  max-width: 704px;
}
.p-basic-page__body figure img,
.p-basic-page__body > img,
.p-basic-page__body p > img {
  display: block;
  width: 100%;
  max-width: 704px;
  height: auto;
}
.p-basic-page__body figcaption,
.p-basic-page__body .caption {
  margin-top: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-light);
  line-height: 1.4;
  color: #707070;
}
.p-basic-page__aside {
  display: none;
}
.p-basic-page--with-page-menu .p-basic-page__aside {
  display: block;
}
.p-basic-page__body figure.align-left,
.p-basic-page__body .align-left {
  float: left;
  width: min(48%, 335px);
  margin: 0 38px 18px 0;
}
.p-basic-page__body figure.align-left img,
.p-basic-page__body .align-left img {
  width: 100%;
  max-width: none;
}
.p-basic-page__body figure.align-left + p {
  margin-top: 0;
}
.p-basic-page__body::after {
  content: "";
  display: block;
  clear: both;
}
.p-basic-page__body figure.align-right,
.p-basic-page__body .align-right {
  float: right;
  width: min(48%, 360px);
  margin: 38px 0 18px 38px;
}
.p-basic-page__body figure.align-right img,
.p-basic-page__body .align-right img {
  width: 100%;
  max-width: none;
}
.p-basic-page__body::after {
  content: "";
  display: block;
  clear: both;
}
.p-basic-page__body .image-grid {
  display: grid;
  gap: 24px;
  margin: 48px 0;
}
.p-basic-page__body .image-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.p-basic-page__body .image-grid figure {
  margin: 0;
  max-width: none;
}
.p-basic-page__body .image-grid img {
  width: 100%;
  max-width: none;
  height: auto;
}
@media (max-width: 700px) {
  .p-basic-page__body figure.align-left,
  .p-basic-page__body .align-left {
    float: none;
    width: 100%;
    margin: 0 0 var(--dh-space-5);
  }
  .p-basic-page__body figure.align-right,
  .p-basic-page__body .align-right {
    float: none;
    width: 100%;
    margin: 0 0 var(--dh-space-5);
  }
  .p-basic-page__body .image-grid--2 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) {
  .p-basic-page--with-page-menu .dh-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px;
    column-gap: 48px;
    align-items: start;
  }
  .p-basic-page--with-page-menu .p-basic-page__main {
    grid-column: 1;
    grid-row: 1;
  }
  .p-basic-page--with-page-menu .p-basic-page__aside {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (max-width: 768px) {
  .p-basic-page--with-page-menu .p-basic-page__aside {
    margin-bottom: var(--dh-space-5);
  }
}
@media (max-width: 768px) {
  .p-basic-page__content {
    padding-block: var(--dh-space-6) var(--dh-space-4);
  }
  .p-basic-page__main {
    padding-inline-start: 0;
  }
  .p-basic-page__body {
    font-size: var(--dh-fs-md);
  }
  .p-basic-page__body p + p,
  .p-basic-page__body p + ul,
  .p-basic-page__body p + ol,
  .p-basic-page__body p + table,
  .p-basic-page__body ul + p,
  .p-basic-page__body ol + p,
  .p-basic-page__body table + p,
  .p-basic-page__body figure + p,
  .p-basic-page__body p + figure {
    margin-top: var(--dh-space-6);
  }
}

@media (min-width: 701px) {
  .p-detail__hero .p-hero__header {
    height: auto;
    min-height: 150px;
    display: flex;
    align-items: center;
  }
  .p-detail__hero .p-hero__header-inner, .p-detail__hero.p-hero--bare .p-hero__header-inner {
    height: auto;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
.p-detail__hero .p-hero__title {
  line-height: 1.12 !important;
  text-wrap: balance;
}
.p-detail__meta {
  margin: 0 0 28px;
  font-family: var(--dh-font-body);
  color: var(--dh-color-dark-gray);
  max-width: 710px;
}
.p-detail__meta-item {
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.p-detail__meta-item + .p-detail__meta-item {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid var(--dh-color-light-gray);
}
.p-detail__meta-date {
  color: var(--dh-color-primary-teal);
}
.p-detail__meta--list {
  display: grid;
  row-gap: 14px;
  margin: 0 0 36px;
}
.p-detail__meta-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  column-gap: 20px;
  align-items: baseline;
}
.p-detail__meta-row dt {
  margin: 0;
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dh-color-primary-teal);
}
.p-detail__meta-row dd {
  margin: 0;
  font-size: var(--dh-fs-md);
  line-height: 1.45;
  color: var(--dh-color-dark-gray);
}
.p-detail__featured {
  margin: 0 0 38px;
  max-width: 710px;
}
.p-detail__featured .field,
.p-detail__featured .field__item {
  margin: 0;
}
.p-detail__featured img {
  display: block;
  width: 100%;
  height: auto;
}
.p-detail__covers .field__items,
.p-detail__covers > .field {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-detail__covers .field__item {
  margin: 0;
}
.p-detail__covers img {
  width: auto;
  max-height: 360px;
  box-shadow: var(--dh-shadow-md);
}
.p-detail__cta {
  margin: 0 0 38px;
}
.p-detail__staff {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin: 0 0 36px;
  max-width: 710px;
}
.p-detail__staff-photo {
  width: 204px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}
.p-detail__staff-info {
  min-width: 0;
}
.p-detail__staff-role {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-lg);
  font-weight: var(--dh-fw-black);
  color: var(--dh-color-primary-teal);
  margin: 0 0 10px;
  line-height: 1.25;
}
.p-detail__staff-pronouns {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  color: var(--dh-color-dark-gray);
  margin: 0 0 14px;
}
.p-detail__staff-contact {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  margin: 0 0 6px;
}
.p-detail__staff-contact a {
  color: var(--dh-color-primary-teal);
  font-weight: var(--dh-fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-detail__staff-contact a:hover, .p-detail__staff-contact a:focus-visible {
  color: var(--dh-color-primary-dark-teal);
}
.p-detail__back {
  margin: 48px 0 0;
  max-width: 710px;
}
.p-detail__back a {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dh-color-primary-teal);
  text-decoration: none;
}
.p-detail__back a:hover, .p-detail__back a:focus-visible {
  color: var(--dh-color-primary-dark-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .p-detail__staff {
    flex-direction: column;
    gap: 20px;
  }
  .p-detail__staff-photo {
    width: 180px;
  }
  .p-detail__meta-row {
    grid-template-columns: 96px minmax(0, 1fr);
    column-gap: 14px;
  }
  .p-detail__back {
    margin-top: 32px;
  }
}

.p-search-cta {
  padding-block: 116px 0;
  min-height: 375px;
  -webkit-font-smoothing: antialiased;
  color: var(--dh-text-on-dark);
}
.p-search-cta__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--dh-space-8);
  padding-inline-start: clamp(0px, 9.5vw, 104px);
  padding-inline-end: clamp(0px, 11vw, 141px);
}
.p-search-cta__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}
.p-search-cta__headline {
  font-size: clamp(1.75rem, 3.125vw, 2.5rem);
  line-height: 1.1;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-text-on-dark);
  margin: 0;
}
.p-search-cta__headline-lead {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
}
.p-search-cta__headline-accent {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-extrabold);
}
.p-search-cta__body {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  line-height: 1.5;
  max-width: 600px;
}
.p-search-cta__body > p {
  margin: 0;
}
.p-search-cta__body > p + p {
  margin-top: 0.6em;
}
.p-search-cta__link {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-text-on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}
.p-search-cta__link:hover {
  color: var(--dh-color-light-gold);
}
.p-search-cta__logo {
  flex-shrink: 0;
  margin-top: 3px;
}
.p-search-cta__logo img {
  display: block;
  width: 411px;
  height: auto;
  max-width: 100%;
  mix-blend-mode: lighten;
}
.p-search-cta--dark-gray {
  background: var(--dh-color-dark-gray);
}
.p-search-cta--dark-teal {
  background: var(--dh-surface-band-dark);
}

.p-goal-list {
  padding-block: 92px var(--dh-space-8);
  -webkit-font-smoothing: antialiased;
}
.p-goal-list__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 46px clamp(0px, 17.8vw, 228px);
}
.p-goal-list__eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 5px;
  background: var(--dh-color-light-gold);
  flex-shrink: 0;
}
.p-goal-list__eyebrow span {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-black);
  color: var(--dh-text-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.p-goal-list__headline {
  font-family: var(--dh-font-body);
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: var(--dh-fw-bold);
  color: var(--dh-text-display);
  margin: 0 0 var(--dh-space-6) clamp(0px, 17.8vw, 228px);
  line-height: 1.25;
}
.p-goal-list__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-inline-start: clamp(0px, 20.2vw, 259px);
  list-style: none;
  padding: 0;
}
.p-goal-list__cta {
  margin-top: 60px;
  margin-inline-start: clamp(0px, 21.8vw, 279px);
}
.p-goal-list__cta a {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-goal-list__cta a:hover {
  color: var(--dh-link-hover);
}
.p-goal-list--white {
  background: var(--dh-color-white);
}
.p-goal-list--warm-beige {
  background: var(--dh-surface-band-warm);
}

.p-goal {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.p-goal__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 11px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-goal__icon img,
.p-goal__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-goal__icon--fallback {
  border: 2px solid var(--dh-text-display);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-black);
  color: var(--dh-text-display);
  background: transparent;
}
.p-goal__text {
  max-width: 550px;
}
.p-goal__title {
  font-family: var(--dh-font-body);
  font-size: 32px;
  font-weight: var(--dh-fw-extrabold);
  color: var(--dh-text-display);
}
.p-goal__body {
  font-family: var(--dh-font-body);
  font-size: 24px;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-text-default);
  line-height: 1.3;
}
.p-goal__body::before {
  content: " ";
}
.p-goal--dark-teal .p-goal__title {
  color: var(--dh-color-primary-dark-teal);
}
.p-goal--dark-teal .p-goal__icon--fallback {
  border-color: var(--dh-color-primary-dark-teal);
  color: var(--dh-color-primary-dark-teal);
}
.p-goal--teal .p-goal__title {
  color: var(--dh-color-primary-teal);
}
.p-goal--teal .p-goal__icon--fallback {
  border-color: var(--dh-color-primary-teal);
  color: var(--dh-color-primary-teal);
}
.p-goal--dark-gold .p-goal__title {
  color: var(--dh-color-dark-gold);
}
.p-goal--dark-gold .p-goal__icon--fallback {
  border-color: var(--dh-color-dark-gold);
  color: var(--dh-color-dark-gold);
}

.p-card-grid {
  padding-block: 78px 93px;
  -webkit-font-smoothing: antialiased;
}
.p-card-grid__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 var(--dh-space-3);
}
.p-card-grid__eyebrow::before {
  content: "";
  width: 40px;
  height: 5px;
  background: var(--dh-text-accent);
  flex-shrink: 0;
}
.p-card-grid__eyebrow span {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dh-text-display);
}
.p-card-grid__headline {
  font-size: clamp(2rem, 3.515625vw, 2.8125rem);
  line-height: normal;
  font-weight: var(--dh-fw-regular);
  margin: 0 0 53px;
  color: var(--dh-text-display);
  max-width: 840px;
}
.p-card-grid__headline-lead {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
}
.p-card-grid__headline-accent {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-black);
}
.p-card-grid__intro {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  line-height: 1.5;
  margin: 0 0 var(--dh-space-7);
  max-width: 800px;
  color: var(--dh-text-default);
}
.p-card-grid__intro > p {
  margin: 0;
}
.p-card-grid__intro > p + p {
  margin-top: 0.6em;
}
.p-card-grid__items {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
}
.p-card-grid--cols-2 .p-card-grid__items {
  grid-template-columns: repeat(2, 1fr);
}
.p-card-grid--cols-3 .p-card-grid__items {
  grid-template-columns: repeat(3, 1fr);
}
.p-card-grid--cols-4 .p-card-grid__items {
  grid-template-columns: repeat(4, 1fr);
}
.p-card-grid--white {
  background: var(--dh-color-white);
}
.p-card-grid--teal {
  background: var(--dh-color-primary-teal);
  color: var(--dh-text-on-dark);
}
.p-card-grid--teal .p-card-grid__eyebrow span,
.p-card-grid--teal .p-card-grid__headline,
.p-card-grid--teal .p-card-grid__intro {
  color: var(--dh-text-on-dark);
}
.p-card-grid--light-gray {
  background: var(--dh-color-light-gray);
}
.p-card-grid--muted-beige {
  background: var(--dh-surface-band-muted);
}
.p-card-grid--style-text_only .p-card-grid__items {
  padding-inline: clamp(0px, 8vw, 104px);
  gap: 40px 94px;
  padding-right: 0;
}

.p-card {
  display: flex;
  text-decoration: none;
  color: inherit;
}
.p-card--style-image_overlay {
  align-items: stretch;
  height: 135px;
}
.p-card--style-image_overlay .p-card__image {
  width: 147px;
  height: 135px;
  flex-shrink: 0;
  overflow: hidden;
}
.p-card--style-image_overlay .p-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-card--style-image_overlay .p-card__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: var(--dh-color-white);
  min-width: 0;
}
.p-card--style-image_overlay .p-card__title {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-xl);
  font-weight: var(--dh-fw-extrabold);
  line-height: 1.2;
  color: var(--dh-text-display);
}
.p-card--style-image_overlay .p-card__chevron {
  color: var(--dh-text-accent);
  flex-shrink: 0;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 24px;
}
.p-card--style-image_overlay .p-card__chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}
.p-card--style-text_only {
  flex-direction: column;
  gap: var(--dh-space-2);
  /* max-width: 85%; */
  height: 100%;
}
.p-card--style-text_only .p-card__title {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-xl);
  font-weight: var(--dh-fw-regular);
  line-height: 1.25;
  color: var(--dh-text-default);
}
.p-card--style-text_only .p-card__subtitle {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.4;
  color: var(--dh-text-default);
}
.p-card--style-text_only .p-card__link {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
  /* margin-top:auto; */
}
.p-card--style-icon_text {
  flex-direction: column;
  gap: var(--dh-space-3);
}
.p-card--style-icon_text .p-card__icon {
  width: 56px;
  height: 56px;
}
.p-card--style-icon_text .p-card__icon img,
.p-card--style-icon_text .p-card__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-card--style-icon_text .p-card__title {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-lg);
  font-weight: var(--dh-fw-bold);
  color: var(--dh-text-display);
}
.p-card--style-icon_text .p-card__body {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  line-height: 1.5;
  color: var(--dh-text-default);
}
.p-card--style-icon_text .p-card__body > p {
  margin: 0;
}
.p-card--style-icon_text .p-card__body > p + p {
  margin-top: 0.6em;
}
.p-card--style-photo_above {
  flex-direction: column;
  gap: var(--dh-space-3);
}
.p-card--style-photo_above .p-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--dh-radius-sm);
}
.p-card--style-photo_above .p-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-card--style-photo_above .p-card__title {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-lg);
  font-weight: var(--dh-fw-bold);
  color: var(--dh-text-display);
}
.p-card--style-photo_above .p-card__subtitle {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  color: var(--dh-text-default);
}
.p-card--style-photo_above .p-card__body {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  line-height: 1.5;
  color: var(--dh-text-default);
}
.p-card--style-photo_above .p-card__body > p {
  margin: 0;
}
.p-card--style-photo_above .p-card__body > p + p {
  margin-top: 0.6em;
}
.p-card--style-photo_above .p-card__link {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}

.p-callout {
  position: relative;
  width: 100%;
  background: var(--dh-color-white);
  -webkit-font-smoothing: antialiased;
}
.p-callout__box {
  max-width: var(--dh-max-width);
  margin: 0 auto;
  padding: var(--dh-space-8);
  color: var(--dh-color-white);
}
.p-callout__eyebrow {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 var(--dh-space-3);
  color: inherit;
}
.p-callout__headline {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-xl);
  font-weight: var(--dh-fw-black);
  margin: 0 0 var(--dh-space-2);
  color: inherit;
}
.p-callout__body {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: var(--dh-fw-regular);
  line-height: 32px;
  color: inherit;
  max-width: 470px;
  margin: 0;
}
.p-callout__body > p {
  margin: 0;
}
.p-callout__body > p + p {
  margin-top: 0.6em;
}
.p-callout__body a {
  color: inherit;
  text-decoration: underline;
}
.p-callout__link {
  display: inline-block;
  margin-top: var(--dh-space-5);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  color: inherit;
  text-decoration: underline;
}
.p-callout__contact {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  line-height: 32px;
  color: inherit;
}
.p-callout__contact .name {
  font-weight: var(--dh-fw-semibold);
}
.p-callout__contact .role {
  font-style: italic;
  margin-bottom: 32px;
}
.p-callout__contact .phone {
  margin-top: 32px;
}
.p-callout__contact a {
  color: inherit;
  text-decoration: underline;
}
.p-callout--inset_box {
  padding: var(--dh-space-7) var(--dh-gutter);
}
.p-callout--inset_box .p-callout__box {
  max-width: var(--dh-max-width);
  margin: 0 auto;
  padding: var(--dh-space-8);
}
.p-callout--inset_box:not(:has(.p-callout__contact)) .p-callout__headline {
  font-size: 32px;
  line-height: 38px;
  font-weight: var(--dh-fw-black);
  max-width: 800px;
  margin: 0 0 var(--dh-space-2);
}
.p-callout--inset_box:not(:has(.p-callout__contact)) .p-callout__body {
  font-size: 32px;
  line-height: 38px;
  font-weight: var(--dh-fw-regular);
  max-width: 800px;
}
.p-callout--split_with_contact {
  padding: var(--dh-space-7) var(--dh-gutter);
}
.p-callout--split_with_contact .p-callout__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  column-gap: var(--dh-space-7);
  align-items: start;
}
.p-callout--split_with_contact .p-callout__eyebrow, .p-callout--split_with_contact .p-callout__headline, .p-callout--split_with_contact .p-callout__body, .p-callout--split_with_contact .p-callout__link {
  grid-column: 1;
}
.p-callout--split_with_contact .p-callout__body {
  max-width: 430px;
}
.p-callout--split_with_contact .p-callout__divider {
  grid-column: 2;
  grid-row: 1/span 100;
  background: var(--dh-color-white);
  height: 100%;
}
.p-callout--split_with_contact .p-callout__contact {
  grid-column: 3;
  grid-row: 1/span 100;
}
.p-callout--full_width {
  padding: 55px 30px;
}
.p-callout--full_width .p-callout__box {
  max-width: var(--dh-max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  column-gap: var(--dh-space-8);
  align-items: start;
}
.p-callout--full_width .p-callout__col--left, .p-callout--full_width .p-callout__col--right {
  min-width: 0;
}
.p-callout--full_width .p-callout__headline {
  font-size: 45px;
  line-height: 55px;
  font-weight: var(--dh-fw-black);
  margin: 0;
}
.p-callout__col--right .p-callout__body p {
  font-size: 24px;
  line-height: 30px;
  font-weight: var(--dh-fw-regular);
}
.p-callout--full_width .p-callout__body {
  font-size: var(--dh-fs-md);
  line-height: var(--dh-lh-relaxed);
  margin: 0;
  max-width: none;
}
.p-callout--full_width .p-callout__link {
  display: inline-block;
  margin-top: 10px;
}
.p-callout--full_width.p-callout--surface-dark_teal, .p-callout--surface-dark_teal .p-callout__box {
  background: var(--dh-color-primary-teal);
}
.page-title-planning--assessment .p-callout--surface-dark_teal .p-callout__box {
  background: var(--dh-color-primary-dark-teal);
}

.p-app-callout.p-app-callout--surface-gold {
  padding-top: 0px;
}

.p-callout.p-callout--inset_box {
  padding-bottom: 34px;
}

.p-callout--surface-gold .p-callout__box, .p-callout--full_width.p-callout--surface-gold {
  background: var(--dh-color-dark-gold);
}
.p-callout--surface-dark_gray .p-callout__box, .p-callout--full_width.p-callout--surface-dark_gray {
  background: var(--dh-color-dark-gray);
}

.p-cta-hub {
  padding-block: 78px 93px;
  color: var(--dh-text-on-dark);
  -webkit-font-smoothing: antialiased;
}
.p-cta-hub--dark-teal {
  background: var(--dh-surface-band-dark);
}
.p-cta-hub--dark-gold {
  background: var(--dh-surface-band-gold);
}
.p-cta-hub--dark-gray {
  background: var(--dh-color-dark-gray);
}
.p-cta-hub__inner {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 360px);
  justify-content: start;
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
  padding-inline-start: 208px;
}
.p-cta-hub--layout-stacked .p-cta-hub__inner {
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
}
.p-cta-hub__lead {
  color: inherit;
}
.p-text-block p strong {
  color: var(--dh-color-primary-teal);
  font-weight: var(--dh-fw-black);
}

.page-title-planning--assessment .p-text-block__eyebrow::before {
  display: none;
}

.page-title-planning--assessment .p-text-block__eyebrow {
  margin-left: 0px;
}

.page-title-planning--assessment .p-text-block__eyebrow span {
  font-family: var(--dh-font-display) !important;
  font-style: italic;
}

.p-cta-hub__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 var(--dh-space-3);
}
.p-cta-hub__eyebrow::before {
  content: "";
  width: 40px;
  height: 5px;
  background: var(--dh-text-accent);
  flex-shrink: 0;
}
.p-cta-hub__eyebrow span {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: inherit;
}
.p-cta-hub__headline {
  font-size: clamp(2rem, 3.515625vw, 2.8125rem);
  line-height: normal;
  font-weight: var(--dh-fw-regular);
  margin: 0 0 var(--dh-space-6);
  color: inherit;
}
.p-cta-hub__headline-lead {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
  display: block;
}
.p-cta-hub__headline-accent {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-black);
  display: block;
  font-size: clamp(2.5rem, 4.2vw, 3.075rem);
  line-height: 1.05;
}
.p-cta-hub__body {
  font-family: var(--dh-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: inherit;
  max-width: 340px;
  margin-inline-start: 48px;
}
.p-cta-hub__body > p {
  margin: 0;
}
.p-cta-hub__body > p + p {
  margin-top: 0.8em;
}
.p-cta-hub__body a {
  color: inherit;
  text-decoration: underline;
}
.p-cta-hub__tiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-cta-hub__tile-item {
  margin: 0;
}

.p-cta-hub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--dh-space-4);
  width: 100%;
  padding: 39px 30px;
  background: var(--dh-color-white);
  color: var(--dh-text-display);
  text-decoration: none;
  transition: background var(--dh-transition-fast), color var(--dh-transition-fast);
}
.p-cta-hub-link__title {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: var(--dh-fw-extrabold);
  line-height: 1.25;
  color: inherit;
}
.p-cta-hub-link__chevron {
  font-size: var(--dh-fs-xl);
  line-height: 1;
  color: var(--dh-text-accent);
  flex-shrink: 0;
}
.p-cta-hub-link:hover, .p-cta-hub-link:focus-visible {
  background: var(--dh-color-light-gray);
}
.p-cta-hub-link:focus-visible {
  outline: 2px solid var(--dh-text-accent);
  outline-offset: 2px;
}

.p-app-callout {
  position: relative;
  width: 100%;
  background: var(--dh-color-white);
  padding: var(--dh-space-7) var(--dh-gutter);
  -webkit-font-smoothing: antialiased;
}
.p-app-callout__box {
  max-width: var(--dh-max-width);
  margin: 0 auto;
  padding: var(--dh-space-8) var(--dh-space-9);
  background: var(--dh-color-dark-gold);
  color: var(--dh-color-white);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  column-gap: var(--dh-space-8);
  align-items: start;
}
.p-app-callout__main {
  min-width: 0;
}
.p-app-callout__deadline {
  min-width: 0;
}
.p-app-callout__heading {
  position: relative;
  padding-left: 52px;
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
  font-size: 45px;
  line-height: 1;
  margin: 0;
  color: inherit;
}
.p-app-callout__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 38px;
  height: 1px;
  background: currentColor;
}
.p-app-callout__box .p-app-callout__heading::before {
  background: var(--dh-color-light-gold);
  height: 5px;
}
.p-app-callout__body {
  margin: var(--dh-space-5) 0 0;
  padding-left: 52px;
  max-width: 460px;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: var(--dh-fw-semibold);
  line-height: 28px;
  color: inherit;
}
.p-app-callout__body > p {
  margin: 0;
}
.p-app-callout__body > p + p {
  margin-top: 0.6em;
}
.p-app-callout__deadline-label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: var(--dh-fw-regular);
  line-height: 24px;
  color: inherit;
}
.p-app-callout__deadline-day {
  margin-top: var(--dh-space-5);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: var(--dh-fw-medium);
  color: inherit;
}
.p-app-callout__deadline-date {
  display: block;
  margin-top: var(--dh-space-1);
  font-family: var(--dh-font-body);
  font-size: 26px;
  font-weight: var(--dh-fw-black);
  color: inherit;
  text-decoration: none;
}
.p-app-callout a.p-app-callout__deadline-date:hover,
.p-app-callout a.p-app-callout__deadline-date:focus {
  text-decoration: underline;
}
.p-app-callout__deadline-link {
  display: block;
  margin-top: var(--dh-space-2);
  font-family: var(--dh-font-body);
  font-size: 32px;
  font-weight: var(--dh-fw-black);
  line-height: 1.1;
  color: inherit;
  text-decoration: underline;
}
.p-app-callout__deadline-link:hover, .p-app-callout__deadline-link:focus {
  color: var(--dh-color-light-gold);
  text-decoration: underline;
}
.p-app-callout--surface-dark_teal .p-app-callout__box {
  background: var(--dh-color-primary-dark-teal);
}

.p-contact-form {
  -webkit-font-smoothing: antialiased;
}
.p-contact-form--surface-light_gray {
  background: var(--dh-color-light-gray);
}
.p-contact-form__inner {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 320px);
  justify-content: space-between;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.p-contact-form__main {
  min-width: 0;
}
.p-contact-form__heading {
  font-family: var(--dh-font-body);
  font-size: 45px;
  font-weight: var(--dh-fw-black);
  color: var(--dh-text-display);
  line-height: 1;
  margin: 0;
}
.p-contact-form__intro {
  margin-top: 27px;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-xl);
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-dark-gray);
  line-height: 1.35;
  max-width: 550px;
}
.p-contact-form__intro > p {
  margin: 0;
}
.p-contact-form__intro > p + p {
  margin-top: 0.6em;
}
.p-contact-form__form {
  margin-top: 50px;
}
.p-contact-form__field {
  margin-bottom: 50px;
}
.p-contact-form__form .form-item, .p-contact-form__form .js-form-item {
  margin-bottom: 16px;
}
.p-contact-form__field:last-child, .p-contact-form__form .form-item:last-child, .p-contact-form__form .js-form-item:last-child {
  margin-bottom: 0;
}
.p-contact-form__label, .p-contact-form__form .form-item > label {
  display: block;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-medium);
  color: var(--dh-color-dark-gray);
  margin-bottom: 12px;
}
.contact-form .form-actions {
  margin-top: 0px;
}

.p-contact-form__form .form-item > label {
  text-transform: capitalize;
}
.p-contact-form__label .req, .p-contact-form__label.form-required::after, .p-contact-form__label .form-required::after, .p-contact-form__form .form-item > label .req, .p-contact-form__form .form-item > label.form-required::after, .p-contact-form__form .form-item > label .form-required::after {
  color: #FD0000;
  margin-left: 2px;
}
.p-contact-form__input, .p-contact-form__textarea, .p-contact-form__form input[type=text], .p-contact-form__form input[type=email], .p-contact-form__form input[type=tel], .p-contact-form__form input[type=url], .p-contact-form__form .form-text, .p-contact-form__form .form-email, .p-contact-form__form .form-tel, .p-contact-form__form .form-url, .p-contact-form__form textarea, .p-contact-form__form .form-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid var(--dh-color-dark-gray);
  background: transparent;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  color: var(--dh-color-dark-gray);
  padding: 4px 0;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.p-contact-form__input:focus, .p-contact-form__textarea:focus, .p-contact-form__form input[type=text]:focus, .p-contact-form__form input[type=email]:focus, .p-contact-form__form input[type=tel]:focus, .p-contact-form__form input[type=url]:focus, .p-contact-form__form .form-text:focus, .p-contact-form__form .form-email:focus, .p-contact-form__form .form-tel:focus, .p-contact-form__form .form-url:focus, .p-contact-form__form textarea:focus, .p-contact-form__form .form-textarea:focus {
  border-bottom-color: var(--dh-color-primary-teal);
  box-shadow: none;
  outline: none;
}
.p-contact-form__textarea, .p-contact-form__form textarea, .p-contact-form__form .form-textarea {
  height: 130px;
  resize: none;
}
.p-contact-form__form .form-textarea-wrapper, .p-contact-form__form .resizable-textarea {
  border: none;
  background: transparent;
  padding: 0;
}
.p-contact-form__form .form-textarea-wrapper textarea, .p-contact-form__form .resizable-textarea textarea {
  border-radius: 0;
}
.p-contact-form__submit, .p-contact-form__form .form-submit, .p-contact-form__form button[type=submit], .p-contact-form__form input[type=submit] {
  margin-top: 47px;
  background: var(--dh-color-primary-teal);
  color: var(--dh-color-white);
  border: none;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  padding: 16px 42px;
  cursor: pointer;
  border-radius: 2px;
  line-height: 1.2;
  text-transform: none;
}
.p-contact-form__submit:hover, .p-contact-form__submit:focus, .p-contact-form__form .form-submit:hover, .p-contact-form__form .form-submit:focus, .p-contact-form__form button[type=submit]:hover, .p-contact-form__form button[type=submit]:focus, .p-contact-form__form input[type=submit]:hover, .p-contact-form__form input[type=submit]:focus {
  background: var(--dh-color-primary-dark-teal);
}
.p-contact-form__form .description, .p-contact-form__form .form-item__description {
  font-size: 13px;
  color: var(--dh-color-dark-gray);
  margin-top: 6px;
  opacity: 0.8;
}
.p-contact-form__form .form-item--error-message, .p-contact-form__form .form-item__error-message {
  color: #ff0000;
  font-size: 13px;
  margin-top: 6px;
}
.p-contact-form__form .form-item--error input, .p-contact-form__form .form-item--error textarea {
  border-bottom-color: #ff0000;
}
.p-contact-form__sidebar {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  color: var(--dh-color-dark-gray);
  line-height: 1.55;
}
.p-contact-form__sidebar-block + .p-contact-form__sidebar-block {
  margin-top: 28px;
}
.p-contact-form__sidebar-heading {
  font-weight: var(--dh-fw-bold);
  margin-bottom: 4px;
}
.p-contact-form__sidebar-link {
  color: inherit;
  text-decoration: none;
}
.p-contact-form__sidebar-link:hover, .p-contact-form__sidebar-link:focus {
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
}
.p-contact-form__sidebar-link:visited {
  color: inherit;
}

.p-services-block {
  width: 100%;
  background: var(--dh-color-white);
  padding: 50px 0 0 235px;
  -webkit-font-smoothing: antialiased;
}
.p-services-block--surface-light_gray {
  background: var(--dh-color-light-gray);
}
.p-services-block::before {
  content: "";
  display: block;
  width: 703px;
  height: 1px;
  background: var(--dh-color-primary-teal);
  margin-bottom: 32px;
}
.p-services-block__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-services-block__item + .p-services-block__item {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--dh-color-primary-teal);
  max-width: 703px;
}

.p-service__title {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
  font-size: var(--dh-fs-xl);
  line-height: 1;
  margin: 0 0 var(--dh-space-3);
  color: var(--dh-color-primary-teal);
}
.p-service--color-gray .p-service__title {
  color: var(--dh-color-dark-gray);
}
.p-service__subtitle {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  color: var(--dh-color-dark-gray);
  margin: 0 0 var(--dh-space-4);
}
.p-service__body {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: var(--dh-fw-regular);
  line-height: 30px;
  color: var(--dh-color-dark-gray);
  max-width: 707px;
}
.p-service__body > p {
  margin: 0 0 18px;
}
.p-service__body > p:last-child {
  margin-bottom: 0;
}
.p-service__body strong {
  font-weight: var(--dh-fw-extrabold);
  color: var(--dh-color-primary-teal);
}
.p-service__body em {
  font-style: italic;
}
.p-service__body a {
  color: var(--dh-color-primary-teal);
  font-weight: var(--dh-fw-semibold);
  text-decoration: none;
}
.p-service__body a:hover {
  text-decoration: underline;
}
.p-service__body ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.p-service__body ul li {
  font-size: var(--dh-fs-md);
  line-height: 30px;
  color: var(--dh-color-dark-gray);
}
.p-service__body ul li::before {
  content: "•  ";
}

.p-staff-listing {
  width: 100%;
  background: var(--dh-color-white);
  -webkit-font-smoothing: antialiased;
}
.p-staff-listing--surface-light-gray {
  background: var(--dh-color-light-gray);
}
.p-staff-listing__header {
  padding-top: 0;
  margin-bottom: var(--dh-space-6);
  margin-left: 200px;
}
.p-staff-listing__eyebrow {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.p-staff-listing__headline {
  font-size: var(--dh-fs-3xl);
  color: var(--dh-color-primary-dark-teal);
  line-height: 1.1;
  margin: 0;
  font-weight: var(--dh-fw-black);
}
.p-staff-listing__headline-lead {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-black);
}
.p-staff-listing__headline-accent {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
}
.p-staff-listing__intro {
  margin-top: var(--dh-space-4);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  color: var(--dh-color-dark-gray);
  line-height: 1.55;
  max-width: 786px;
}
.p-staff-listing--bios {
  padding: 0 0 var(--dh-space-7);
  position: relative;
}
.p-staff-listing--bios .p-staff-listing__entries {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-staff-listing--bios .p-staff-listing__entry + .p-staff-listing__entry {
  padding-top: 50px;
}
.p-staff-listing--cards {
  padding: var(--dh-space-7) 32px var(--dh-space-7);
}
.p-staff-listing--cards .p-staff-listing__entries .views-element-container {
  display: grid;
  grid-template-columns: repeat(3, 193px);
  column-gap: 63px;
  row-gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  justify-items: center;
}
.p-staff-listing__aside {
  display: none;
}
.p-staff-listing--with-page-menu .p-staff-listing__aside {
  display: block;
}

.staff-bio-entry__card {
  background: #f4f4f4;
  display: flex;
  align-items: stretch;
  width: 704px;
  margin-left: 206px;
}
.staff-bio-entry__photo {
  width: 204px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.staff-bio-entry__info {
  flex: 1;
  padding: 30px 40px 30px 30px;
}
.staff-bio-entry__name {
  font-size: var(--dh-fs-2xl);
  color: var(--dh-color-primary-teal);
  line-height: 1;
  margin: 0 0 18px;
  font-weight: var(--dh-fw-regular);
}
.staff-bio-entry__name .first-name {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
  margin-right: 4px;
}
.staff-bio-entry__name .last-name {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-black);
}
.staff-bio-entry__title {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  color: var(--dh-color-dark-gray);
  line-height: 1.45;
  margin: 0 0 14px;
}
.staff-bio-entry__email {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  color: var(--dh-color-primary-teal);
  font-weight: var(--dh-fw-semibold);
  text-decoration: underline;
}
.staff-bio-entry__bio {
  margin: 36px 0 0 206px;
  max-width: 786px;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  color: var(--dh-color-dark-gray);
  line-height: 29px;
}
.staff-bio-entry__bio p {
  margin: 0 0 25px;
}
.staff-bio-entry__bio p:last-child {
  margin: 0;
}
.staff-bio-entry__bio a {
  color: var(--dh-color-primary-teal);
  font-weight: var(--dh-fw-semibold);
}
.staff-bio-entry__bio .staff-pronouns-link {
  font-style: italic;
}
.staff-bio-entry__bio .staff-pronouns-link a {
  color: var(--dh-color-primary-teal);
  font-style: italic;
  text-decoration: underline;
}

.staff-card-entry {
  text-align: center;
  width: 193px;
}
.staff-card-entry__avatar {
  width: 193px;
  height: 193px;
  border-radius: 50%;
  background: var(--dh-color-light-gray);
  margin: 0 auto 23px;
  object-fit: cover;
  overflow: hidden;
}
.staff-card-entry__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.staff-card-entry__name {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-lg);
  font-weight: var(--dh-fw-black);
  color: var(--dh-color-primary-teal);
  margin: 0 0 6px;
}
.staff-card-entry__title {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-dark-gray);
  margin: 0 0 30px;
  min-height: 54px;
}
.staff-card-entry__link {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
}

.p-blog-feature {
  width: 100%;
  padding-bottom: 80px;
  background: rgba(219, 219, 219, 0.3);
  -webkit-font-smoothing: antialiased;
}
.p-blog-feature--surface-white {
  background: var(--dh-color-white);
}
.p-blog-feature--surface-muted_beige {
  background: var(--dh-surface-band-muted);
}
.p-blog-feature__header {
  display: flex;
  align-items: baseline;
  padding: 88px 0 0 0;
}
.p-blog-feature__headline {
  font-size: 45px;
  line-height: 1.1;
  margin: 0;
  color: var(--dh-text-display);
}
.p-blog-feature__headline-lead {
  font-family: var(--dh-font-display);
  font-weight: var(--dh-fw-regular);
  font-style: italic;
}
.p-blog-feature__headline-accent {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-extrabold);
}
.p-blog-feature__view-link {
  margin-left: 25px;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-text-display);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-blog-feature__content {
  display: flex;
  margin-top: 62px;
  padding-left: 134px;
}
.p-blog-feature__main {
  width: 601px;
  flex-shrink: 0;
}
.p-blog-feature__main-image {
  width: 601px;
  height: 369px;
  object-fit: cover;
  display: block;
  margin-top: 0;
}
.p-blog-feature__main-card {
  margin-top: 25px;
}
.p-blog-feature__sidebar {
  margin-left: 112px;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-blog-feature__date {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-black);
  color: var(--dh-text-display);
  margin-bottom: 8px;
  display: block;
}
.p-blog-feature__title {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-xl);
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-dark-gray);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-blog-feature__title a {
  color: var(--dh-color-dark-gray);
  text-decoration: none;
  font-size: 24px;
  font-weight: var(--dh-fw-regular);
}
.p-blog-feature__read-more {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

article.node {
  margin-bottom: 50px;
}

.p-event-feature {
  width: 100%;
  background: var(--dh-color-white);
  -webkit-font-smoothing: antialiased;
}
.p-event-feature--surface-light_gray {
  background: var(--dh-color-light-gray);
}
.p-event-feature__headline {
  padding: 62px 0 0 30px;
  font-size: 45px;
  line-height: 55px;
  margin: 0;
  color: var(--dh-color-medium-gray);
}
.p-event-feature__headline-lead {
  font-family: var(--dh-font-display);
  font-weight: var(--dh-fw-regular);
  font-style: italic;
}
.p-event-feature__headline-accent {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-extrabold);
}
.p-event-feature--card_grid {
  height: 753px;
}
.p-event-feature--card_grid .p-event-feature__items {
  display: flex;
  margin-top: 56px;
  padding: 0 34px 0 31px;
  gap: 34px;
  list-style: none;
}
.p-event-feature--card_grid .p-event-feature__item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-event-feature .p-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.p-event-feature .p-event-card__category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.p-event-feature .p-event-card__category::before {
  content: "";
  display: inline-block;
  width: 52px;
  height: 5px;
  background: var(--dh-color-primary-teal);
  flex-shrink: 0;
}
.p-event-feature .p-event-card__category .text {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-black);
  color: var(--dh-color-dark-gray);
}
.p-event-feature .p-event-card--type-lecture .p-event-card__category::before,
.p-event-feature .p-event-card--type-lectures .p-event-card__category::before {
  background: var(--dh-color-primary-teal);
}
.p-event-feature .p-event-card--type-seminar .p-event-card__category::before,
.p-event-feature .p-event-card--type-seminars .p-event-card__category::before {
  background: var(--dh-color-light-gold);
}
.p-event-feature .p-event-card--type-presentation .p-event-card__category::before,
.p-event-feature .p-event-card--type-presentations .p-event-card__category::before {
  background: var(--dh-color-dark-gold);
}
.p-event-feature .p-event-card__image {
  width: 100%;
  height: 224px;
  object-fit: cover;
  display: block;
}
.p-event-feature .p-event-card__date {
  margin-top: 21px;
  font-size: 22px;
  line-height: 38px;
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-medium-gray);
}
.p-event-feature .p-event-card__title {
  margin-top: 10px;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-xl);
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-dark-gray);
  line-height: 30px;
}
.p-event-feature .p-event-card__link {
  margin-top: auto;
  padding-top: 7px;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  line-height: 19px;
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-events-listing {
  width: 100%;
  background: var(--dh-color-white);
  padding: var(--dh-space-8) 0 var(--dh-space-10);
  -webkit-font-smoothing: antialiased;
}
.p-events-listing--surface-light_gray {
  background: var(--dh-color-light-gray);
}
.p-events-listing .dh-inner {
  max-width: 880px;
  padding: 0 var(--dh-gutter);
}
.p-events-listing__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-events-listing__item {
  display: flex;
  gap: var(--dh-space-7);
  padding: 26px 0 0;
}
.p-events-listing__item:first-child {
  padding-top: 0;
}
.p-events-listing__item-date {
  flex-shrink: 0;
  width: 193px;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}
.p-events-listing__item-dow {
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-medium);
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--dh-color-medium-gray);
  margin-bottom: 4px;
  line-height: 1.5;
}
.p-events-listing__item-monthday {
  font-family: var(--dh-font-body);
  font-style: normal;
  font-weight: var(--dh-fw-extrabold);
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--dh-color-primary-teal);
}
.p-events-listing__item-month {
  color: var(--dh-color-primary-teal);
}
.p-events-listing__item-day {
  color: var(--dh-color-primary-teal);
  margin-left: 0;
}
.p-events-listing__item-time {
  font-family: var(--dh-font-body);
  font-size: 18px;
  line-height: 30px;
  font-weight: var(--dh-fw-black);
  color: var(--dh-color-primary-teal);
  margin-top: 6px;
}
.p-events-listing__item-body {
  flex: 1;
  min-width: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--dh-color-primary-teal);
}
.p-events-listing__item:last-child .p-events-listing__item-body {
  padding-bottom: 0;
  border-bottom: 0;
}
.p-events-listing__item-location {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--dh-color-medium-gray);
  margin: 0 0 var(--dh-space-2);
  line-height: 1;
}
.p-events-listing__item-title {
  font-family: var(--dh-font-body);
  font-size: 24px;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-dark-gray);
  line-height: 1.3;
  margin: 0 0 7px;
}
.p-events-listing__item-title a {
  color: inherit;
  text-decoration: none;
}
.p-events-listing__item-title a:hover, .p-events-listing__item-title a:focus {
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-events-listing__item-readmore {
  display: inline-block;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-events-listing__view-all {
  display: inline-block;
  margin-top: var(--dh-space-8);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-events-listing__aside {
  display: none;
}
.p-events-listing--with-page-menu .p-events-listing__aside {
  display: block;
}

.p-newsletter-listing {
  width: 100%;
  background: var(--dh-color-white);
  -webkit-font-smoothing: antialiased;
  padding: 80px 0 80px;
  /* .p-newsletter-listing__item:last-child {
    border-bottom: 0;
  } */
}
.p-newsletter-listing--surface-light_gray {
  background: #f4f4f4;
}
.p-newsletter-listing--surface-warm_beige {
  background: var(--dh-surface-band-muted);
}
.p-newsletter-listing__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
.p-newsletter-listing__eyebrow {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dh-color-primary-teal);
  margin: 0 0 12px;
}
.p-newsletter-listing__headline {
  font-size: 45px;
  line-height: 1;
  margin: 0 0 24px;
  color: var(--dh-color-medium-gray);
}
.p-newsletter-listing__headline-lead {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
}
.p-newsletter-listing__headline-accent {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-black);
}
.p-newsletter-listing__intro {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-xl);
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-dark-gray);
  line-height: 30px;
  margin-bottom: 30px;
}
.p-newsletter-listing__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-newsletter-listing__item {
  display: flex;
  gap: 50px;
  padding: 36px 0 42px;
  border-bottom: 1px solid var(--dh-color-primary-teal);
}
.p-newsletter-listing__item:first-child {
  padding-top: 0;
}
.p-newsletter-listing__item-covers {
  flex-shrink: 0;
  position: relative;
  width: 247px;
  height: 310px;
}
.p-newsletter-listing__item-covers img {
  position: absolute;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}
.p-newsletter-listing__item-covers img.back {
  top: 0;
  left: 0;
  width: 247px;
  height: 310px;
  transform: rotate(-4deg);
  transform-origin: center;
}
.p-newsletter-listing__item-covers img.front {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-newsletter-listing__item-content {
  flex: 1;
  max-width: 500px;
}
.p-newsletter-listing__item-title {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: var(--dh-fw-medium);
  color: var(--dh-color-medium-gray);
  line-height: 1;
  margin: 0;
}
.p-newsletter-listing__item-title .bold {
  font-style: normal;
  font-weight: var(--dh-fw-bold);
}
.p-newsletter-listing__item-body {
  margin-top: 10px;
  font-size: var(--dh-fs-xl);
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-dark-gray);
  line-height: 30px;
}
.p-newsletter-listing__item-read {
  display: inline-block;
  margin-top: 16px;
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
}
.p-newsletter-listing__view-all {
  display: inline-block;
  margin-top: var(--dh-space-8);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: flex;
  justify-content: center;
}
.p-newsletter-listing__aside {
  display: none;
}
.p-newsletter-listing--with-page-menu .p-newsletter-listing__aside {
  display: block;
}

.p-newsletter-archive {
  width: 100%;
  background: var(--dh-color-white);
  -webkit-font-smoothing: antialiased;
  padding: 80px 0 80px;
}
.p-newsletter-archive--surface-light_gray {
  background: #f4f4f4;
}
.p-newsletter-archive--surface-warm_beige {
  background: var(--dh-surface-band-muted);
}
.p-newsletter-archive__inner {
  width: 100%;
  max-width: var(--dh-max-width);
  margin-inline: auto;
  padding-inline: var(--dh-gutter);
}
.p-newsletter-archive__eyebrow {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dh-color-primary-teal);
  margin: 0 0 8px;
}
.p-newsletter-archive__headline {
  font-size: 45px;
  line-height: 1;
  margin: 0 0 40px;
  color: var(--dh-color-medium-gray);
}
.p-newsletter-archive__headline-lead {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
}
.p-newsletter-archive__headline-accent {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-black);
}
.p-newsletter-archive__body {
  display: grid;
  gap: 60px;
  align-items: start;
  margin-left: 208px;
}
.page-title-news--updates .p-newsletter-archive__body {
  grid-template-columns: unset;
}
.p-newsletter-archive__main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-newsletter-archive__intro {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-xl);
  font-weight: var(--dh-fw-regular);
  line-height: 30px;
  color: var(--dh-color-dark-gray);
  max-width: 685px;
}
.p-newsletter-archive__body-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  margin-top: 30px;
}
.p-newsletter-archive__image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.p-newsletter-archive__years {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-self: start;
}
.p-newsletter-archive__years a {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  display: inline-block;
}

.p-blog-listing {
  width: 100%;
  background: var(--dh-color-white);
  padding: var(--dh-space-8) 0 var(--dh-space-10);
  -webkit-font-smoothing: antialiased;
}
.p-blog-listing--surface-light_gray {
  background: var(--dh-color-light-gray);
}
.p-blog-listing__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--dh-gutter);
}
.p-blog-listing__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-blog-listing__item {
  display: flex;
  gap: var(--dh-space-7);
  padding-top: 26px;
}
.p-blog-listing__item:first-child {
  padding-top: 0;
}
.p-blog-listing__item-media {
  flex-shrink: 0;
  width: 193px;
  display: block;
  align-self: flex-start;
}
.p-blog-listing__item-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--dh-radius-sm);
}
.p-blog-listing__item-body {
  flex: 1;
  min-width: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--dh-color-primary-teal);
}
.p-blog-listing__item:last-child .p-blog-listing__item-body {
  padding-bottom: 0;
  border-bottom: 0;
}
.p-blog-listing__item-date {
  display: block;
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-medium);
  text-transform: uppercase;
  color: var(--dh-color-medium-gray);
  margin-bottom: 4px;
  line-height: 1.5;
}
.p-blog-listing__item-title {
  font-family: var(--dh-font-body);
  font-size: 24px;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-dark-gray);
  line-height: 1.3;
  margin: 0 0 7px;
}
.p-blog-listing__item-title a {
  color: inherit;
  text-decoration: none;
}
.p-blog-listing__item-title a:hover, .p-blog-listing__item-title a:focus {
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-blog-listing__item-summary {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  color: var(--dh-color-dark-gray);
  line-height: 1.5;
  margin: 0 0 var(--dh-space-3);
}
.p-blog-listing__item-readmore {
  display: inline-block;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-color-primary-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 600px) {
  .p-blog-listing__item {
    flex-direction: column;
    gap: var(--dh-space-4);
  }
  .p-blog-listing__item-media {
    width: 100%;
  }
}

.p-listing__header {
  margin-bottom: var(--dh-space-5);
}
.p-listing__eyebrow {
  margin: 0 0 var(--dh-space-2);
}
.p-listing__title {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
  font-size: var(--dh-fs-3xl);
  line-height: 1.05;
  color: var(--dh-color-primary-dark-teal);
  margin: 0;
}
.p-listing__empty {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  color: var(--dh-color-medium-gray);
  padding: var(--dh-space-7) 0;
}
.p-listing .p-listing-tabs {
  display: flex;
  gap: var(--dh-space-2);
  margin-bottom: var(--dh-space-6);
  border-bottom: 1px solid var(--dh-color-light-gray);
}
.p-listing .p-listing-tabs__tab {
  display: inline-block;
  padding: var(--dh-space-3) var(--dh-space-5);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dh-color-medium-gray);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.p-listing .p-listing-tabs__tab:hover, .p-listing .p-listing-tabs__tab:focus {
  color: var(--dh-color-primary-teal);
}
.p-listing .p-listing-tabs__tab.is-active {
  color: var(--dh-color-primary-dark-teal);
  border-bottom-color: var(--dh-color-dark-gold);
}
.p-listing .p-listing-filters {
  margin-bottom: var(--dh-space-7);
}
.p-listing .p-listing-filters .views-exposed-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--dh-space-4);
}
.p-listing .p-listing-filters .form-item,
.p-listing .p-listing-filters .js-form-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--dh-space-1);
}
.p-listing .p-listing-filters label {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-xs);
  font-weight: var(--dh-fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dh-color-medium-gray);
}
.p-listing .p-listing-filters input[type=text],
.p-listing .p-listing-filters input[type=search],
.p-listing .p-listing-filters input[type=number],
.p-listing .p-listing-filters select {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  color: var(--dh-color-dark-gray);
  background: var(--dh-color-white);
  border: 1px solid var(--dh-color-light-gray);
  border-radius: var(--dh-radius-sm);
  padding: var(--dh-space-2) var(--dh-space-3);
  min-height: 42px;
  min-width: 200px;
}
.p-listing .p-listing-filters input[type=text]:focus,
.p-listing .p-listing-filters input[type=search]:focus,
.p-listing .p-listing-filters input[type=number]:focus,
.p-listing .p-listing-filters select:focus {
  outline: 2px solid var(--dh-color-dark-gold);
  outline-offset: 1px;
  border-color: var(--dh-color-primary-teal);
}
.p-listing .p-listing-filters select {
  min-width: 180px;
  cursor: pointer;
}
.p-listing .p-listing-filters .form-actions {
  display: flex;
  gap: var(--dh-space-3);
  align-items: flex-end;
}
.p-listing .p-listing-filters .form-submit,
.p-listing .p-listing-filters input[type=submit] {
  cursor: pointer;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: var(--dh-space-3) var(--dh-space-6);
  min-height: 42px;
  border: 1px solid var(--dh-color-primary-dark-teal);
  border-radius: var(--dh-radius-sm);
  background: var(--dh-color-primary-dark-teal);
  color: var(--dh-color-white);
  transition: background 200ms ease, color 200ms ease;
}
.p-listing .p-listing-filters .form-submit:hover, .p-listing .p-listing-filters .form-submit:focus,
.p-listing .p-listing-filters input[type=submit]:hover,
.p-listing .p-listing-filters input[type=submit]:focus {
  background: var(--dh-color-primary-teal);
  border-color: var(--dh-color-primary-teal);
}
.p-listing .p-listing-filters [data-bef-auto-submit-click],
.p-listing .p-listing-filters .form-actions [id*=reset],
.p-listing .p-listing-filters .form-actions input[value=Reset] {
  background: transparent;
  color: var(--dh-color-primary-teal);
}
.p-listing .p-listing-filters [data-bef-auto-submit-click]:hover, .p-listing .p-listing-filters [data-bef-auto-submit-click]:focus,
.p-listing .p-listing-filters .form-actions [id*=reset]:hover,
.p-listing .p-listing-filters .form-actions [id*=reset]:focus,
.p-listing .p-listing-filters .form-actions input[value=Reset]:hover,
.p-listing .p-listing-filters .form-actions input[value=Reset]:focus {
  background: var(--dh-color-primary-teal);
  color: var(--dh-color-white);
}
.p-listing .pager {
  margin-top: var(--dh-space-8);
}
.p-listing .pager__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--dh-space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-listing .pager__item a, .p-listing .pager__item--current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 var(--dh-space-3);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  text-decoration: none;
  border: 1px solid var(--dh-color-light-gray);
  border-radius: var(--dh-radius-sm);
  color: var(--dh-color-primary-teal);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.p-listing .pager__item a:hover, .p-listing .pager__item a:focus {
  background: var(--dh-color-primary-teal);
  border-color: var(--dh-color-primary-teal);
  color: var(--dh-color-white);
}
.p-listing .pager__item--current {
  background: var(--dh-color-primary-dark-teal);
  border-color: var(--dh-color-primary-dark-teal);
  color: var(--dh-color-white);
}

.p-stay-connected {
  min-height: 483px;
  display: flex;
  align-items: center;
  padding-block: 0;
  -webkit-font-smoothing: antialiased;
}
.p-stay-connected__inner {
  width: 100%;
  padding-inline-start: clamp(var(--dh-gutter), 22vw, 279px);
}
.p-stay-connected__heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 21px;
  color: var(--dh-text-on-dark);
  position: relative;
  flex-wrap: wrap;
}
.p-stay-connected__heading::before {
  content: "";
  width: 52px;
  height: 5px;
  background: var(--dh-color-light-gold);
  position: absolute;
  right: 100%;
  margin-right: 10px;
  top: 0.9em;
}
.p-stay-connected__heading-first {
  font-family: var(--dh-font-display);
  font-size: 45px;
  font-weight: var(--dh-fw-regular);
  font-style: italic;
  line-height: 1;
}
.p-stay-connected__heading-rest {
  font-family: var(--dh-font-body);
  font-size: 45px;
  font-weight: var(--dh-fw-black);
  line-height: 1;
}
.p-stay-connected__body {
  font-family: var(--dh-font-body);
  font-size: 32px;
  font-weight: var(--dh-fw-regular);
  line-height: 1.2;
  max-width: 710px;
  margin-bottom: 40px;
  color: var(--dh-text-on-dark);
}
.p-stay-connected__body > p {
  margin: 0;
}
.p-stay-connected__body > p + p {
  margin-top: 0.6em;
}
.p-stay-connected__label {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--dh-text-on-dark);
}
.p-stay-connected__form {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--dh-color-white);
  width: 100%;
  max-width: 300px;
  padding-bottom: 4px;
}
.p-stay-connected__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-medium);
  color: var(--dh-color-white);
}
.p-stay-connected__input::placeholder {
  color: var(--dh-color-white);
  opacity: 1;
}
.p-stay-connected__submit {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--dh-color-white);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: var(--dh-fw-black);
  padding: 0;
  line-height: 1;
}
.p-stay-connected--gold {
  background: var(--dh-surface-band-gold);
}
.p-stay-connected--dark-teal {
  background: var(--dh-surface-band-dark);
}
.p-stay-connected:has(.p-stay-connected__image) .p-stay-connected__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: var(--dh-space-8);
  max-width: 1080px;
  align-items: center;
}
.p-stay-connected__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--dh-radius-md);
}

.ctct-inline-form {
  display: block;
  width: 100%;
}
.ctct-inline-form iframe {
  display: block;
  width: 100%;
  border: 0;
  overflow: hidden;
}

.p-intro__newsletter .ctct-inline-form {
  width: 100%;
}

.dh-richtext {
  min-width: 0;
  overflow-wrap: break-word;
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-regular);
  line-height: 1.65;
  color: var(--dh-text-default);
}
.dh-richtext .field,
.dh-richtext .field__item {
  display: contents;
}
.dh-richtext > *:first-child,
.dh-richtext .field__item > *:first-child {
  margin-top: 0;
}
.dh-richtext p {
  margin: 0;
}
.dh-richtext p + p,
.dh-richtext p + ul,
.dh-richtext p + ol,
.dh-richtext p + table,
.dh-richtext ul + p,
.dh-richtext ol + p,
.dh-richtext table + p,
.dh-richtext figure + p,
.dh-richtext p + figure {
  margin-top: 38px;
}
.dh-richtext h2,
.dh-richtext h3,
.dh-richtext h4,
.dh-richtext h5,
.dh-richtext h6 {
  color: var(--dh-text-display);
  line-height: 1.2;
  margin: 44px 0 20px;
}
.dh-richtext h2 {
  font-family: var(--dh-font-body);
  font-size: clamp(2rem, 3.6vw, 45px);
  font-weight: 900;
  line-height: 1.22;
}
.dh-richtext h3 {
  font-family: var(--dh-font-body);
  font-size: clamp(1.625rem, 2.6vw, 32px);
  font-weight: 900;
}
.dh-richtext h4 {
  font-family: var(--dh-font-display);
  font-size: clamp(1.5rem, 2.3vw, 30px);
  font-weight: var(--dh-fw-medium);
  line-height: 1.25;
}
.dh-richtext h5,
.dh-richtext h6 {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-md);
  font-weight: 900;
}
.dh-richtext ul,
.dh-richtext ol {
  margin: 0 0 0 1.25em;
  padding: 0;
}
.dh-richtext ul {
  list-style: disc;
}
.dh-richtext ol {
  list-style: decimal;
}
.dh-richtext li + li {
  margin-top: 6px;
}
.dh-richtext a {
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dh-richtext a:hover, .dh-richtext a:focus-visible {
  color: var(--dh-link-hover);
}
.dh-richtext strong,
.dh-richtext b {
  font-weight: 900;
  color: var(--dh-text-display);
}
.dh-richtext em,
.dh-richtext i {
  font-style: italic;
}
.dh-richtext table {
  width: 100%;
  min-width: 640px;
  margin: 38px 0;
  border-collapse: collapse;
  font-size: var(--dh-fs-base);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .dh-richtext table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dh-richtext table > thead,
  .dh-richtext table > tbody,
  .dh-richtext table > tfoot {
    display: table;
    width: max-content;
    min-width: 640px;
  }
}
.dh-richtext th,
.dh-richtext td {
  padding: 14px 18px;
  border-top: 1px solid var(--dh-color-primary-teal);
  border-bottom: 1px solid var(--dh-color-primary-teal);
  text-align: left;
  vertical-align: top;
}
.dh-richtext th {
  color: var(--dh-text-display);
  font-weight: 900;
}
.dh-richtext figure {
  margin: 48px 0;
  max-width: 704px;
}
.dh-richtext figure img,
.dh-richtext > img,
.dh-richtext p > img {
  display: block;
  width: 100%;
  max-width: 704px;
  height: auto;
}
.dh-richtext figcaption,
.dh-richtext .caption {
  margin-top: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-light);
  line-height: 1.4;
  color: #707070;
}

.p-program-intro {
  width: 100%;
  background: var(--dh-color-white);
  padding: var(--dh-space-8) 0 var(--dh-space-9);
  -webkit-font-smoothing: antialiased;
  color: var(--dh-text-default);
  padding-top: 10px;
  padding-bottom: 0;
}
.p-program-intro--light-gray {
  background: var(--dh-color-light-gray);
}
.p-program-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 704px) minmax(0, 1fr);
  column-gap: var(--dh-space-7);
  align-items: start;
  padding-inline: 208px 48px;
}
.p-program-intro__body {
  min-width: 0;
  max-width: 704px;
  font-family: var(--dh-font-body);
  font-size: 24px;
  font-weight: var(--dh-fw-regular);
  line-height: 1.6;
  color: var(--dh-text-default);
}
.p-program-intro__body p {
  margin: 0;
}
.p-program-intro__body p + p {
  margin-top: 1em;
}
.p-program-intro__body a {
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-program-intro__body a:hover, .p-program-intro__body a:focus-visible {
  color: var(--dh-link-hover);
}
.p-program-intro__box {
  min-width: 0;
  width: 202px;
  justify-self: end;
}
.p-program-intro__box-title {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-lg);
  font-weight: var(--dh-fw-bold);
  color: var(--dh-color-dark-gray);
  margin: 0 0 var(--dh-space-6);
}
.p-program-intro__box-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-program-intro__box-item + .p-program-intro__box-item {
  margin-top: var(--dh-space-5);
}
.p-program-intro__box-link {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  line-height: 1.3;
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-program-intro__box-link:hover, .p-program-intro__box-link:focus-visible {
  color: var(--dh-link-hover);
}
@media (max-width: 1100px) {
  .p-program-intro__grid {
    padding-inline: 0;
  }
}
@media (max-width: 900px) {
  .p-program-intro__grid {
    grid-template-columns: 1fr;
    row-gap: var(--dh-space-7);
  }
  .p-program-intro__body {
    max-width: 710px;
  }
  .p-program-intro__box {
    width: auto;
    max-width: 480px;
    justify-self: start;
  }
}
@media (max-width: 768px) {
  .p-program-intro {
    padding: var(--dh-space-2) 0 var(--dh-space-8);
  }
  .p-program-intro__body {
    font-size: var(--dh-fs-md);
  }
}

.p-program-events {
  width: 100%;
  background: var(--dh-color-white);
  padding: var(--dh-space-7) 0 var(--dh-space-9);
  -webkit-font-smoothing: antialiased;
}
.p-program-events--surface-light_gray {
  background: var(--dh-color-light-gray);
}
.p-program-events__headline {
  font-family: var(--dh-font-body);
  font-size: clamp(2rem, 3.4vw, 45px);
  font-weight: var(--dh-fw-black);
  line-height: 1.1;
  color: var(--dh-text-display);
  margin: 0 0 var(--dh-space-6);
}
.p-program-events__items {
  list-style: none;
  margin: 0;
  padding-block: 0;
  padding-inline: 208px 240px;
}
.p-program-events__item {
  display: grid;
  grid-template-columns: 193px minmax(0, 1fr);
  column-gap: 33px;
  align-items: start;
  padding: 26px 0 0;
}
.p-program-events__item:first-child {
  padding-top: 0;
}
.p-program-events__date {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.p-program-events__dow {
  font-family: var(--dh-font-body);
  font-size: 18px;
  font-weight: var(--dh-fw-medium);
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--dh-color-medium-gray);
  margin-bottom: 4px;
}
.p-program-events__monthday {
  font-family: var(--dh-font-body);
  font-weight: var(--dh-fw-black);
  font-size: 26px;
  line-height: 30px;
  color: var(--dh-color-primary-teal);
}
.p-program-events__time {
  font-family: var(--dh-font-body);
  font-size: 18px;
  line-height: 30px;
  font-weight: var(--dh-fw-black);
  color: var(--dh-color-primary-teal);
  margin-top: 6px;
}
.p-program-events__location {
  font-family: var(--dh-font-body);
  font-size: 1.4rem;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-medium-gray);
  margin-top: var(--dh-space-3);
}
.p-program-events__body {
  min-width: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--dh-color-primary-teal);
  display: flex;
  gap: 22px;
}
.p-program-events__image {
  float: none;
  width: 147px;
  max-width: 38%;
  height: 93px;
  object-fit: cover;
  margin: 4px 0 var(--dh-space-4) var(--dh-space-6);
  background: var(--dh-color-light-gray);
  margin-left: 0;
}
.p-program-events__title {
  font-family: var(--dh-font-body);
  font-size: 24px;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-color-dark-gray);
  line-height: 1.3;
  margin: 0 0 8px;
}
.p-program-events__title a {
  color: inherit;
  text-decoration: none;
}
.p-program-events__title a:hover, .p-program-events__title a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--dh-link-hover);
}
.p-program-events__presenter {
  font-family: var(--dh-font-body);
  font-size: 18px;
  color: var(--dh-color-dark-gray);
  margin: 0 0 var(--dh-space-3);
  line-height: 1.4;
  font-weight: var(--dh-fw-semibold);
}
.p-program-events__presenter-label {
  font-weight: var(--dh-fw-bold);
  color: var(--dh-text-display);
}
.p-program-events__summary {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-regular);
  line-height: 1.6;
  color: var(--dh-text-default);
  margin: 0 0 var(--dh-space-4);
}
.p-program-events__register {
  display: inline-block;
  clear: both;
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-program-events__register:hover, .p-program-events__register:focus-visible {
  color: var(--dh-link-hover);
}
.p-program-events__view-all {
  display: inline-block;
  margin-top: var(--dh-space-7);
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-sm);
  font-weight: var(--dh-fw-semibold);
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-program-events__view-all:hover, .p-program-events__view-all:focus-visible {
  color: var(--dh-link-hover);
}
@media (max-width: 1100px) {
  .p-program-events__items {
    padding-inline: 0;
  }
  .p-program-events__item {
    grid-template-columns: 200px minmax(0, 1fr);
    column-gap: var(--dh-space-7);
  }
}
@media (max-width: 768px) {
  .p-program-events {
    padding: var(--dh-space-6) 0 var(--dh-space-8);
  }
  .p-program-events__item {
    grid-template-columns: 1fr;
    row-gap: var(--dh-space-4);
  }
  .p-program-events__date {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--dh-space-3);
  }
  .p-program-events__dow, .p-program-events__time, .p-program-events__location {
    margin: 0;
  }
  .p-program-events__body {
    flex-direction: column;
  }
  .p-program-events__image {
    float: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin: 0 0 var(--dh-space-4);
  }
  .p-program-events__detail {
    width: 100%;
    min-width: 0;
  }
}

.p-resource-accordion {
  width: 100%;
  background: var(--dh-color-white);
  padding: var(--dh-space-8) 0 var(--dh-space-9);
  -webkit-font-smoothing: antialiased;
  color: var(--dh-text-default);
  padding-top: 14px;
}
.p-resource-accordion--light-gray {
  background: var(--dh-color-light-gray);
}
.p-resource-accordion .dh-inner {
  max-width: 880px;
}
.p-resource-accordion__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 var(--dh-space-2);
}
.p-resource-accordion__eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 5px;
  background: var(--dh-color-light-gold);
  flex-shrink: 0;
}
.p-resource-accordion__eyebrow span {
  font-family: var(--dh-font-body);
  font-size: var(--dh-fs-base);
  font-weight: var(--dh-fw-black);
  color: var(--dh-text-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.p-resource-accordion__intro {
  font-family: var(--dh-font-body);
  font-size: 24px;
  font-weight: var(--dh-fw-regular);
  line-height: 1.65;
  color: var(--dh-text-default);
  max-width: 760px;
  margin: 0 0 var(--dh-space-7);
}
.p-resource-accordion__intro p {
  margin: 0;
}
.p-resource-accordion__intro p + p {
  margin-top: 1em;
}
.p-resource-accordion__intro a {
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-resource-accordion__intro a:hover, .p-resource-accordion__intro a:focus-visible {
  color: var(--dh-link-hover);
}
.p-resource-accordion__tagline {
  font-family: var(--dh-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--dh-text-default);
  margin: var(--dh-space-7) 0 0;
}
.p-resource-accordion__tagline p {
  margin: 0;
}
.p-resource-accordion__tagline p + p {
  margin-top: 1em;
}
.p-resource-accordion__tagline a {
  color: var(--dh-link-default);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-resource-accordion__tagline a:hover, .p-resource-accordion__tagline a:focus-visible {
  color: var(--dh-link-hover);
}
@media (max-width: 768px) {
  .p-resource-accordion__intro, .p-resource-accordion__tagline {
    font-size: var(--dh-fs-md);
  }
}

.p-accordion__item {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--dh-color-primary-teal);
  border-radius: 0;
  background: transparent;
}
.p-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--dh-space-5);
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--dh-font-body);
  font-size: clamp(1.625rem, 3vw, 32px);
  font-weight: var(--dh-fw-black);
  line-height: 1.15;
  color: var(--dh-text-display);
  padding-right: 15px;
}
.p-accordion__summary::-webkit-details-marker {
  display: none;
}
.p-accordion__summary::marker {
  content: "";
}
.p-accordion__summary:hover, .p-accordion__summary:focus-visible {
  color: var(--dh-color-primary-teal);
}
.p-accordion__summary-text {
  min-width: 0;
}
.p-accordion .field__item:first-child .p-accordion__summary {
  padding-top: 0;
}
.p-accordion__icon {
  flex-shrink: 0;
  background: url('../images/faq-down-arrow.svg') no-repeat center;
  width: 19px;
  height: 12px;
}
.p-accordion__item[open] .p-accordion__icon {
  background: url('../images/faq-up-arrow.svg') no-repeat center;
  width: 19px;
  height: 12px;
}
.p-accordion__panel {
  overflow: hidden;
}
.p-accordion__body {
  padding: 0 0 var(--dh-space-7);
  max-width: 820px;
}
.p-accordion__body a {
  font-weight: 600;
}

a.dh-btn {
  text-decoration: none;
}
a.dh-btn:hover, a.dh-btn:focus-visible {
  text-decoration: none;
}
a.dh-btn.dh-btn--primary {
  color: var(--dh-color-white);
}
a.dh-btn.dh-btn--primary:hover, a.dh-btn.dh-btn--primary:focus-visible {
  color: var(--dh-color-white);
}
a.dh-btn.dh-btn--gold {
  color: var(--dh-color-white);
}
a.dh-btn.dh-btn--gold:hover, a.dh-btn.dh-btn--gold:focus-visible {
  color: var(--dh-color-white);
}
a.dh-btn.dh-btn--outline {
  color: var(--dh-color-primary-dark-teal);
}
a.dh-btn.dh-btn--outline:hover, a.dh-btn.dh-btn--outline:focus-visible {
  color: var(--dh-color-white);
}
a.dh-btn.dh-btn--outline-on-dark {
  color: var(--dh-color-white);
}
a.dh-btn.dh-btn--outline-on-dark:hover, a.dh-btn.dh-btn--outline-on-dark:focus-visible {
  color: var(--dh-color-primary-dark-teal);
}

.site-header__gt,
.block-gtranslate {
  display: none;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}

body:where(.page-node-type-landing-page) .p-callout__box a.p-callout__link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

@media (min-width: 1025px) {
  .p-card:hover .p-card__title {
    color: var(--dh-color-primary-teal);
  }
  .p-card--style-image_overlay:hover .p-card__chevron {
    color: var(--dh-color-primary-teal);
  }
  .p-blog-feature__view-link:hover {
    color: var(--dh-color-primary-teal);
  }
  .p-event-feature .p-event-card__title:hover {
    color: var(--dh-color-primary-teal);
  }
  .p-event-feature .p-event-card__link:hover {
    color: var(--dh-color-primary-dark-teal);
  }
  .p-card--style-text_only .p-card__link:hover {
    color: var(--dh-color-primary-dark-teal);
  }
  .p-event-feature .p-event-card__title:hover {
    color: var(--dh-color-primary-teal) !important;
  }
}
.p-contact-form__form input[type=submit] {
  text-align: center;
  padding: 0px 29px;
  display: inline-block;
  font-family: var(--dh-font-body);
  font-size: 16px;
  color: var(--dh-color-white);
  background: var(--dh-color-primary-teal);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  -moz-border-radius: 8px;
  cursor: pointer;
  -webkit-border-radius: 8px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6A8FA7',endColorstr='#266B88' , GradientType=0);
  line-height: 19px;
  border-radius: 0;
  margin-top: 30px;
  min-height: 51px;
  font-weight: var(--dh-fw-semibold);
  min-width: 140px;
}

.p-contact-form__form input[type=submit]:hover {
  color: var(--dh-color-white);
  text-decoration: none;
  background: -moz-linear-gradient(50% 100% 90deg,rgba(38, 107, 136, 1) 0%,rgba(106, 143, 167, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(38, 107, 136, 1) 0%, rgba(106, 143, 167, 1) 100%);
  background: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0, rgba(38, 107, 136, 1)), color-stop(1, rgba(106, 143, 167, 1)));
  background: -o-linear-gradient(90deg, rgba(38, 107, 136, 1) 0%, rgba(106, 143, 167, 1) 100%);
  background: -ms-linear-gradient(90deg, rgba(38, 107, 136, 1) 0%, rgba(106, 143, 167, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#266B88', endColorstr='#6A8FA7' ,GradientType=0)";
  background: linear-gradient(0deg, rgba(38, 107, 136, 1) 0%, rgba(106, 143, 167, 1) 100%);
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-node-type-landing-page article.node {
  margin-bottom: 0;
}

@keyframes dhpsny-menu-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dhpsny-menu-slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.p-events-listing__view-all {
  display: flex;
  /* justify-content:center; */
  padding-left: 232px;
}

/* sitemap css */
.page-title-sitemap .navigation h5 {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-weight: var(--dh-fw-regular);
  color: var(--dh-text-display);
  font-size: clamp(2rem, 3.515625vw, 2.8125rem);
  margin: 0 0 53px;
}

.page-title-sitemap .navbar-nav li a {
  padding-left: 20px;
  position: relative;
  font-size: 18px;
  margin-bottom: 22px;
  display: inline-block;
  font-weight: 600;
}

.page-title-sitemap .navbar-nav li a::before {
  content: "";
  position: absolute;
  background: var(--dh-color-primary-dark-teal);
  width: 6px;
  height: 6px;
  border-radius: 25px;
  top: 9px;
  left: 0;
}

.page-title-sitemap .navbar-nav li a:hover {
  color: #000;
}

/* sitemap css */
/* responsive css */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 1279.98px) {
  .p-hero-home {
    height: auto;
    padding: 17px 16px 0 16px;
  }
  .p-hero-home__slides, .p-hero-home__slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1218/402;
  }
  .p-hero-home__arrow {
    top: 50%;
  }
  .p-hero-home__arrow--prev {
    left: 18px;
  }
  .p-hero-home__arrow--next {
    right: 18px;
  }
  .p-hero__image {
    width: calc(100% - 60px);
    margin-inline: 30px;
    height: auto;
    aspect-ratio: 1218/402;
  }
}
@media (max-width: 1199px) {
  .dh-section.site-header {
    padding: 0;
  }
}
@media (max-width: 1100px) {
  .p-callout--inset_box .p-callout__box, .p-callout--split_with_contact .p-callout__box {
    max-width: 100%;
    padding: var(--dh-space-7) var(--dh-space-6);
  }
  .p-callout--split_with_contact .p-callout__box {
    grid-template-columns: 1fr;
    row-gap: var(--dh-space-5);
  }
  .p-callout--split_with_contact .p-callout__divider {
    display: none;
  }
  .p-callout--split_with_contact .p-callout__contact {
    grid-column: 1;
    grid-row: auto;
    padding-top: var(--dh-space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .p-callout--full_width .p-callout__box {
    grid-template-columns: 1fr;
    row-gap: var(--dh-space-5);
  }
  .p-app-callout {
    padding: var(--dh-space-7) var(--dh-gutter);
  }
  .p-app-callout__box {
    grid-template-columns: 1fr;
    padding: var(--dh-space-7) var(--dh-space-6);
    row-gap: var(--dh-space-5);
  }
  .p-app-callout__heading {
    padding-left: 0;
  }
  .p-app-callout__heading::before {
    display: none;
  }
  .p-app-callout__body {
    padding-left: 0;
  }
  .p-services-block {
    padding: var(--dh-space-7) var(--dh-gutter) 0;
  }
  .p-services-block::before {
    width: 100%;
  }
  .p-services-block__item + .p-services-block__item {
    max-width: 100%;
  }
  .staff-bio-entry__card {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
  }
  .staff-bio-entry__photo {
    margin: 0 auto;
  }
  .staff-bio-entry__bio {
    margin-left: 0;
  }
  .p-blog-feature {
    height: auto;
    padding-bottom: var(--dh-space-7);
  }
  .p-blog-feature__header {
    padding: var(--dh-space-7) var(--dh-gutter) 0;
  }
  .p-blog-feature__content {
    flex-direction: column;
    padding: 0 var(--dh-gutter);
  }
  .p-blog-feature__main, .p-blog-feature__main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 601/369;
  }
  .p-blog-feature__sidebar {
    margin-left: 0;
    width: 100%;
    margin-top: var(--dh-space-7);
  }
  .p-event-feature {
    height: auto;
    padding-bottom: var(--dh-space-8);
  }
  .p-event-feature__headline {
    padding: var(--dh-space-7) var(--dh-gutter) 0;
  }
  .p-event-feature--card_grid .p-event-feature__items {
    flex-direction: column;
    padding: 0 var(--dh-gutter);
  }
  .p-staff-listing__header {
    margin-left: 0;
  }
}
@media (max-width: 1023.98px) {
  .site-footer__partners {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px 16px;
    margin-bottom: 32px;
  }
  .site-footer__top, .site-footer__main, .site-footer__copyright {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .site-footer__top {
    flex-direction: column;
    gap: 24px;
    padding: 0 0 32px;
  }
  .site-footer__cta {
    margin-left: 0;
  }
  .site-footer__cta-heading-text {
    font-size: 32px;
  }
  .site-footer__cta-link {
    margin-left: 54px;
    font-size: 24px;
  }
  .site-footer__main {
    flex-direction: column;
    gap: 32px;
    padding: 0 0 32px;
  }
  .site-footer__info {
    margin-left: 0;
  }
  .site-footer__brand {
    margin-bottom: 24px;
  }
  .site-footer__brand-img {
    width: 220px;
  }
  .site-footer__links {
    margin-left: 0;
  }
  .site-footer--compact .site-footer__inner {
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .site-footer--compact .site-footer__partners {
    margin-top: 0;
  }
  .site-footer--compact .site-footer__top {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .p-blog-feature__content {
    flex-wrap: wrap;
    padding-left: 54px;
  }
  .p-blog-feature__sidebar {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
  .p-newsletter-listing__items {
    margin-top: 40px;
  }
}
@media (max-width: 900px) {
  .p-newsletter-archive {
    padding: var(--dh-space-7) 0;
  }
  .p-newsletter-archive__headline {
    font-size: 36px;
    margin-bottom: 28px;
  }
  .p-newsletter-archive__body {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-left: 0;
  }
  .p-search-cta {
    padding-block: var(--dh-space-8);
  }
  .p-search-cta__inner {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 0;
  }
  .p-search-cta__logo img {
    width: auto;
    max-width: 320px;
  }
  .p-card-grid {
    padding-block: var(--dh-space-8);
  }
  .p-card-grid--cols-3 .p-card-grid__items, .p-card-grid--cols-4 .p-card-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-card-grid--style-text_only .p-card-grid__items {
    padding-inline: 0;
  }
  .p-cta-hub {
    padding-block: var(--dh-space-8);
  }
  .p-cta-hub__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-inline: var(--dh-gutter);
  }
  .p-cta-hub__body {
    margin-inline-start: 0;
    max-width: 100%;
  }
  .p-contact-form__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--dh-space-7);
  }
  .site-footer {
    background: var(--dh-color-primary-dark-teal);
    min-height: 0;
  }
  .site-footer__skyline {
    display: none;
  }
  .site-footer__inner {
    text-align: center;
  }
  .site-footer__top {
    align-items: center;
  }
  .site-footer__cta {
    align-items: center;
  }
  .site-footer__cta-heading {
    justify-content: center;
  }
  .site-footer__cta-link {
    margin-left: 0;
  }
  .site-footer__social {
    justify-content: center;
  }
  .site-footer__main {
    align-items: center;
  }
  .site-footer__info {
    align-items: center;
  }
  .site-footer__brand-img {
    margin: 0 auto;
  }
  .site-footer__links {
    text-align: center;
  }
  .site-footer__links-title {
    text-align: center;
  }
  .site-footer__links .menu, .site-footer__links ul {
    align-items: center;
  }
  .site-footer__copyright {
    text-align: center;
  }
  .p-text-block__main {
    padding-inline-start: 0;
  }
  .p-staff-listing--cards .p-staff-listing__entries .views-element-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 769px) {
  .p-text-block--with-page-menu .dh-inner {
    display: flex;
    flex-direction: row-reverse;
    gap: var(--dh-space-8);
  }
  .p-text-block--with-page-menu .p-text-block__main {
    grid-column: 1;
  }
  .p-text-block--with-page-menu .p-text-block__aside {
    grid-column: 2;
  }
  .p-staff-listing--with-page-menu .dh-inner {
    display: flex;
    flex-direction: row-reverse;
    gap: 48px;
    padding-top: 59px;
  }
  .p-staff-listing--with-page-menu .p-staff-listing__main {
    grid-column: 1;
    min-width: 0;
  }
  .p-staff-listing--with-page-menu .p-staff-listing__aside {
    grid-column: 2;
  }
  .p-events-listing--with-page-menu .dh-inner {
    display: flex;
    flex-direction: row-reverse;
    gap: 48px;
  }
  .p-events-listing--with-page-menu .p-events-listing__main {
    grid-column: 1;
    min-width: 0;
  }
  .p-events-listing--with-page-menu .p-events-listing__aside {
    grid-column: 2;
  }
  .p-newsletter-listing--with-page-menu .p-newsletter-listing__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px;
    column-gap: 48px;
    align-items: start;
  }
  .p-newsletter-listing--with-page-menu .p-newsletter-listing__main {
    grid-column: 1;
    min-width: 0;
  }
  .p-newsletter-listing--with-page-menu .p-newsletter-listing__aside {
    grid-column: 2;
  }
}
@media (min-width: 769px) {
  .p-newsletter-listing--with-page-menu .p-newsletter-listing__inner {
    display: flex;
    flex-direction: row-reverse;
    gap: 48px;
  }
  .p-newsletter-listing--with-page-menu .p-newsletter-listing__main {
    grid-column: 1;
    min-width: 0;
  }
  .p-newsletter-listing--with-page-menu .p-newsletter-listing__aside {
    grid-column: 2;
  }
}
@media (min-width: 768px) {
  .tabs-wrapper.tabs-primary > ul.nav.flex-md-row {
    flex-direction: row;
    border-bottom: 1px solid #cbd1d6;
    padding-left: 1rem;
  }
  .tabs-wrapper.tabs-primary > ul.nav.flex-md-row .nav-item {
    width: auto;
    margin: 0 4px -1px 0;
  }
  .tabs-wrapper.tabs-primary > ul.nav.flex-md-row .nav-link {
    border-radius: 4px 4px 0 0;
    border: 1px solid transparent;
    border-bottom: 0;
  }
}
@media (max-width: 768px) {
  .p-newsletter-listing--with-page-menu .p-newsletter-listing__aside {
    margin-bottom: var(--dh-space-5);
  }
  .p-stay-connected {
    min-height: 0;
    padding-block: var(--dh-space-8);
  }
  .p-stay-connected__inner {
    padding-inline: var(--dh-gutter);
    max-width: none;
  }
  .p-stay-connected__heading::before {
    display: none;
  }
  .p-stay-connected__heading-first, .p-stay-connected__heading-rest {
    font-size: var(--dh-fs-3xl);
  }
  .p-stay-connected__body {
    font-size: var(--dh-fs-lg);
    margin-bottom: var(--dh-space-6);
  }
  .p-stay-connected:has(.p-stay-connected__image) .p-stay-connected__inner {
    grid-template-columns: 1fr;
  }
  .p-intro {
    padding-block: var(--dh-space-7);
  }
  .p-intro__top {
    flex-direction: column;
    gap: var(--dh-space-6);
  }
  .p-intro__newsletter {
    flex-basis: auto;
    width: 100%;
    max-width: 320px;
    padding-top: 0;
  }
  .p-intro__welcome {
    margin-top: var(--dh-space-7);
    padding-inline-start: 0;
  }
  .p-intro__body, .p-intro__link {
    margin-inline-start: 0;
  }
  .p-intro__body {
    font-size: var(--dh-fs-md);
  }
  .p-hero-home__arrow svg {
    width: 16px;
    height: auto;
  }
  .p-text-block--with-page-menu .p-text-block__aside {
    margin-bottom: var(--dh-space-5);
  }
  .p-text-block {
    padding-block: var(--dh-space-6) var(--dh-space-4);
  }
  .p-text-block__main {
    padding-inline-start: 0;
  }
  .p-text-block__body {
    font-size: var(--dh-fs-md);
  }
  .p-text-block__body > p + p {
    margin-top: var(--dh-space-6);
  }
  .p-goal-list {
    padding-block: var(--dh-space-8) var(--dh-space-7);
  }
  .p-goal-list__eyebrow, .p-goal-list__headline, .p-goal-list__list, .p-goal-list__cta {
    margin-inline-start: 0;
  }
  .p-goal-list__cta {
    margin-top: var(--dh-space-7);
  }
  .p-goal__title {
    font-size: var(--dh-fs-xl);
  }
  .p-goal__body {
    font-size: var(--dh-fs-md);
  }
  .p-staff-listing--with-page-menu .p-staff-listing__aside {
    margin-bottom: var(--dh-space-5);
    margin-top: 40px;
  }
  .p-cta-hub__inner {
    padding-inline-start: 16px;
  }
  .page-node-type-blog .blog-content p img {
    width: 100% !important;
    height: auto !important;
    margin: 10px 0 !important;
  }
  .p-events-listing--with-page-menu .p-events-listing__aside {
    margin-bottom: var(--dh-space-5);
  }
}
@media (max-width: 767.98px) {
  .site-header__inner {
    min-height: 80px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .site-header__logo {
    margin-top: 4px;
  }
  .site-header__logo-img {
    height: 44px;
  }
  /* .site-header__lang {
    display: none;
  } */
  .site-header__menu {
    margin-top: 6px;
  }
  .form-control {
    margin-bottom: 10px;
  }
  .p-staff-listing--cards {
    padding: var(--dh-space-6) var(--dh-gutter) var(--dh-space-7);
  }
  .p-staff-listing--cards .p-staff-listing__entries {
    grid-template-columns: repeat(auto-fit, minmax(180px, 193px));
  }
  .site-footer {
    background: var(--dh-color-primary-dark-teal);
    min-height: 0;
  }
  .site-footer__skyline {
    display: none;
  }
  .site-footer__inner {
    text-align: center;
  }
  .site-footer__top {
    align-items: center;
  }
  .site-footer__cta {
    align-items: center;
  }
  .site-footer__cta-heading {
    justify-content: center;
  }
  .site-footer__cta-link {
    margin-left: 0;
  }
  .site-footer__social {
    justify-content: center;
  }
  .site-footer__main {
    align-items: center;
  }
  .site-footer__info {
    align-items: center;
  }
  .site-footer__brand-img {
    margin: 0 auto;
  }
  .site-footer__links {
    text-align: center;
  }
  .site-footer__links-title {
    text-align: center;
  }
  .site-footer__links .menu, .site-footer__links ul {
    align-items: center;
  }
  .site-footer__copyright {
    text-align: center;
  }
  .site-header__controls {
    margin-top: -18px;
  }
  .site-header__lang-trigger {
    padding: 6px;
    min-width: 86px;
  }
  .site-header__lang-flag {
    width: 20px;
    height: 15px;
  }
  .site-header__lang-chevron {
    background-size: 10px;
  }
}
@media (max-width: 767px) {
  .dhpsny-menu__panel {
    width: 100%;
    box-shadow: none;
  }
  .dhpsny-menu__backdrop {
    display: none;
  }
  .dhpsny-menu__header {
    padding: 30px 24px 0 24px;
  }
  .dhpsny-menu__search, .dhpsny-menu__nav, .dhpsny-menu__divider, .dhpsny-menu__gold-line, .dhpsny-menu__contact {
    margin-left: 24px;
    margin-right: 24px;
  }
  .dhpsny-menu__nav a {
    font-size: 20px;
  }
  .dhpsny-menu__stay {
    padding: 0 24px;
  }
  .dhpsny-menu__stay-photo {
    width: 110px;
  }
  .dhpsny-menu__stay-panel {
    padding: 18px 20px 22px;
  }
  .dh-section.site-footer {
    padding-bottom: 40px;
  }
  .dhpsny-menu__panel {
    padding-left: 0px;
    padding-right: 0px;
  }
  .dhpsny-menu__stay-heading {
    flex-wrap: wrap;
    gap: 2px;
  }
  .p-hero-home__arrow {
    width: 30px;
    height: 40px;
  }
  .p-hero-home__arrow svg {
    width: 10px;
  }
  .p-blog-feature__headline {
    flex: 1;
  }
  .p-newsletter-archive__body-inner {
    gap: 30px;
  }
  .p-newsletter-archive__image {
    width: 100%;
  }
  .p-newsletter-listing {
    padding: 40px 0;
  }
  .p-newsletter-listing__item-body {
    font-size: var(--dh-fs-base);
    line-height: 22px;
  }
  .p-newsletter-listing__item-title {
    font-size: 18px;
  }
  .p-callout__col--right .p-callout__body p {
    font-size: 16px;
    line-height: 24px;
  }
  .p-callout--full_width {
    padding: 35px 20px;
  }
  .p-callout--full_width .p-callout__headline {
    font-size: 35px;
    line-height: 45px;
  }
  .p-newsletter-listing__item {
    flex-direction: column;
    gap: var(--dh-space-4);
  }
  .p-blog-feature__content {
    padding-left: 0px;
    padding-right: 0px;
  }
  .p-events-listing__view-all {
    padding-left: 0px;
  }
  .dh-section.dh-section--sitemap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 700px) {
  .p-hero__header {
    height: auto;
    min-height: 140px;
  }
  .p-hero__header-inner {
    padding: 60px 20px 30px 20px;
  }
  .p-hero:not(:has(.p-hero__image)) .p-hero__header-inner, .p-hero--bare .p-hero__header-inner {
    padding: 60px 20px 30px 20px;
  }
  .p-hero__title {
    font-size: clamp(2rem, 7vw, 45px);
  }
  .p-hero__image {
    width: calc(100% - 40px);
    margin-inline: 20px;
  }
  .p-hero__footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 0 20px;
  }
  .p-hero__caption {
    text-align: left;
    max-width: 100%;
  }
}
@media (max-width: 720px) {
  .p-events-listing {
    padding: var(--dh-space-6) 0 var(--dh-space-7);
  }
  .p-events-listing__item {
    flex-direction: column;
    gap: var(--dh-space-3);
    padding: var(--dh-space-5) 0;
  }
  .p-events-listing__item-date {
    width: auto;
    flex-direction: row;
    align-items: baseline;
    gap: var(--dh-space-3);
    flex-wrap: wrap;
  }
  .p-listing .p-listing-filters .views-exposed-form {
    flex-direction: column;
    align-items: stretch;
  }
  .p-listing .p-listing-filters input[type=text],
  .p-listing .p-listing-filters input[type=search],
  .p-listing .p-listing-filters input[type=number],
  .p-listing .p-listing-filters select {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .p-card-grid--cols-2 .p-card-grid__items, .p-card-grid--cols-3 .p-card-grid__items, .p-card-grid--cols-4 .p-card-grid__items {
    grid-template-columns: 1fr;
  }
  .p-blog-feature__header {
    padding-left: 0px;
    padding-right: 0px;
  }
  .p-contact-form__intro {
    font-size: var(--dh-fs-md);
  }
  .p-callout--inset_box:not(:has(.p-callout__contact)) .p-callout__headline, .p-callout--inset_box:not(:has(.p-callout__contact)) .p-callout__body {
    font-size: 30px;
  }
  .p-page-menu__item + .p-page-menu__item {
    margin-top: 8px;
  }
  .p-callout.p-callout--inset_box {
    padding-top: 0px;
  }
  .p-app-callout.p-app-callout--surface-gold {
    padding-bottom: 0px;
  }
  .p-event-feature__headline, .p-event-feature--card_grid .p-event-feature__items {
    padding-left: 0px;
    padding-right: 0px;
  }
  .p-event-feature--card_grid .p-event-feature__items {
    margin-top: 30px;
  }
  .p-staff-listing--cards .p-staff-listing__entries .views-element-container {
    grid-template-columns: 1fr;
  }
}
/* media queries */

/*# sourceMappingURL=style.css.map */
