.ptg_breadcrumbs {
  display: flex;
  list-style: none;
  align-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
.ptg_breadcrumbs li {
  display: inline-block;
  padding-right: 1em;
}
.ptg_breadcrumbs li:last-child {
  padding-right: 0;
}
.ptg_breadcrumbs a {
  color: #fff;
  text-decoration: none;
  opacity: 0.6;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.ptg_breadcrumbs a:hover {
  opacity: 1;
}
.ptg_breadcrumbs li::after {
  content: "/";
  display: inline-block;
  opacity: 0.6;
  margin: 0 0.5em;
}
.ptg_breadcrumbs li:last-child::after {
  content: none;
}

.region-badge {
  font-size: 0.75rem;
  border-radius: 1.25em;
  border: 1px solid var(--ptg_page_color);
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  text-transform: none;
  line-height: 0;
}
.region-badge .region-badge--icon {
  margin-right: 0.5rem;
}
.region-badge .region-badge--icon svg {
  line-height: 0;
  height: 0.75rem;
  width: 0.75rem;
  fill: #FFF;
  stroke: #FFF;
}

.toc--wrapper {
  align-content: center;
}
.toc--wrapper .toc--inner {
  border-radius: 0.75rem;
  background-color: rgba(9, 9, 9, 0.6);
  padding: 2rem 1.5rem;
  max-width: 20rem;
  backdrop-filter: blur(2rem);
}
.toc--wrapper .toc--heading {
  padding: 0 0 1.5rem 0;
  margin: 0 0 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "PP Neue Corp", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
}
.toc--wrapper .toc--heading svg {
  height: 1.25rem;
  width: 1.25rem;
  fill: #FFF;
  stroke: #FFF;
  margin-right: 0.5rem;
}
.toc--wrapper .toc--list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc--wrapper li {
  margin-bottom: 1rem;
}
.toc--wrapper a {
  text-decoration: none;
  font-size: 0.875rem;
}

.entry-header {
  position: relative;
  color: #fff;
  padding-top: 6.875rem;
  padding-bottom: 6vh;
}
.entry-header .post-thumbnail::before, .entry-header .post-thumbnail::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.entry-header .post-thumbnail::before {
  background-color: var(--ptg_page_color);
  z-index: 5;
  opacity: 0.7;
  mix-blend-mode: color;
}
.entry-header .post-thumbnail::after {
  background-image: linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, 0.75) 85%);
  z-index: 8;
}
.entry-header .post-thumbnail .ptg_image {
  z-index: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.entry-header .entry-excerpt {
  font-size: 1.1875rem;
  line-height: 1.4;
}
.entry-header .entry-title {
  margin: 1rem 0;
  line-height: 1.125;
  color: #FFF;
  display: inline-block;
}
.entry-header .entry-title--wrap {
  position: relative;
}
.entry-header .region-badge {
  margin-left: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.entry-header.ptg_single .post-thumbnail::before, .entry-header.ptg_single .post-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.entry-header.ptg_single .ptg_image {
  filter: grayscale(1) brightness(0.8);
}

.entry-header--inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 20rem;
  grid-template-rows: 2rem auto;
  height: 60vh;
  z-index: 10;
}

.entry-header--content {
  align-self: center;
  grid-column: 1;
  grid-row: 2;
  padding-right: 25%;
}

.entry-content {
  margin: 0;
  position: relative;
}
.entry-content::before {
  bottom: calc(100% - 1px);
  content: "";
  background-color: #FFF;
  clip-path: url(#ptgBottomSwooshCutout);
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  height: 6vh;
  z-index: 20;
  pointer-events: none;
}

.ptg_breadcrumbs {
  grid-column: 1/span 2;
  grid-row: 1;
}

.archive-section {
  padding: 2rem 0;
  background: #F3F7FB;
  border-top: 1px solid rgba(12, 12, 12, 0.12);
}
.archive-section .archive-section--body {
  overflow: hidden;
  max-height: 0;
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition-property: max-height;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0, 0.25, 1, 0.76);
}
.archive-section .icon-open {
  display: none;
}
.archive-section.open {
  background: #fff;
  backdrop-filter: blur(0);
}
.archive-section.open .archive-section--body {
  max-height: 120vh;
}
.archive-section.open .icon-open {
  display: block;
}
.archive-section.open .icon-closed {
  display: none;
}

.archive-section--header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.archive-section--icon_wrap {
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  padding: 1rem;
  height: 1.875rem;
  width: 1.875rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  line-height: 0;
}
.archive-section--icon_wrap svg {
  height: 1.875rem;
  width: 1.875rem;
  line-height: 0;
  fill: #fff;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate3d(-50%, -50%, 0);
}

.archive-section--description {
  margin-top: 2rem;
}

.archive-section--cta {
  margin-top: 2rem;
}

.archive-icon {
  flex-shrink: 0;
  flex-grow: 0;
  border-style: solid;
  border-color: var(--ptg_page_color);
  border-width: 1px;
  padding: 1rem;
  border-radius: 50%;
  line-height: 0;
  background-color: #fff;
}
.archive-icon .ptg_image {
  width: 2.875rem;
  height: 2.875rem;
  object-fit: contain;
}

.archive-section--title {
  flex-grow: 1;
  flex-shrink: 1;
  color: #090909;
  font-size: 1.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: "PP Neue Corp", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
}

.ptg-swiper .archive-post-nav {
  text-align: right;
}
.ptg-swiper .card--card {
  margin-top: 0;
}

.archive-load_more--wrapper {
  text-align: center;
  display: none;
}

.ptg_button {
  display: inline-block;
}

.region-badge {
  margin-left: 0.75rem;
}

.archive-content .ptg_swirl {
  background-position: center top;
  background-size: 180vw;
}

body.ptg-archive-ajax {
  background: #fff;
  color: #222;
}
body.ptg-archive-ajax .footer-cutout {
  display: none;
}
body.ptg-archive-ajax .site-footer.ptg_has_bg_swirl > .ptg_swirl.add_red::before {
  transform: scale(-1, 1);
  background-position: center 30%;
}
body.ptg-archive-ajax.dark_bg {
  background: #090909;
  color: #fff;
}
body.ptg-archive-ajax.dark_bg .archive-section {
  background: rgba(9, 9, 9, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2rem);
  transition-property: background, backdrop-filter;
  transition-duration: 0.9s;
  transition-timing-function: ease-in-out;
}
body.ptg-archive-ajax.dark_bg .archive-section.open {
  background: rgba(9, 9, 9, 0.3);
}
body.ptg-archive-ajax.dark_bg .archive-section--title {
  color: #fff;
}
body.ptg-archive-ajax.dark_bg .archive-icon {
  background-color: #090909;
}

/*# sourceMappingURL=ptg_archive-ajax.css.map */
