@font-face {
  font-family: "Advent Pro";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/advent-pro-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Advent Pro";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/advent-pro-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Dancing Script";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dancing-script.woff2") format("woff2");
}

:root {
  --pp-primary: #566b80;
  --pp-secondary: #000;
  --pp-text: #2b2b2b;
  --pp-heading: #0a0a0a;
  --pp-link: #0c4a96;
  --pp-success: #627d47;
  --pp-alert: #b20000;
  --pp-container: 1080px;
  --pp-gutter: 15px;
  --pp-shadow: 0 2px 8px rgb(0 0 0 / 12%);
}

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

html {
  background: #fff;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--pp-text);
  font-family: "Advent Pro", sans-serif;
  font-size: 17.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

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

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

img {
  height: auto;
}

a {
  color: var(--pp-link);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

a:hover,
a:focus-visible {
  color: #111;
}

p {
  margin: 0 0 1.3em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.55em;
  color: var(--pp-heading);
  font-family: "Advent Pro", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

/* Preserve the legacy 700 heading weight when imported content contains nested bold tags. */
h1 b,
h1 strong,
h2 b,
h2 strong,
h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong,
h6 b,
h6 strong {
  font-weight: inherit;
}

h1 {
  font-size: 1.7em;
}

h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.25em;
}

h4 {
  font-size: 1.125em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.85em;
}

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

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--pp-primary), white 35%);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  display: block;
  height: auto;
  left: 10px;
  padding: 12px 18px;
  top: 10px;
  width: auto;
  z-index: 100000;
  background: #fff;
  color: #111;
}

.pp-container {
  width: min(100% - 30px, var(--pp-container));
  margin-inline: auto;
}

.pp-site {
  min-height: 100vh;
  overflow: clip;
}

/* Header */
.pp-header {
  position: relative;
  z-index: 1000;
}

.pp-topbar {
  min-height: 40px;
  background: var(--pp-primary);
  color: #fff;
}

.pp-topbar__inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pp-header-main {
  min-height: 90px;
  background: #fff;
  box-shadow: var(--pp-shadow);
}

.pp-header-main__inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 20px;
}

.pp-logo {
  display: flex;
  width: 200px;
  min-width: 200px;
  align-items: center;
  align-self: stretch;
  padding-block: 10px;
}

.pp-logo img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}

.pp-primary-nav {
  min-width: 0;
  flex: 1 1 auto;
}

.pp-menu,
.pp-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-menu--desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pp-menu--desktop > li {
  position: relative;
}

.pp-menu--desktop > li > a {
  display: flex;
  min-height: 20px;
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  color: #3a3a3a;
  font-size: 0.99rem;
  font-weight: 700;
  line-height: 16px;
  padding: 0 0.75em;
}

.pp-menu--desktop > li.menu-item-has-children > a::after {
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.pp-menu--desktop > li.current-menu-item > a,
.pp-menu--desktop > li.current-menu-ancestor > a,
.pp-menu--desktop > li > a:hover,
.pp-menu--desktop > li > a:focus-visible {
  border-color: var(--pp-primary);
  color: var(--pp-primary);
}

.pp-menu--desktop .sub-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  width: max-content;
  min-width: 260px;
  max-width: 360px;
  padding: 8px 0;
  visibility: hidden;
  border: 1px solid #fff;
  border-radius: 5px;
  background: var(--pp-primary);
  box-shadow: 0 8px 24px rgb(0 0 0 / 18%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  z-index: 20;
}

.pp-menu--desktop .sub-menu::before {
  position: absolute;
  top: -7px;
  left: 24px;
  width: 13px;
  height: 13px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  background: var(--pp-primary);
  content: "";
  transform: rotate(45deg);
}

.pp-menu--desktop li:hover > .sub-menu,
.pp-menu--desktop li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.pp-menu--desktop .sub-menu a {
  display: block;
  padding: 9px 18px;
  color: #fff;
  font-size: 0.99rem;
  line-height: 1.25;
}

.pp-menu--desktop .sub-menu a:hover,
.pp-menu--desktop .sub-menu a:focus-visible,
.pp-menu--desktop .sub-menu .current-menu-item > a {
  background: rgb(255 255 255 / 12%);
  color: #fff;
}

.pp-header-social {
  flex: 0 0 auto;
  --pp-header-social: #999;
}

.pp-header-social .pp-social a {
  color: var(--pp-header-social);
}

.pp-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.pp-social a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--pp-primary);
}

.pp-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.pp-social--outlined a {
  width: 36px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.pp-social--outlined a:hover,
.pp-social--outlined a:focus-visible {
  background: currentColor;
}

.pp-social--outlined a:hover svg,
.pp-social--outlined a:focus-visible svg {
  color: var(--pp-primary);
}

.pp-mobile-menu .pp-social--outlined a:hover,
.pp-mobile-menu .pp-social--outlined a:focus-visible {
  background: var(--pp-primary);
  color: #fff;
}

.pp-mobile-menu .pp-social--outlined a:hover svg,
.pp-mobile-menu .pp-social--outlined a:focus-visible svg {
  color: #fff;
}

.pp-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.pp-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #333;
}

.pp-header.is-sticky {
  padding-bottom: 70px;
}

.pp-header.is-sticky .pp-header-main {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  min-height: 70px;
  animation: pp-header-drop 180ms ease both;
}

.admin-bar .pp-header.is-sticky .pp-header-main {
  top: 32px;
}

.pp-header.is-sticky .pp-header-main__inner {
  min-height: 70px;
}

.pp-header.is-sticky .pp-logo {
  padding-block: 7px;
}

.pp-header.is-sticky .pp-logo img {
  max-height: 56px;
}

@keyframes pp-header-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.pp-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 58%);
  z-index: 1100;
}

.pp-mobile-menu__panel {
  width: min(88vw, 300px);
  height: 100%;
  margin-left: auto;
  padding: 68px 0 32px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -8px 0 30px rgb(0 0 0 / 20%);
  animation: pp-panel-in 180ms ease both;
}

.pp-mobile-menu__close {
  position: absolute;
  top: 14px;
  right: 17px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 2.2rem;
  line-height: 1;
}

.pp-menu--mobile > li {
  border-bottom: 1px solid #e7e7e7;
}

.pp-menu--mobile .menu-item-has-children {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
}

.pp-menu--mobile .menu-item-has-children > a {
  grid-column: 1;
}

.pp-submenu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  align-self: center;
  border: 0;
  background: transparent;
  color: #333;
  grid-column: 2;
}

.pp-submenu-toggle span {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.pp-submenu-toggle[aria-expanded="true"] span {
  transform: translateY(2px) rotate(225deg);
}

.pp-menu--mobile a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.25;
}

.pp-menu--mobile .sub-menu {
  padding: 0 0 8px 20px;
  grid-column: 1 / -1;
}

.pp-menu--mobile .sub-menu li {
  border-left: 2px solid #e5e8eb;
}

.pp-menu--mobile .sub-menu a {
  padding: 8px 12px;
  font-size: 0.82em;
  font-weight: 500;
}

.pp-mobile-menu .pp-social {
  margin-top: 30px;
  padding-inline: 20px;
}

@keyframes pp-panel-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* Main content and clean-room legacy components */
.pp-main,
.pp-page,
.pp-page__content {
  width: 100%;
}

.pp-page__content::after,
.pp-section__content::after {
  display: table;
  clear: both;
  content: "";
}

.pp-page--generic {
  padding: 30px 15px 60px;
}

.pp-page--generic .pp-page__content {
  width: min(100%, var(--pp-container));
  margin-inline: auto;
}

.pp-page--generic .pp-page__content > :last-child {
  margin-bottom: 0;
}

.pp-page__content p:empty {
  display: none;
}

.pp-section__content > br,
.pp-page__content > br,
.pp-row > br,
.pp-col__inner > br,
.pp-stack > br {
  display: none;
}

.pp-section {
  position: relative;
  min-height: var(--pp-section-height, 0);
  padding: var(--pp-section-padding, 30px 0);
  overflow: hidden;
  isolation: isolate;
}

.pp-section__background,
.pp-section__video,
.pp-section__overlay {
  position: absolute;
  inset: 0;
}

.pp-section__background {
  background-color: var(--pp-section-bg-color, transparent);
  background-image: var(--pp-section-bg, none);
  background-position: var(--pp-section-bg-pos, 50% 50%);
  background-repeat: no-repeat;
  background-size: var(--pp-section-bg-size, cover);
  z-index: -3;
}

.pp-section__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.pp-section__overlay {
  background: var(--pp-section-overlay, transparent);
  z-index: -1;
}

.pp-section__content {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
}

.pp-section--has-height {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pp-section--has-height .pp-section__content {
  display: block;
  min-height: 0;
}

.pp-scroll-for-more {
  position: absolute;
  bottom: 21px;
  left: 50%;
  display: grid;
  width: 80px;
  height: 54px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--pp-primary);
  transform: translateX(-50%);
  z-index: 3;
}

.pp-scroll-for-more span {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  animation: pp-scroll-cue 1.7s ease-in-out infinite;
  transform: translateY(-4px) rotate(45deg);
}

@keyframes pp-scroll-cue {
  0%,
  100% { transform: translateY(-5px) rotate(45deg); }
  50% { transform: translateY(4px) rotate(45deg); }
}

.pp-section--dark,
.pp-section--dark a {
  color: #f1f1f1;
}

.pp-section--dark h1,
.pp-section--dark h2,
.pp-section--dark h3,
.pp-section--dark h4,
.pp-section--dark h5,
.pp-section--dark h6 {
  color: #fff;
}

.pp-row {
  display: flex;
  width: min(100%, var(--pp-container));
  max-width: var(--pp-container);
  margin-right: auto;
  margin-left: auto;
  padding: var(--pp-row-padding, 0);
  flex-flow: row wrap;
}

.pp-row--inner {
  width: calc(100% + 30px);
  max-width: none;
  margin-right: -15px;
  margin-left: -15px;
}

.pp-row--full {
  width: 100%;
  max-width: none;
}

.pp-section--video > .pp-section__content > .pp-row--inner.pp-row--full {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.pp-row--collapse {
  width: 100%;
  max-width: none;
}

.pp-row--collapse > .pp-col {
  padding: 0;
}

.pp-row--large {
  width: min(calc(100% + 30px), calc(var(--pp-container) + 30px));
  max-width: calc(var(--pp-container) + 30px);
}

.pp-row--large > .pp-col {
  padding-right: 30px;
  padding-left: 30px;
}

.pp-row--v-middle {
  align-items: center;
}

.pp-row--v-equal {
  align-items: stretch;
}

.pp-row--v-bottom {
  align-items: flex-end;
}

.pp-row--h-center {
  justify-content: center;
}

.pp-row--h-right {
  justify-content: flex-end;
}

.pp-row--h-left {
  justify-content: flex-start;
}

.pp-col {
  position: relative;
  width: calc(var(--pp-span, 12) / 12 * 100%);
  max-width: calc(var(--pp-span, 12) / 12 * 100%);
  flex: 0 0 calc(var(--pp-span, 12) / 12 * 100%);
  padding: 0 var(--pp-gutter) 30px;
}

.pp-col__inner {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: var(--pp-padding, 0);
  margin: var(--pp-margin, 0);
  background: var(--pp-col-bg, transparent);
}

.pp-col--light,
.pp-col--light h1,
.pp-col--light h2,
.pp-col--light h3,
.pp-col--light h4,
.pp-col--light h5,
.pp-col--light h6,
.pp-col--light a {
  color: #fff;
}

.pp-align-center,
.pp-align-center > .pp-col__inner {
  text-align: center;
}

.pp-align-right,
.pp-align-right > .pp-col__inner {
  text-align: right;
}

.pp-banner-link {
  display: block;
  color: inherit;
}

.pp-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--pp-banner-color, transparent);
}

.pp-banner::before {
  display: block;
  padding-top: var(--pp-banner-ratio, 56.25%);
  content: "";
}

.pp-banner__media,
.pp-banner__content {
  position: absolute;
  inset: 0;
}

.pp-banner__media {
  background-color: var(--pp-banner-color, transparent);
  background-image: var(--pp-banner-bg, none);
  background-position: var(--pp-banner-pos, 50% 50%);
  background-repeat: no-repeat;
  background-size: var(--pp-banner-size, cover);
}

.pp-banner__content {
  z-index: 1;
}

.pp-text-box {
  position: absolute;
  top: var(--pp-box-y, 50%);
  left: var(--pp-box-x, 50%);
  width: var(--pp-box-width, 60%);
  max-width: calc(100% - 30px);
  color: var(--pp-box-color, inherit);
  transform: translate(-50%, -50%);
}

.pp-text-box__inner {
  padding: var(--pp-box-padding, 0);
  background: var(--pp-box-bg, transparent);
}

.pp-text-box p:last-child,
.pp-text p:last-child {
  margin-bottom: 0;
}

.pp-text {
  color: var(--pp-text-color, inherit);
  font-size: var(--pp-text-size, inherit);
  line-height: var(--pp-text-leading, inherit);
}

.pp-text h1,
.pp-text h2,
.pp-text h3 {
  margin-bottom: 0.5em;
  line-height: var(--pp-text-leading, 1.3);
}

.pp-text h1 {
  font-size: 1.7em;
}

.pp-text h2 {
  font-size: 1.6em;
}

.pp-text h3 {
  font-size: 1.25em;
}

.pp-text--detail-title h2 {
  font-size: 1.6em;
}

.pp-text--detail-eyebrow h6 {
  margin-bottom: 0.5em;
  line-height: 1.05;
}

.pp-col--detail > .pp-col__inner > h6 {
  margin-bottom: 0.5em;
  line-height: 1.05;
}

.pp-col__inner > p:has(> .pp-button:only-child) {
  margin-bottom: 0;
}

.pp-gap {
  display: block;
  width: 100%;
  height: var(--pp-gap, 30px);
  clear: both;
}

.pp-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 1em 1em 0;
  padding: 0 1.2em;
  border: 1px solid var(--pp-primary);
  border-radius: var(--pp-button-radius, 5px);
  background: var(--pp-primary);
  color: #fff;
  font-size: 0.97em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2.4em;
}

.pp-button:hover,
.pp-button:focus-visible {
  border-color: #43576b;
  background: #43576b;
  color: #fff;
}

.pp-button--outline {
  background: transparent;
  color: var(--pp-primary);
}

.pp-button--lowercase {
  text-transform: none;
}

.pp-button--small {
  min-height: 34px;
  padding: 0.45em 0.9em;
  font-size: 0.88rem;
}

.pp-stack {
  display: flex;
  gap: var(--pp-stack-gap, 0);
  align-items: stretch;
}

.pp-stack--between {
  justify-content: space-between;
}

.pp-stack--around {
  justify-content: space-around;
}

.pp-stack--evenly {
  justify-content: space-evenly;
}

.pp-stack--center {
  justify-content: center;
}

.pp-stack--end {
  justify-content: flex-end;
}

.pp-image {
  width: var(--pp-image-width, 100%);
  margin: 0 auto;
}

.pp-image--fade-in-down {
  animation: pp-fade-in-down 700ms ease-out both;
}

@keyframes pp-fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pp-image__img {
  width: 100%;
}

.pp-html {
  width: 100%;
}

/* Blog and generic WordPress content */
.pp-content-shell {
  padding-top: 60px;
  padding-bottom: 70px;
}

.pp-blog-archive {
  max-width: 870px;
  padding-top: 30px;
  padding-bottom: 60px;
}

.pp-archive-header,
.pp-entry-header {
  margin-bottom: 35px;
  text-align: center;
}

.pp-entry-meta {
  color: #777;
  font-size: 0.9rem;
}

.pp-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-right: -15px;
  margin-left: -15px;
  gap: 0;
}

.pp-post-card {
  padding: 0 15px 30px;
  background: #fff;
  text-align: center;
}

.pp-post-card__image {
  display: block;
  aspect-ratio: 100 / 56;
  overflow: hidden;
}

.pp-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-post-card__body {
  padding: 0.7em 10px 1.4em;
  font-size: 0.85em;
  line-height: 1.6;
}

.pp-post-card h2 {
  margin: 0.1em 0;
  padding-block: 0.1em;
  font-size: 1em;
  line-height: 1.3;
}

.pp-post-card h2 a {
  display: inline-block;
  color: var(--pp-heading);
}

.pp-post-card__divider {
  display: block;
  width: 30px;
  height: 2px;
  margin: 0.5em auto;
  background: rgb(86 107 128 / 24%);
}

.pp-post-card__excerpt {
  margin: 0.1em 0;
  font-size: 1em;
  line-height: 1.6;
}

.pp-single-hero {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background-color: var(--pp-primary);
  background-image: var(--pp-single-image, none);
  background-position: center calc(0% + var(--pp-single-parallax-y, 0px));
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
}

.pp-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 50%);
  z-index: -1;
}

.pp-single-hero__inner {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.pp-single-category {
  margin: 0 0 0.5em;
  color: #fff;
  font-size: 0.805em;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pp-single-category a,
.pp-single-category a:hover,
.pp-single-category a:focus-visible {
  color: #fff;
}

.pp-single-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 1.955em;
}

.pp-single-divider {
  display: block;
  width: 30px;
  height: 3px;
  margin: 1.15em auto;
  background: rgb(255 255 255 / 56%);
}

.pp-single-content-shell {
  max-width: 870px;
  padding-top: 56.4px;
  padding-bottom: 90px;
}

.pp-entry-content > * {
  max-width: 100%;
}

.pp-entry-content blockquote {
  margin: 2em 0;
  padding: 0.7em 1.4em;
  border-left: 4px solid var(--pp-primary);
  background: #f5f6f7;
}

.pp-blog-share {
  margin-top: 22.88px;
  text-align: center;
}

.pp-blog-share__divider {
  display: block;
  width: 30px;
  height: 3px;
  margin: 0 auto 17.6px;
  background: rgb(86 107 128 / 28%);
}

.pp-blog-share__links {
  display: flex;
  width: max-content;
  margin-inline: auto;
  justify-content: center;
  gap: 3.468px;
}

.pp-blog-share__links a {
  display: grid;
  width: 2.5em;
  height: 2.5em;
  margin-bottom: 1em;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--pp-primary);
  font-size: 0.8245em;
  font-weight: 700;
  text-transform: uppercase;
}

.pp-blog-share__links svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.pp-blog-share__links a:hover,
.pp-blog-share__links a:focus-visible {
  background: var(--pp-primary);
  color: #fff;
}

.pp-post-navigation {
  display: grid;
  margin-top: 26.4px;
  padding: 19.3555px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.pp-post-navigation div:last-child {
  text-align: right;
}

.pp-post-navigation a {
  color: var(--pp-text);
}

.pp-not-found,
.pp-no-results {
  text-align: center;
}

.navigation.posts-navigation {
  margin-top: 40px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Footer */
.pp-footer {
  background: #fff;
}

.pp-footer-contact {
  padding: 62.75px 20px;
  background: var(--pp-primary);
  color: #fff;
  text-align: center;
}

.pp-footer-contact h2,
.pp-footer-contact a,
.pp-footer-contact strong {
  color: #fff;
}

.pp-footer-contact h2 {
  margin-bottom: 34px;
  font-size: 1.875rem;
  line-height: 1.6;
}

.pp-footer-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.pp-footer-contact__grid p {
  margin: 8px 0 0;
  line-height: 1.1;
}

.pp-footer-contact .pp-social {
  margin-top: 24px;
}

.pp-footer-contact .pp-social a {
  color: #fff;
}

.pp-footer-contact .pp-social--outlined a:hover svg,
.pp-footer-contact .pp-social--outlined a:focus-visible svg {
  color: var(--pp-primary);
}

.pp-funding {
  padding-top: 20px;
  line-height: 0;
  text-align: center;
}

.pp-funding a {
  display: inline-block;
  width: 20%;
  min-width: 230px;
  max-width: 330px;
}

.pp-funding img {
  width: 100%;
}

.pp-footer-bottom {
  padding: 10px 0 15px;
  background: #fff;
  color: #333;
}

.pp-footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.pp-footer-menu {
  display: flex;
  margin: 0 0 8px;
  padding: 0;
  gap: 16px;
  list-style: none;
  text-transform: none;
}

.pp-footer-menu a {
  color: rgb(0 0 0 / 50%);
  font-size: 0.99rem;
  font-weight: 400;
}

.pp-copyright {
  margin: 0;
  color: rgb(0 0 0 / 50%);
  font-size: 0.99rem;
  line-height: 1.4;
}

.pp-agency-credit {
  display: block;
  flex: 0 0 auto;
}

.pp-agency-credit img {
  width: 170px;
}

.pp-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  visibility: hidden;
  border: 2px solid #333;
  border-radius: 50%;
  background: rgb(255 255 255 / 88%);
  color: #333;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 900;
}

.pp-back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Google Ads consent */
.pp-cookie-consent {
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  left: 18px;
  width: min(720px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  margin-inline: auto;
  padding: 22px;
  overflow-y: auto;
  border: 1px solid rgb(86 107 128 / 28%);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 38px rgb(0 0 0 / 24%);
  color: var(--pp-text);
  z-index: 2100;
}

.pp-cookie-consent__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.pp-cookie-consent__description,
.pp-cookie-consent__policy {
  margin: 0 0 12px;
  line-height: 1.45;
}

.pp-cookie-consent__policy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pp-cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pp-cookie-consent__button,
.pp-cookie-settings {
  min-height: 44px;
  border: 2px solid var(--pp-primary);
  border-radius: 4px;
  background: var(--pp-primary);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.pp-cookie-consent__button:hover,
.pp-cookie-consent__button:focus-visible,
.pp-cookie-settings:hover,
.pp-cookie-settings:focus-visible {
  border-color: #394b5e;
  background: #394b5e;
  color: #fff;
}

.pp-cookie-settings {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  left: max(16px, env(safe-area-inset-left, 0px));
  min-height: 38px;
  padding: 6px 12px;
  border-width: 1px;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgb(0 0 0 / 18%);
  font-size: 0.82rem;
  z-index: 1900;
}

@media (max-width: 849px) {
  .pp-primary-nav,
  .pp-header-social {
    display: none;
  }

  .pp-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .pp-header-main,
  .pp-header-main__inner {
    min-height: 70px;
  }

  .pp-logo {
    position: absolute;
    left: 50%;
    width: 129px;
    min-width: 0;
    height: 70px;
    transform: translateX(-50%);
  }

  .pp-logo img {
    max-height: 50px;
    object-position: center;
  }

  .pp-section {
    min-height: var(--pp-section-height-md, var(--pp-section-height, 0));
    padding: var(--pp-section-padding-md, var(--pp-section-padding, 30px 0));
  }

  .pp-section__overlay {
    background: var(--pp-section-overlay-md, var(--pp-section-overlay, transparent));
  }

  .pp-row {
    padding: var(--pp-row-padding-md, var(--pp-row-padding, 0));
  }

  .pp-col {
    width: calc(var(--pp-span-md, var(--pp-span, 12)) / 12 * 100%);
    max-width: calc(var(--pp-span-md, var(--pp-span, 12)) / 12 * 100%);
    flex-basis: calc(var(--pp-span-md, var(--pp-span, 12)) / 12 * 100%);
  }

  .pp-col__inner {
    padding: var(--pp-padding-md, var(--pp-padding, 0));
    margin: var(--pp-margin-md, var(--pp-margin, 0));
  }

  .pp-banner::before {
    padding-top: var(--pp-banner-ratio-md, var(--pp-banner-ratio, 56.25%));
  }

  .pp-text-box {
    width: var(--pp-box-width-md, var(--pp-box-width, 60%));
  }

  .pp-gap {
    height: var(--pp-gap-md, var(--pp-gap, 30px));
  }

  .pp-image {
    width: var(--pp-image-width-md, var(--pp-image-width, 100%));
  }

  .pp-funding a {
    width: 40%;
  }
}

@media (min-width: 850px) {
  .pp-header-main__inner {
    gap: 0;
  }

  .pp-logo {
    margin-right: 30px;
  }

  .pp-primary-nav {
    transform: translateY(0.92px);
  }

  .pp-header-social .pp-social {
    gap: 0;
  }

  .pp-header-social .pp-social a {
    width: 17.952px;
    height: 28.72px;
    margin-inline: 5.386px;
  }

  .pp-header-social .pp-social svg {
    width: 17.952px;
    height: 17.952px;
  }

  .pp-header-main__inner,
  .pp-footer-bottom__inner {
    padding-inline: 15px;
  }

  .pp-footer-bottom {
    padding-bottom: 17.32px;
  }
}

@media (min-width: 550px) {
  .pp-post-card__body {
    font-size: 0.9em;
  }

  .pp-post-card h2 {
    font-size: 1.15em;
  }
}

@media (max-width: 782px) {
  .admin-bar .pp-header.is-sticky .pp-header-main {
    top: 46px;
  }
}

@media (max-width: 549px) {
  body {
    font-size: 17.6px;
  }

  .pp-topbar__inner {
    font-size: 0.78rem;
  }

  .pp-logo {
    width: 129px;
  }

  .pp-section {
    min-height: var(--pp-section-height-sm, var(--pp-section-height-md, var(--pp-section-height, 0)));
    padding: var(--pp-section-padding-sm, var(--pp-section-padding-md, var(--pp-section-padding, 30px 0)));
  }

  .pp-text h2 {
    font-size: 1.2em;
  }

  .pp-text h3 {
    font-size: 1em;
  }

  .pp-text--detail-title h2 {
    font-size: 1.2em;
  }

  .pp-section__overlay {
    background: var(--pp-section-overlay-sm, var(--pp-section-overlay-md, var(--pp-section-overlay, transparent)));
  }

  .pp-row {
    padding: var(--pp-row-padding-sm, var(--pp-row-padding-md, var(--pp-row-padding, 0)));
  }

  .pp-row:not(.pp-row--full):not(.pp-row--inner) {
    width: 100%;
  }

  .pp-col {
    width: calc(var(--pp-span-sm, 12) / 12 * 100%);
    max-width: calc(var(--pp-span-sm, 12) / 12 * 100%);
    flex-basis: calc(var(--pp-span-sm, 12) / 12 * 100%);
  }

  .pp-col--first-small {
    order: -1;
  }

  .pp-col__inner {
    padding: var(--pp-padding-sm, var(--pp-padding-md, var(--pp-padding, 0)));
    margin: var(--pp-margin-sm, var(--pp-margin-md, var(--pp-margin, 0)));
  }

  .pp-row--large > .pp-col {
    padding-right: 15px;
    padding-left: 15px;
  }

  .pp-banner::before {
    padding-top: var(--pp-banner-ratio-sm, var(--pp-banner-ratio-md, var(--pp-banner-ratio, 56.25%)));
  }

  .pp-text-box {
    top: var(--pp-box-y-sm, var(--pp-box-y, 50%));
    left: var(--pp-box-x-sm, var(--pp-box-x, 50%));
    width: var(--pp-box-width-sm, var(--pp-box-width-md, var(--pp-box-width, 76%)));
  }

  .pp-gap {
    height: var(--pp-gap-sm, var(--pp-gap-md, var(--pp-gap, 30px)));
  }

  .pp-image {
    width: var(--pp-image-width-sm, var(--pp-image-width-md, var(--pp-image-width, 100%)));
  }

  .pp-post-grid {
    grid-template-columns: 1fr;
  }

  .pp-blog-archive {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .pp-post-card {
    padding: 0 15px 30px;
  }

  .pp-single-hero,
  .pp-single-hero__inner {
    min-height: 300px;
  }

  .pp-single-hero h1 {
    font-size: 1.54rem;
  }

  .pp-single-category {
    font-size: 0.7em;
  }

  .pp-single-divider {
    margin: 1em auto;
  }

  .pp-single-content-shell {
    padding-top: 56.4px;
    padding-bottom: 90px;
  }

  .pp-post-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12.3125px 0;
  }

  .pp-post-arrow {
    display: none;
  }

  .pp-footer-contact {
    padding: 50px 20px 50.984px;
  }

  .pp-footer-contact h2 {
    margin-bottom: 32px;
    font-size: 1.5rem;
  }

  .pp-footer-contact__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pp-funding a {
    width: 80%;
    min-width: 0;
  }

  .pp-footer-bottom__inner {
    flex-direction: column-reverse;
    gap: 5px;
    text-align: center;
  }

  .pp-footer-menu {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
    font-size: 0.99rem;
    line-height: 1.4;
  }

  .pp-copyright {
    line-height: 1.6;
  }

  .pp-agency-credit {
    padding-block: 7.5px;
  }

  .pp-back-to-top {
    display: none;
  }

  .pp-cookie-consent {
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    left: max(10px, env(safe-area-inset-left, 0px));
    width: auto;
    max-height: calc(100vh - 20px - env(safe-area-inset-bottom, 0px));
    max-height: calc(100dvh - 20px - env(safe-area-inset-bottom, 0px));
    margin-inline: 0;
    padding: 18px;
  }

  .pp-cookie-consent__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
