/*
 * Centurate Corporate frontend and editor styles.
 * The structure and responsive behavior follow the canonical Centurate site.
 */

:root {
  --accent: #0879c9;
  --accent-dark: #075d9a;
  --navy: #123b72;
  --navy-deep: #082b55;
  --ink: #333333;
  --muted: #707070;
  --line: #d2d2d2;
  --panel: #f5f5f5;
  --white: #ffffff;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.43;
  margin: 0;
}

body,
button,
input,
select,
textarea {
  font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
  font-size: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #62b8ef;
  outline-offset: 3px;
}

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

.shell {
  margin-inline: auto;
  max-width: var(--shell);
  padding-inline: 15px;
  width: 100%;
}

.section-space {
  padding-block: 76px;
}

.skip-link {
  background: var(--white);
  color: var(--navy-deep);
  left: 14px;
  padding: 9px 14px;
  position: fixed;
  top: -70px;
  z-index: 3000;
}

.skip-link:focus {
  top: 10px;
}

main {
  padding-top: 123px;
}

/* Header */

.site-header {
  background: var(--white);
  border-bottom: 3px solid #a7a7a7;
  border-top: 1px solid #333333;
  height: 123px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: height 180ms ease;
  z-index: 1100;
}

.header-frame {
  height: 119px;
  margin-inline: auto;
  max-width: 1170px;
  position: relative;
}

.brand-link {
  display: block;
  left: 20px;
  position: absolute;
  top: 35px;
  transition: top 180ms ease, width 180ms ease;
  width: 230px;
}

.brand-link img {
  height: auto;
  width: 100%;
}

.utility-controls {
  align-items: stretch;
  display: flex;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 130ms ease;
}

.search-trigger,
.language-select,
.support-link {
  align-items: center;
  border: 0;
  border-left: 1px solid #c9c9c9;
  display: flex;
  height: 40px;
  justify-content: center;
}

.search-trigger {
  background: var(--white);
  color: var(--accent);
  cursor: pointer;
  width: 52px;
}

.language-select {
  border-right: 1px solid #c9c9c9;
  gap: 4px;
  padding: 0 15px;
  position: relative;
  width: 128px;
}

.language-select select {
  appearance: none;
  background: transparent;
  border: 0;
  color: #202020;
  cursor: pointer;
  height: 100%;
  outline: 0;
  padding: 0 17px 0 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.language-select svg {
  color: var(--accent);
  pointer-events: none;
  position: absolute;
  right: 13px;
}

.support-link {
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  gap: 7px;
  min-width: 160px;
  padding-inline: 20px;
}

.support-link:hover,
.button-primary:hover {
  background: var(--accent-dark);
}

.desktop-nav {
  align-items: center;
  bottom: 0;
  display: flex;
  height: 51px;
  position: absolute;
  right: 0;
}

.desktop-nav > a,
.focus-menu > summary {
  align-items: center;
  color: #777777;
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 400;
  gap: 7px;
  height: 51px;
  padding: 0 18px;
  white-space: nowrap;
}

.desktop-nav > a:last-child {
  padding-right: 20px;
}

.desktop-nav > a:hover,
.focus-menu > summary:hover {
  color: var(--accent);
}

.focus-menu {
  height: 51px;
  position: relative;
}

.focus-menu > summary {
  list-style: none;
}

.focus-menu > summary::-webkit-details-marker {
  display: none;
}

.focus-menu > summary svg {
  color: var(--accent);
}

.focus-panel {
  background: var(--white);
  border-top: 4px solid var(--accent);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  display: grid;
  left: 0;
  min-width: 270px;
  padding: 10px 0;
  position: absolute;
  top: 51px;
}

.focus-panel a {
  color: #555555;
  padding: 10px 18px;
}

.focus-panel a:hover {
  background: #f2f2f2;
  color: var(--accent);
}

.search-panel {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 7px 12px rgba(0, 0, 0, 0.15);
  left: 0;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 123px;
  transform: translateY(-10px);
  transition: opacity 150ms ease, transform 150ms ease, top 180ms ease;
}

.search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-panel form {
  align-items: center;
  display: grid;
  gap: 15px;
  grid-template-columns: auto 1fr 48px;
  margin-inline: auto;
  max-width: 1170px;
}

.search-panel label {
  font-size: 19px;
  font-weight: 600;
}

.search-panel input {
  border: 1px solid #aaaaaa;
  height: 46px;
  padding: 0 14px;
}

.search-panel button {
  align-items: center;
  background: var(--accent);
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 46px;
  justify-content: center;
}

.site-header.is-scrolled {
  height: 75px;
}

.site-header.is-scrolled .header-frame {
  height: 71px;
}

.site-header.is-scrolled .utility-controls {
  opacity: 0;
  pointer-events: none;
}

.site-header.is-scrolled .brand-link {
  top: 16px;
  width: 190px;
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-scrolled .desktop-nav > a,
.site-header.is-scrolled .focus-menu,
.site-header.is-scrolled .focus-menu > summary {
  height: 71px;
}

.site-header.is-scrolled .focus-panel {
  top: 71px;
}

.site-header.is-scrolled .search-panel {
  top: 75px;
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

/* Hero */

.hero-carousel {
  background: var(--navy-deep);
  height: 500px;
  overflow: hidden;
  position: relative;
}

.hero-carousel::after {
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  bottom: -31px;
  content: "";
  height: 48px;
  left: -7%;
  pointer-events: none;
  position: absolute;
  width: 114%;
  z-index: 6;
}

.hero-viewport {
  height: 100%;
  overflow: hidden;
}

.hero-track {
  display: flex;
  height: 100%;
  touch-action: pan-y pinch-zoom;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.hero-slide > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-slide:nth-child(2) > img {
  object-position: center 56%;
}

.hero-slide::after {
  background: linear-gradient(90deg, rgba(5, 25, 54, 0.12), transparent 70%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-panel {
  align-items: flex-start;
  background: rgba(16, 53, 105, 0.9);
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: max(15px, calc((100vw - 1170px) / 2));
  padding: 24px 46px 35px 35px;
  position: absolute;
  top: 0;
  width: 514px;
  z-index: 3;
}

.hero-panel h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.28;
  margin: 0 0 22px;
}

.hero-panel p {
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 27px;
}

.button-primary,
.button-light {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 400;
  justify-content: center;
  min-height: 50px;
  padding: 12px 26px;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.hero-panel .button-primary {
  min-width: 190px;
}

.hero-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: absolute;
  right: max(64px, calc((100vw - 1170px) / 2 - 35px));
  top: 47px;
  z-index: 8;
}

.hero-thumbnails > button {
  background: var(--navy-deep);
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  height: 50px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color 150ms ease, transform 150ms ease;
  width: 50px;
}

.hero-thumbnails > button img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-thumbnails > button.active {
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--accent);
  transform: scale(1.08);
}

.hero-thumbnails .hero-pause {
  align-items: center;
  background: rgba(19, 62, 116, 0.76);
  border-color: var(--white);
  color: var(--white);
  display: flex;
  justify-content: center;
}

.share-button {
  align-items: center;
  background: #050505;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  position: fixed;
  right: 0;
  top: 42%;
  width: 50px;
  z-index: 1050;
}

.intro-section {
  padding-bottom: 52px;
  padding-top: 21px;
  text-align: center;
}

.intro-section h1 {
  color: #353535;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.intro-section p {
  font-size: 20px;
  line-height: 1.3;
  margin: 15px auto 0;
  max-width: 980px;
}

/* Solution cards */

.solutions-section {
  padding-bottom: 30px;
}

.solution-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.solution-card {
  background: #f6f6f6;
  border: 1px solid #dddddd;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex: 0 0 calc(33.333% - 20px);
  flex-direction: column;
  min-height: 355px;
  padding: 28px 20px 20px;
}

.solution-card-1,
.solution-card-2 {
  flex-basis: calc(50% - 15px);
  min-height: 315px;
}

.solution-card > svg {
  color: var(--accent);
  margin-bottom: 8px;
}

.solution-card h2 {
  color: #272727;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 28px;
}

.solution-card ul {
  display: grid;
  gap: 8px 27px;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.solution-card-1 ul,
.solution-card-2 ul {
  grid-template-columns: 1fr 1fr;
}

.solution-card li {
  align-items: flex-start;
  color: #666666;
  display: flex;
  font-size: 14px;
  gap: 6px;
}

.solution-card li svg {
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 2px;
}

.solution-card .button-primary {
  align-self: flex-start;
  margin-top: auto;
  min-height: 40px;
  min-width: 210px;
  padding: 9px 20px;
}

.capability-finder {
  background:
    repeating-linear-gradient(135deg, rgba(35, 35, 35, 0.045) 0, rgba(35, 35, 35, 0.045) 1px, transparent 1px, transparent 4px),
    #fafafa;
  border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  padding: 56px 0;
}

.capability-finder .shell {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.capability-finder h2 {
  font-size: 35px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 24px;
}

/* Resources and stories */

.section-heading-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.section-heading-row h2 {
  font-size: 35px;
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
}

.section-heading-row > a {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
  gap: 6px;
}

.section-heading-row > a svg,
.resource-copy a svg,
.story-grid article a svg {
  color: var(--accent);
}

.resource-tabs {
  display: flex;
  gap: 28px;
  margin: 36px 0 37px;
}

.resource-tabs button {
  background: none;
  border: 0;
  color: #666666;
  cursor: pointer;
  font-size: 17px;
  padding: 0 5px 12px;
}

.resource-tabs button.active {
  border-bottom: 3px solid var(--accent);
  color: #222222;
}

.resource-carousel-wrap {
  position: relative;
}

.resource-viewport {
  overflow: hidden;
}

.resource-track {
  display: flex;
  margin-left: -15px;
  touch-action: pan-y pinch-zoom;
}

.resource-card {
  display: flex;
  flex: 0 0 25%;
  min-width: 0;
  padding-left: 15px;
}

.resource-card > .resource-copy,
.resource-card {
  flex-direction: column;
}

.resource-card {
  border: 0;
}

.resource-image {
  height: 164px;
  position: relative;
}

.resource-image img,
.story-image img,
.partner-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.resource-copy {
  border: 1px solid #cccccc;
  border-top: 0;
  display: flex;
  flex: 1;
  min-height: 302px;
  padding: 29px 20px 25px;
}

.resource-type {
  color: #777777;
  font-size: 15px;
  margin: 0 0 21px;
}

.resource-copy h3 {
  color: #3b3b3b;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.28;
  margin: 0 0 14px;
}

.resource-description,
.resource-date {
  color: #8a8a8a;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 12px;
}

.resource-copy a,
.story-grid article a {
  align-items: center;
  display: inline-flex;
  gap: 4px;
  margin-top: auto;
}

.resource-next {
  align-items: center;
  background: #151515;
  border: 0;
  color: #8d8d8d;
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 220px;
  width: 50px;
  z-index: 4;
}

.stories-section {
  background: var(--white);
  padding-top: 68px;
}

.story-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.story-grid article {
  border: 1px solid #cccccc;
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.story-image {
  height: 190px;
  position: relative;
}

.story-grid article > div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.story-grid article p {
  color: #777777;
  font-size: 15px;
  margin: 0 0 14px;
}

.story-grid article h3 {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 12px;
}

.story-grid article span {
  color: #818181;
  line-height: 1.4;
}

.approach-section {
  background: #f4f4f4;
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.approach-section .shell {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.approach-section h2 {
  font-size: 35px;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 auto 28px;
  max-width: 1050px;
}

.approach-art {
  color: rgba(8, 121, 201, 0.1);
  inset: 0;
  position: absolute;
}

.approach-art svg:first-child {
  left: 7%;
  position: absolute;
  top: 55px;
}

.approach-art svg:last-child {
  bottom: 25px;
  position: absolute;
  right: 10%;
}

.partner-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
}

.partner-copy {
  align-items: flex-start;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px max(60px, calc((100vw - 1170px) / 2));
}

.partner-copy h2 {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 20px;
}

.partner-copy p {
  color: #666666;
  font-size: 17px;
  margin: 0 0 28px;
  max-width: 520px;
}

.partner-image {
  min-height: 430px;
  position: relative;
}

.mobile-hero-arrows {
  display: none;
}

/* Footer */

.site-footer {
  background: #121212;
  color: var(--white);
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(6, 1fr);
  padding-bottom: 46px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 18px;
}

.site-footer a,
.site-footer button,
.site-footer p {
  color: #bcbcbc;
}

.site-footer a,
.site-footer button {
  background: none;
  border: 0;
  cursor: pointer;
  display: block;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 10px;
  padding: 0;
  text-align: left;
}

.site-footer a:hover,
.site-footer button:hover {
  color: #6db9ea;
}

.footer-contact p {
  font-size: 13px;
  margin: 0 0 4px;
}

.footer-identity {
  align-items: center;
  border-top: 1px solid #353535;
  display: flex;
  gap: 28px;
  min-height: 100px;
}

.footer-identity img {
  filter: brightness(0) invert(1);
  height: auto;
  width: 205px;
}

.footer-identity p {
  font-size: 13px;
  margin: 0;
  max-width: 520px;
}

.footer-bottom {
  border-top: 1px solid #353535;
}

.footer-bottom .shell {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 58px;
}

.footer-bottom p {
  font-size: 12px;
  margin: 0;
}

/* Cookie controls */

.cookie-banner {
  align-items: center;
  background: #f4f4f4;
  border: 1px solid #333333;
  bottom: 0;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.18);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  left: 0;
  padding: 17px 22px;
  position: fixed;
  right: 0;
  z-index: 2000;
}

.cookie-banner h2 {
  font-size: 17px;
  margin: 0 0 4px;
}

.cookie-banner p {
  font-size: 13px;
  margin: 0;
  max-width: 930px;
}

.cookie-banner a {
  color: var(--accent);
  font-size: 13px;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-actions button {
  min-height: 42px;
}

.cookie-actions > button:first-child {
  background: var(--white);
  border: 1px solid #555555;
  cursor: pointer;
  padding: 9px 15px;
}

/* Interior pages */

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.interior-hero {
  background: var(--navy-deep);
  color: var(--white);
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.interior-hero .shell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  position: relative;
  z-index: 2;
}

.interior-hero h1,
.legal-hero h1 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.08;
  margin: 0;
  max-width: 900px;
}

.interior-hero .shell > p:last-child {
  font-size: 18px;
  margin: 24px 0 0;
  max-width: 760px;
}

.interior-hero-art {
  height: 520px;
  position: absolute;
  right: -60px;
  top: -70px;
  width: 520px;
}

.interior-hero-art span {
  border: 1px solid rgba(109, 185, 234, 0.24);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.interior-hero-art span:nth-child(2) {
  inset: 60px;
}

.interior-hero-art span:nth-child(3) {
  background: rgba(8, 121, 201, 0.18);
  inset: 145px;
}

.interior-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 60px;
  grid-template-columns: 1.1fr 1fr;
  margin-bottom: 46px;
  padding-bottom: 34px;
}

.interior-heading h2,
.about-statement h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
}

.interior-heading p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.detail-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
  border: 1px solid var(--line);
  min-height: 385px;
  padding: 29px;
}

.detail-card > span,
.service-number,
.principles-section article > span {
  color: var(--accent);
  font-weight: 700;
}

.detail-card h2 {
  font-size: 25px;
  line-height: 1.2;
  margin: 38px 0 14px;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
}

.detail-card ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 24px 0 0;
  padding: 17px 0 0;
}

.detail-card li {
  margin: 7px 0;
  padding-left: 17px;
  position: relative;
}

.detail-card li::before {
  color: var(--accent);
  content: ">";
  left: 0;
  position: absolute;
}

.interior-cta {
  background: var(--navy);
  color: var(--white);
  padding: 68px 0;
  text-align: center;
}

.interior-cta p {
  margin: 0 0 10px;
}

.interior-cta h2 {
  font-size: 40px;
  font-weight: 300;
  margin: 0 auto 25px;
}

.interior-cta .shell {
  margin-inline: auto;
}

.interior-cta .wp-block-buttons {
  justify-content: center;
}

.button-light {
  background: var(--white);
  color: var(--navy-deep);
}

.service-detail-list {
  display: grid;
}

.service-detail {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 38px;
  grid-template-columns: 80px 1.3fr 1fr;
  padding: 48px 0;
  scroll-margin-top: 100px;
}

.service-number {
  font-size: 28px;
}

.service-detail h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 14px;
}

.service-detail p,
.service-detail li {
  color: var(--muted);
}

.service-detail p,
.service-detail ul {
  margin: 0;
}

.service-detail ul {
  list-style: none;
  padding: 0;
}

.service-detail li {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.compliance-band {
  background: #f2f2f2;
  padding: 46px 0;
}

.compliance-band .shell > p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compliance-band .shell > div {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.compliance-band .standards-list > p {
  background: var(--white);
  border: 1px solid var(--line);
  margin: 0;
  padding: 10px 15px;
}

.resource-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-grid article {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: 0 24px 26px;
}

.resource-grid .resource-art {
  background: var(--navy);
  height: 175px;
  margin: 0 -24px 25px;
}

.resource-grid .resource-art span {
  color: var(--white);
  display: block;
  font-size: 38px;
  padding: 105px 24px 0;
}

.resource-grid article > p {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.resource-grid h2 {
  font-size: 23px;
  line-height: 1.25;
  margin: 12px 0;
}

.resource-grid article > span {
  color: var(--muted);
}

.resource-grid a {
  color: var(--accent);
  margin-top: auto;
  padding-top: 20px;
}

.about-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.05fr 1fr;
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 23px;
}

.principles-section {
  background: #f2f2f2;
  padding: 60px 0;
}

.principles-section .shell {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.principles-section article {
  background: var(--white);
  border-top: 4px solid var(--accent);
  min-height: 230px;
  padding: 28px;
}

.principles-section h2 {
  font-size: 28px;
  margin: 32px 0 10px;
}

.principles-section p {
  color: var(--muted);
  margin: 0;
}

.contact-layout {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.7fr 1.3fr;
}

.contact-layout aside h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 22px;
}

.contact-layout aside p {
  color: var(--muted);
  margin: 0 0 4px;
}

.contact-layout aside a {
  color: var(--accent);
  display: block;
  margin: 9px 0;
}

.contact-hours {
  border-top: 1px solid var(--line);
  margin-top: 28px !important;
  padding-top: 22px;
}

.contact-form {
  background: #f5f5f5;
  border: 1px solid var(--line);
  padding: 34px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 20px;
}

.field-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 1px solid #aaaaaa;
  border-radius: 0;
  display: block;
  margin-top: 7px;
  padding: 11px 12px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.form-footer {
  align-items: center;
  display: flex;
  gap: 18px;
}

.form-footer p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.form-status {
  color: var(--accent-dark);
  margin-bottom: 0;
}

.legal-hero {
  background: #f2f2f2;
  padding: 70px 0;
}

.legal-hero h1 {
  color: var(--ink);
}

.legal-hero .eyebrow {
  margin-bottom: 11px;
}

.legal-hero .shell > p:last-child {
  color: var(--muted);
  margin: 18px 0 0;
}

.legal-content {
  max-width: 900px;
  padding-bottom: 80px;
  padding-top: 65px;
}

.legal-content h2 {
  font-size: 27px;
  margin: 36px 0 11px;
}

.legal-content p,
.legal-content li {
  color: #555555;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 1100px) {
  .header-frame {
    padding-inline: 15px;
  }

  nav.desktop-nav {
    right: 15px;
  }

  .desktop-nav > a,
  .focus-menu > summary {
    font-size: 15px;
    padding-inline: 12px;
  }

  .brand-link {
    left: 15px;
    width: 205px;
  }

  .hero-panel {
    left: 30px;
  }

  .hero-thumbnails {
    right: 44px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {
  main {
    padding-top: 76px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 76px;
  }

  .header-frame,
  .site-header.is-scrolled .header-frame {
    height: 72px;
  }

  .brand-link,
  .site-header.is-scrolled .brand-link {
    left: 15px;
    top: 19px;
    width: 190px;
  }

  .utility-controls,
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    align-items: center;
    background: var(--white);
    border: 0;
    color: var(--accent);
    cursor: pointer;
    display: flex;
    height: 72px;
    justify-content: center;
    position: absolute;
    right: 9px;
    top: 0;
    width: 58px;
  }

  .mobile-nav {
    background: var(--white);
    border-bottom: 4px solid var(--accent);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.18);
    display: block;
    left: 0;
    max-height: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 76px;
    transition: max-height 250ms ease;
  }

  .mobile-nav.is-open {
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .mobile-nav nav {
    display: grid;
  }

  .mobile-nav nav a {
    border-bottom: 1px solid #dddddd;
    color: #4a4a4a;
    font-size: 18px;
    padding: 15px 21px;
  }

  .mobile-language-select {
    align-items: center;
    display: flex;
    gap: 20px;
    padding: 18px 21px 24px;
  }

  .mobile-language-select select {
    background: var(--white);
    border: 1px solid #aaaaaa;
    padding: 8px;
  }

  .search-panel,
  .site-header.is-scrolled .search-panel {
    top: 76px;
  }

  .hero-carousel {
    height: 540px;
  }

  .hero-panel {
    bottom: 0;
    height: auto;
    left: 0;
    padding: 30px 70px 46px 25px;
    top: auto;
    width: 100%;
  }

  .hero-panel h2 {
    font-size: 31px;
    line-height: 1.18;
    margin-bottom: 15px;
  }

  .hero-panel p {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .hero-thumbnails {
    gap: 10px;
    right: 17px;
    top: 20px;
  }

  .hero-thumbnails > button {
    height: 42px;
    width: 42px;
  }

  .share-button {
    top: 46%;
  }

  .solution-card,
  .solution-card-1,
  .solution-card-2 {
    flex-basis: calc(50% - 15px);
  }

  .solution-card-1 ul,
  .solution-card-2 ul {
    grid-template-columns: 1fr;
  }

  .resource-card {
    flex-basis: 50%;
  }

  .story-grid,
  .detail-grid,
  .resource-grid,
  .principles-section .shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-copy {
    padding-inline: 45px;
  }

  .interior-heading,
  .about-layout,
  .contact-layout {
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .section-space {
    padding-block: 52px;
  }

  .share-button {
    height: 46px;
    width: 46px;
  }

  .hero-carousel {
    height: 590px;
  }

  .hero-slide > img {
    object-position: center top;
  }

  .hero-panel {
    padding: 27px 58px 42px 20px;
  }

  .hero-panel h2 {
    font-size: 27px;
  }

  .hero-panel p {
    font-size: 16px;
  }

  .hero-thumbnails {
    flex-direction: row;
    left: 18px;
    right: auto;
    top: 18px;
  }

  .hero-thumbnails > button {
    height: 40px;
    width: 40px;
  }

  .intro-section {
    padding-bottom: 37px;
    padding-top: 15px;
  }

  .intro-section h1,
  .section-heading-row h2,
  .capability-finder h2,
  .approach-section h2,
  .partner-copy h2 {
    font-size: 30px;
  }

  .intro-section p {
    font-size: 18px;
  }

  .solution-grid {
    gap: 15px;
  }

  .solution-card,
  .solution-card-1,
  .solution-card-2 {
    flex-basis: 100%;
    min-height: 0;
  }

  .solution-card h2 {
    margin-bottom: 20px;
  }

  .capability-finder {
    padding: 45px 0;
    text-align: center;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .resource-tabs {
    gap: 14px;
    margin: 28px 0;
    overflow-x: auto;
  }

  .resource-tabs button {
    flex: 0 0 auto;
  }

  .resource-card {
    flex-basis: 86%;
  }

  .resource-next {
    top: 210px;
  }

  .story-grid,
  .detail-grid,
  .resource-grid,
  .principles-section .shell,
  .interior-heading,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .partner-section {
    grid-template-columns: 1fr;
  }

  .partner-copy {
    min-height: 380px;
    padding: 46px 22px;
  }

  .partner-image {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-identity,
  .footer-bottom .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding-block: 20px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .interior-hero,
  .interior-hero .shell {
    min-height: 350px;
  }

  .interior-hero h1,
  .legal-hero h1 {
    font-size: 40px;
  }

  .interior-hero-art {
    opacity: 0.4;
  }

  .interior-heading {
    gap: 18px;
  }

  .service-detail {
    gap: 18px;
    grid-template-columns: 50px 1fr;
  }

  .service-detail ul {
    grid-column: 2;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-panel form {
    gap: 8px;
    grid-template-columns: 1fr 46px;
  }

  .search-panel label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .brand-link,
  .site-header.is-scrolled .brand-link {
    width: 168px;
  }

  .hero-carousel {
    height: 610px;
  }

  .hero-thumbnails {
    gap: 7px;
    left: 10px;
  }

  .hero-thumbnails > button {
    height: 37px;
    width: 37px;
  }

  .hero-panel .button-primary {
    min-width: 0;
  }

  .resource-card {
    flex-basis: 92%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 23px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress block theme integration */

@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/source-sans-pro-latin-300-normal.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/source-sans-pro-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/source-sans-pro-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/source-sans-pro-latin-700-normal.woff2") format("woff2");
}

:where(.wp-site-blocks) > *,
:where(.wp-block-post-content) > * {
  margin-block-start: 0;
}

.wp-site-blocks,
.wp-block-post-content {
  padding: 0;
}

.wp-block-template-part {
  margin: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header .wp-block-site-logo {
  margin: 0;
}

.utility-controls {
  gap: 0;
}

.utility-controls > .wp-block-shortcode,
.utility-controls > .wp-block-buttons,
.utility-controls .wp-block-button {
  height: 40px;
  margin: 0;
}

.utility-controls .support-link {
  background: transparent;
  min-width: 160px;
  padding: 0;
}

.utility-controls .support-link .wp-block-button__link {
  align-items: center;
  background: var(--accent);
  border-radius: 0;
  color: var(--white);
  display: flex;
  font-size: 16px;
  gap: 7px;
  height: 40px;
  justify-content: center;
  min-width: 160px;
  padding: 0 20px;
}

.utility-controls .support-link .wp-block-button__link:hover {
  background: var(--accent-dark);
}

.desktop-nav {
  gap: 0;
  margin: 0;
  width: auto;
}

nav.desktop-nav .wp-block-navigation__container.desktop-nav {
  bottom: auto;
  height: 51px;
  position: static;
  right: auto;
  width: auto;
}

.desktop-nav .wp-block-navigation__container {
  align-items: center;
  gap: 0;
}

.desktop-nav .wp-block-navigation-item {
  height: 51px;
}

.desktop-nav .wp-block-navigation-item__content,
.desktop-nav .wp-block-navigation-submenu__toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: #777777;
  display: flex;
  font-size: 17px;
  font-weight: 400;
  height: 51px;
  padding: 0 18px;
  white-space: nowrap;
}

.desktop-nav .wp-block-navigation-item__content:hover,
.desktop-nav .wp-block-navigation-submenu__toggle:hover {
  color: var(--accent);
}

.site-header.is-scrolled nav.desktop-nav .wp-block-navigation__container.desktop-nav,
.site-header.is-scrolled nav.desktop-nav .wp-block-navigation__container.desktop-nav > .wp-block-navigation-item,
.site-header.is-scrolled nav.desktop-nav .wp-block-navigation__container.desktop-nav > .wp-block-navigation-item > .wp-block-navigation-item__content,
.site-header.is-scrolled nav.desktop-nav .wp-block-navigation__container.desktop-nav > .wp-block-navigation-item > .wp-block-navigation-submenu__toggle {
  height: 71px;
}

.desktop-nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container {
  background: var(--white);
  border: 1px solid #d7d7d7;
  box-shadow: 0 9px 24px rgb(0 0 0 / 16%);
  min-width: 255px;
  padding: 8px 0;
}

.desktop-nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item,
.desktop-nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  height: auto;
  width: 100%;
}

.desktop-nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  color: #4f4f4f;
  padding: 11px 18px;
}

.desktop-nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
  background: #f2f2f2;
  color: var(--navy);
}

.desktop-nav .wp-block-navigation__responsive-container-open {
  color: var(--navy);
  height: 48px;
  justify-content: center;
  width: 48px;
}

.mobile-only-nav-link {
  display: none !important;
}

.header-search-panel {
  background: var(--white);
  border-bottom: 1px solid #d4d4d4;
  box-shadow: 0 8px 18px rgb(0 0 0 / 12%);
  left: 0;
  padding: 18px 24px;
  position: absolute;
  right: 0;
  top: 120px;
  z-index: 10;
}

.header-search-panel[hidden] {
  display: none;
}

.header-search-panel .wp-block-search {
  align-items: center;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 48px;
  margin: 0 auto;
  max-width: 850px;
}

.header-search-panel .wp-block-search__label {
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 600;
  padding-right: 15px;
  width: auto;
}

.header-search-panel .wp-block-search__input {
  border: 1px solid #bfbfbf;
  border-radius: 0;
  height: 44px;
}

.header-search-panel .wp-block-search__button {
  align-items: center;
  background: var(--accent);
  border: 0;
  border-radius: 0;
  display: flex;
  height: 44px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 48px;
}

.site-header.is-scrolled .header-search-panel {
  top: 68px;
}

.wp-block-button.button-primary,
.wp-block-button.button-light {
  padding: 0;
}

.wp-block-button.button-primary .wp-block-button__link,
.wp-block-button.button-light .wp-block-button__link {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  min-height: 46px;
  padding: 11px 28px;
}

.wp-block-button.button-primary .wp-block-button__link {
  background: var(--accent);
  color: var(--white);
}

.wp-block-button.button-primary .wp-block-button__link:hover {
  background: var(--accent-dark);
}

.wp-block-button.button-light .wp-block-button__link {
  background: var(--white);
  color: var(--navy-deep);
}

.wp-block-button.button-light .wp-block-button__link:hover {
  background: #e8eef6;
  color: var(--navy-deep);
}

.hero-carousel {
  margin: 0;
}

.hero-track {
  align-items: stretch;
}

.hero-slide.wp-block-cover {
  flex: 0 0 100%;
  margin: 0;
  max-width: none;
  min-width: 0;
  width: 100%;
}

.hero-slide .wp-block-cover__inner-container {
  height: 100%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-slide .hero-panel {
  bottom: 0;
  left: 15px;
  margin: 0;
  min-height: 100%;
  padding: 90px 60px 90px 55px;
  position: absolute;
  top: 0;
}

.hero-panel .wp-block-buttons {
  margin: 0;
}

.hero-panel .wp-block-button__link {
  min-width: 190px;
}

.hero-thumbnails .hero-pause svg {
  height: 21px;
  width: 21px;
}

.hero-thumbnail-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-status {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
}

.share-button svg {
  height: 25px;
  width: 25px;
}

.solution-card > .solution-icon,
.solution-card > svg {
  color: var(--accent);
  height: 52px;
  width: 52px;
}

.solution-card .wp-block-list {
  margin: 0 0 24px;
}

.solution-card .wp-block-list li {
  padding-left: 23px;
  position: relative;
}

.solution-card .wp-block-list li::before {
  color: var(--accent);
  content: ">>";
  font-size: 13px;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 2px;
}

.capability-finder .wp-block-buttons,
.approach-section .wp-block-buttons,
.partner-section .wp-block-buttons,
.interior-cta .wp-block-buttons {
  margin: 0;
}

.privacy-choices-nav-link .wp-block-navigation-item__content {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.privacy-choices-nav-link .wp-block-navigation-item__label {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.privacy-choices-nav-link .wp-block-navigation-item__label::before {
  background: url("../images/privacyoptions.svg") center / 30px 14px no-repeat;
  content: "";
  flex: 0 0 30px;
  height: 14px;
  width: 30px;
}

.resource-carousel-wrap .wp-block-query,
.resource-carousel-wrap .wp-block-post-template {
  margin: 0;
}

.resource-track.wp-block-post-template {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
}

.resource-track > .wp-block-post {
  flex: 0 0 calc(25% - 15px);
  margin-right: 20px;
  max-width: none;
}

.resource-track > .wp-block-post .resource-card {
  height: 100%;
}

.resource-card .wp-block-post-featured-image {
  margin: 0;
}

.resource-card .wp-block-post-featured-image img {
  height: 170px;
  object-fit: cover;
  width: 100%;
}

.resource-card .wp-block-post-terms,
.resource-card .wp-block-post-title,
.resource-card .wp-block-post-excerpt,
.resource-card .wp-block-post-date {
  margin-left: 20px;
  margin-right: 20px;
}

.resource-card .wp-block-post-terms {
  color: #777777;
  margin-top: 24px;
}

.resource-card .wp-block-post-title {
  font-size: 21px;
  line-height: 1.23;
  margin-top: 23px;
}

.resource-card .wp-block-post-title a {
  color: var(--ink);
}

.resource-card .wp-block-post-excerpt {
  color: var(--muted);
  font-size: 15px;
  margin-top: 16px;
}

.resource-card .wp-block-post-excerpt__more-link {
  color: var(--ink);
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
}

.resource-card .wp-block-post-date {
  color: #8a8a8a;
  font-size: 14px;
  margin-bottom: 22px;
}

.story-grid.wp-block-post-template {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.story-grid .wp-block-post {
  border: 1px solid var(--line);
  margin: 0;
}

.story-grid .wp-block-post-featured-image {
  margin: 0;
}

.story-grid .wp-block-post-featured-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.story-grid .wp-block-post-terms,
.story-grid .wp-block-post-title,
.story-grid .wp-block-post-excerpt {
  margin-left: 22px;
  margin-right: 22px;
}

.story-grid .wp-block-post-terms {
  color: #777777;
  font-size: 14px;
  margin-top: 22px;
}

.story-grid .wp-block-post-title {
  font-size: 22px;
  margin-top: 12px;
}

.story-grid .wp-block-post-title a {
  color: var(--ink);
}

.story-grid .wp-block-post-excerpt {
  color: var(--muted);
  margin-bottom: 24px;
  margin-top: 12px;
}

.partner-section {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}

.partner-section .partner-copy,
.partner-section .partner-image {
  margin: 0;
  min-height: 400px;
}

.partner-section .partner-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.interior-hero {
  margin: 0;
}

.interior-hero .wp-block-group {
  position: relative;
  z-index: 2;
}

.detail-grid {
  align-items: stretch;
}

.detail-card .wp-block-list {
  list-style: none;
  padding: 0;
}

.service-detail .wp-block-list {
  margin: 0;
}

.contact-layout .fluentform {
  background: #f8f8f8;
  border: 1px solid var(--line);
  padding: 34px;
}

.contact-layout .fluentform .ff-el-group {
  margin-bottom: 20px;
}

.contact-layout .fluentform label {
  color: var(--navy-deep);
  font-weight: 600;
}

.contact-layout .fluentform input,
.contact-layout .fluentform select,
.contact-layout .fluentform textarea {
  background: var(--white);
  border: 1px solid #bdbdbd;
  border-radius: 0;
  color: var(--ink);
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.contact-layout .fluentform textarea {
  min-height: 165px;
  resize: vertical;
}

.contact-layout .fluentform .ff-btn-submit {
  background: var(--accent);
  border: 0;
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  min-height: 46px;
  padding: 11px 28px;
}

.contact-layout .fluentform .ff-btn-submit:hover {
  background: var(--accent-dark);
}

.contact-layout .fluentform .error {
  color: #9b1c1c;
}

.blog-hero {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy));
  color: var(--white);
  margin: 0;
  padding: 92px 15px 80px;
}

.blog-hero h1 {
  font-size: clamp(38px, 4.4vw, 58px);
  margin: 0 0 16px;
}

.blog-hero p {
  font-size: 20px;
  margin: 0;
  max-width: 720px;
}

.blog-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-card-grid > .wp-block-post {
  margin: 0;
}

.blog-card-grid > .wp-block-post .blog-card {
  height: 100%;
}

.blog-card {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
}

.blog-card > *:not(.wp-block-post-featured-image) {
  margin-left: 24px;
  margin-right: 24px;
}

.blog-card .wp-block-post-featured-image {
  margin: 0;
}

.blog-card .wp-block-post-featured-image img {
  height: 210px;
  object-fit: cover;
  width: 100%;
}

.blog-card .wp-block-post-terms {
  color: #777777;
  margin-top: 24px;
}

.blog-card .wp-block-post-title {
  font-size: 25px;
  margin-top: 20px;
}

.blog-card .wp-block-post-title a {
  color: var(--ink);
}

.blog-card .wp-block-post-excerpt {
  color: var(--muted);
  margin-top: 14px;
}

.blog-card .wp-block-post-date {
  color: #858585;
  margin-bottom: 24px;
  margin-top: auto;
  padding-top: 18px;
}

.archive-shell,
.search-results-shell,
.not-found-shell,
.single-post-shell {
  min-height: 55vh;
  padding-bottom: 85px;
  padding-top: 190px;
}

.single-post-shell {
  padding-left: 20px;
  padding-right: 20px;
}

.single-post-shell > .wp-block-post-title {
  color: var(--navy-deep);
  font-size: clamp(38px, 5vw, 58px);
  margin: 14px 0 18px;
}

.single-post-shell > .wp-block-post-featured-image {
  margin: 36px 0;
}

.single-post-shell > .wp-block-post-content {
  font-size: 18px;
  line-height: 1.65;
}

.single-post-category {
  color: var(--accent);
  font-weight: 600;
}

.single-post-cta {
  background: var(--navy-deep);
  color: var(--white);
  margin-top: 65px;
  padding: 40px;
}

.single-post-cta h2,
.single-post-cta p {
  margin: 0 0 16px;
}

.editor-styles-wrapper .site-header {
  position: static;
}

.editor-styles-wrapper main {
  padding-top: 0;
}

.editor-styles-wrapper .hero-carousel,
.editor-styles-wrapper .resource-viewport {
  overflow: visible;
}

.editor-styles-wrapper .hero-track {
  display: block;
}

.editor-styles-wrapper .hero-slide.wp-block-cover {
  min-height: 420px;
}

@media (max-width: 1100px) {
  .resource-card.wp-block-post {
    flex-basis: calc(33.333% - 14px);
  }

  .footer-grid.wp-block-columns {
    display: grid;
  }
}

@media (max-width: 920px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .header-frame {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
  }

  .header-frame .brand-link {
    align-items: center;
    display: flex;
    flex: 0 0 190px;
    height: 44px;
    left: auto;
    overflow: visible;
    position: relative;
    top: auto;
    width: 190px;
  }

  .header-frame .brand-link a {
    align-items: center;
    display: flex;
    height: 100%;
    overflow: visible;
    width: 100%;
  }

  .header-frame .brand-link img {
    display: block;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
    overflow: visible;
    width: 100%;
  }

  .utility-controls {
    display: none;
  }

  .desktop-nav {
    bottom: auto;
    height: auto;
    margin-left: auto;
    position: relative;
    right: auto;
  }

  .desktop-nav .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none;
  }

  .desktop-nav .wp-block-navigation__responsive-container.is-menu-open {
    background: var(--white);
    color: var(--ink);
    padding: 82px 24px 32px;
  }

  .desktop-nav .wp-block-navigation__responsive-container-close {
    color: var(--navy);
    height: 48px;
    right: 16px;
    top: 16px;
    width: 48px;
  }

  .desktop-nav .wp-block-navigation__responsive-container-content,
  .desktop-nav .wp-block-navigation__container {
    align-items: stretch;
    width: 100%;
  }

  .desktop-nav .wp-block-navigation-item,
  .desktop-nav .wp-block-navigation-item__content,
  .desktop-nav .wp-block-navigation-submenu__toggle {
    height: auto;
    width: 100%;
  }

  .desktop-nav .wp-block-navigation-item__content,
  .desktop-nav .wp-block-navigation-submenu__toggle {
    border-bottom: 1px solid #dddddd;
    color: var(--ink);
    font-size: 20px;
    padding: 15px 4px;
  }

  .desktop-nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container {
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 18px;
    position: static;
    width: 100%;
  }

  .desktop-nav .wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    font-size: 17px;
    padding: 10px 4px;
  }

  .mobile-only-nav-link {
    display: flex !important;
  }

  .header-search-panel {
    top: 78px;
  }

  .hero-slide .hero-panel {
    left: 0;
  }

  .resource-track > .wp-block-post {
    flex-basis: calc(50% - 12px);
  }

  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .header-search-panel .wp-block-search {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .header-search-panel .wp-block-search__label {
    grid-column: 1 / -1;
    padding: 0 0 8px;
  }

  .hero-slide .wp-block-cover__inner-container {
    align-items: flex-end;
    display: flex;
  }

  .hero-slide .hero-panel {
    min-height: auto;
    padding: 34px 24px 48px;
    position: relative;
  }

  .hero-thumbnails {
    display: none;
  }

  .resource-track > .wp-block-post {
    flex-basis: 86%;
  }

  .story-grid.wp-block-post-template,
  .blog-card-grid,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .partner-section .partner-copy,
  .partner-section .partner-image {
    min-height: 330px;
  }

  .archive-shell,
  .search-results-shell,
  .not-found-shell,
  .single-post-shell {
    padding-top: 125px;
  }
}

@media (max-width: 920px) {
  .utility-controls,
  .site-header.is-scrolled .utility-controls {
    display: flex !important;
    height: 40px;
    opacity: 1 !important;
    pointer-events: auto !important;
    right: 64px;
    top: 16px;
  }

  .utility-controls .search-trigger,
  .utility-controls > .wp-block-buttons {
    display: none !important;
  }

  .utility-controls > .wp-block-shortcode {
    display: block;
    height: 40px;
  }

  .utility-controls .language-select {
    border: 0;
    height: 40px;
    padding: 0 8px;
    width: 112px;
  }

  .utility-controls .language-select select {
    font-size: 14px;
    padding-right: 15px;
  }

  .utility-controls .language-select svg {
    right: 6px;
    width: 15px;
  }

  .desktop-nav {
    display: flex;
  }

  .desktop-nav .wp-block-navigation__responsive-container-open {
    display: flex;
  }
}

@media (max-width: 420px) {
  .brand-link,
  .site-header.is-scrolled .brand-link {
    width: 136px;
  }

  .utility-controls,
  .site-header.is-scrolled .utility-controls {
    right: 57px;
  }

  .utility-controls .language-select {
    width: 104px;
  }
}

@media (max-width: 420px) {
  .header-frame .brand-link {
    flex-basis: 136px;
    height: 40px;
    width: 136px;
  }

  .contact-layout .fluentform {
    padding: 22px 18px;
  }

  .single-post-cta {
    padding: 28px 22px;
  }
}
