/*
Theme Name: Twenty Twenty-Three Child
Author: Diffractive.io
Author URI: https://diffractive.io
Template: twentytwentythree
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/**
 * Note that we use 781/782 as mobile breakpoints as we see that it's used in twenty-twenty-three theme too
 * but this is currently a simplified responsive implementation, we should check the parent theme source code more carefully
 * to decide what exactly the media query breakpoints should look like
 */

/**
 * General / Site-wide
 */
 html {
    scroll-behavior: smooth;
}
/* fix font weight difference with figma */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.wp-block-tiptip-hyperlink-group-block {
    text-decoration: none;
}
.site-container {
    max-width: var(--wp--style--global--wide-size) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-right: var(--wp--style--root--padding-right) !important;
    padding-left: var(--wp--style--root--padding-left) !important;
    box-sizing: border-box;
}
.site-container > * {
    width: 100%;
    max-width: var(--wp--style--global--wide-size) !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.wp-block-mfb-meta-field-block,
.wp-block-mfb-meta-field-block .value {
    height: 100%;
}


/**
 * Hero cover used on most pages
 */
.hero-cover {
    min-height: 620px;
}
@media only screen and (max-width: 781px) {
    .hero-cover {
        min-height: 60vh;
    }
}


/**
 * Blue/White Title Box
 */
body .is-layout-constrained > .post-title-container {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 70px;
    margin-top: -220px;
}
body .is-layout-constrained > .post-title-container .title-bg-box {
    border-radius: 5px;
    padding: 40px 127px 50px 84px;
    max-width: 66.67%;
}
body .is-layout-constrained > .post-title-container.blue-box .title-bg-box {
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.15);
}
body .is-layout-constrained > .post-title-container p {
    font-size: 13px;
    margin-block-start: 1rem;
}
body .is-layout-constrained > .post-title-container h2,
body .is-layout-constrained > .post-title-container h3 {
    font-weight: 600;
    margin-top: 60px;
}
@media only screen and (max-width: 1194px) {
    body .is-layout-constrained > .post-title-container {
        margin-left: calc(var(--wp--style--root--padding-left) * -1) !important;
        margin-right: 0px !important;
    }
    body .is-layout-constrained > .post-title-container .title-bg-box {
        max-width: 100%;
        padding-left: var(--wp--style--root--padding-left);
    }
}
@media only screen and (min-width: 1195px) {
    .entry-content > .alignwide {
        padding-left: 84px;
        padding-right: 84px;
    }
}
@media only screen and (max-width: 781px) {
    body .is-layout-constrained > .post-title-container {
        margin-left: calc(var(--wp--style--root--padding-left) * -1) !important;
        margin-right: 0px !important;
        margin-top: -120px;
        margin-bottom: 60px;
    }
    body .is-layout-constrained > .post-title-container .title-bg-box {
        padding: 32px var(--wp--style--root--padding-right) 32px var(--wp--style--root--padding-left) !important;
    }
    body .is-layout-constrained > .post-title-container .wp-block-post-title {
        white-space: initial;
    }
    body .is-layout-constrained > .post-title-container h2,
    body .is-layout-constrained > .post-title-container h3 {
        margin-top: 24px;
    }
    body .is-layout-constrained > .white-bg-title {
        margin-bottom: 0 !important;
    }
}
/* raise z-index of .entry-content such that blue/white title box not covered by hero image overlay */
.wp-site-blocks > .entry-content {
    position: relative;
    z-index: 1;
}
.title-blue-bg h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
  }
  @media only screen and (max-width: 781px) {
    .title-blue-bg h2 {
      font-size: 30px;
      line-height: 36px;
    }
  }
.title-green-bg .breadcrumbs span.current-item {
    color: #ffffff !important;
}
.title-green-bg h2 {
    margin-top: 70px !important;
}
@media only screen and (max-width: 781px) {
    .title-green-bg h2 {
      margin-top: 24px !important;
    }
}



/**
 * Breadcrumbs
 */
.breadcrumbs {
    font-size: 11px;
}
.breadcrumbs {
    letter-spacing: 2px;
    text-transform: uppercase;
}
.breadcrumbs a.current-item {
    font-weight: 700;
    color: #55ADFF; /* Leitner Sec Blue 1 */
}
.breadcrumbs span a {
    text-decoration: none;
}
.breadcrumbs span.current-item {
    font-weight: 700;
    color: #55ADFF; /* Leitner Sec Blue 1 */
}
.breadcrumbs .breadcrumb-separator {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.events-breadcrumbs .breadcrumbs span.current-item {
    color: #9F92F3;
}


/**
 * Hide Cookies Notice box from Jetpack
 */
.wp-block-jetpack-cookie-consent {
    display: none;
}


/**
 * Image and text columns
 */
.wp-block-column .wp-block-image.alignfull,
.wp-block-column .wp-block-image.alignwide {
    height: 100%;
}
.wp-block-column .wp-block-image.alignfull img,
.wp-block-column .wp-block-image.alignwide img {
    height: 100%;
    object-fit: cover;
}
.image-and-text-cols .wp-block-column {
    box-sizing: border-box;
}
@media only screen and (max-width: 781px) {
    .image-and-text-cols .text-column {
        padding: 60px 24px !important;
    }
}


/**
 * Header styles
 */
/* .wp-block-template-part is the Header Part - Desktop/Mobile Menu */
.desktop-only > .wp-block-template-part,
.home-nav-wrapper > .wp-block-template-part {
    max-width: var(--wp--style--global--wide-size) !important;
}
.hero-cover > .wp-block-cover__inner-container {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
#info-label {
    color: #5699F0;
    font-size: 11px;
    font-style: italic;
    font-weight: 400;
    display: inline-block;
}
.header-navigation {
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    gap: 0px !important;
}
.header-navigation li {
    align-items: baseline !important;
}
.header-navigation > li.wp-block-navigation-item {
    align-items: baseline !important;
    cursor: pointer;
    padding: 0;
}
.header-navigation > li.wp-block-navigation-item a {
    padding: 1rem;
  }

/* MAKE SURE THIS PART IS ALWAYS BELOW THE PART ABOVE */
.header-navigation > li.wp-block-navigation-item.wp-block-navigation-submenu {
    padding: 1rem;
}

.header-navigation > li.wp-block-navigation-item.wp-block-navigation-submenu > a {
    padding: 0;
}
.header-navigation > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    border-radius: 0px 0px 5px 5px;
    top: 54.5px;
    left: 0px !important;
    right: auto !important;
    border: 0px;
    box-shadow: 4px 4px 20px 0px #00000026;
}
.wp-block-navigation__submenu-container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    border-radius: 5px;
}

.wp-block-navigation-submenu li {
    color: #272930;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}

.header-navigation > li.wp-block-navigation-item:hover {
    color: #ffffff;
    background: #3F85ED;
}
.header-navigation > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container li.wp-block-navigation-item.wp-block-navigation-link:hover {
    background: #5699F0;
}
.header-navigation > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container > li > a {
    padding: 6px 16px;
}
li.wp-block-navigation-item.wp-block-navigation-link:hover {
    color: #ffffff;
    background: #3F85ED;
}
.nav-right-side-column > .nav-menu > nav .wp-block-navigation__responsive-container-content {
      display: block;
      margin-left: 0px;
      width: 100%;
}
.desktop-nav-bar > .wp-block-column:first-child > .wp-block-image {
    max-width: 310px;
}
.nav-bar-search {
    font-family: 'Figtree';
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 18px;
    text-align: right;
    position: absolute !important;
    right: 0;
    bottom: 36px;
    width: auto !important; /* override 100% width defined for normal li elements in mobile nav */
}

.nav-bar-search span {
      align-items: center;
      display: flex;
      gap: 8px;
}

.nav-bar-search span::after {
    content: url("/wp-content/uploads/2023/09/Icon.svg");
    height: 24px;
    width: 24px;
}

.nav-information-text {
    font-size: 11px;
    font-style: italic;
    font-weight: 400;
    text-align: right;
    color: #5699F0;
}
.nav-information-links {
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}
.nav-information-links a {
    color: #272930;
    text-decoration: none;
}
.nav-information-links a:not(:first-child) {
    margin-left: 20px;
}
.nav-social-icons {
    text-align: right;
}
.nav-right-side-column > .nav-menu {
    border-radius: 0px 0px 5px 0px;
}
@media only screen and (max-width: 1318px) {
    .nav-right-side-column > .nav-menu {
        border-radius: 0px 0px 5px 5px;
    }
}
.nav-right-side-column .nav-information-container {
    padding-left: 0px !important;
}
.nav-right-side-column .nav-information-container > .wp-block-column > .wp-block-group {
    max-height: 25px;
}
/* switch between "Information for" and "Info for" text */
#info-label-tablet {
    color: #5699F0;
    font-size: 11px;
    font-style: italic;
    font-weight: 400;
    display: none;
}
@media only screen and (max-width: 1318px) {
    #info-label {
        display: none;
    }
    #info-label-tablet {
        display: inline-block;
    }
}
.desktop-nav-bar {
    position: relative;
    z-index: 10;
    box-shadow: 4px 4px 20px 0px #00000026;
}
/* Mobile menu styles */
/* https://wpdocs.io/code-snippets/how-to-change-the-breakpoint-on-a-gutenberg-navigation-block/ */
.mobile-nav-bar {
    position: relative;
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
    background-color: transparent !important; /* such that the site logo isn't covered in the mobile menu */
}
body .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: block !important;
}
body .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none !important;
}
@media (min-width: 837px) {
    body .wp-block-navigation__responsive-container-open:not(.always-shown) {
        display: none !important;;
    }
    body .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
        display: block !important;
    }
    .mobile-nav-bar {
        display:none !important;
    }
    .desktop-nav-bar {
        display: block;
    }
}
nav .wp-block-navigation__responsive-container-content > ul.wp-block-navigation__container:nth-child(3) {
    display: none !important;
}
@media (max-width: 836px) {
    nav .wp-block-navigation__responsive-container-content > ul.wp-block-navigation__container:nth-child(3) {
        display: initial !important;
    }
    .wp-block-navigation__responsive-container-content > .header-navigation > li.wp-block-navigation-item {
        padding: 0px !important;
        width: 100%;
        position: relative;
    }
    .wp-block-navigation__responsive-container-content > .header-navigation > li.wp-block-navigation-item.has-child::after {
        content: url("/wp-content/uploads/2023/09/down-chevron.svg");
        height: 24px;
        width: 24px;
        position: absolute;
        right: 0px;
        top: 0px;
        transition: transform 0.3s ease;
    }
    .wp-block-navigation__responsive-container-content > .header-navigation > li.wp-block-navigation-item.showing-child::after {
        transform: rotate(180deg);
    }
    .wp-block-navigation__responsive-container-content > .header-navigation > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container {
        display: none;
        padding: 12px 0px 0px 0px !important;
        box-shadow: none;
    }
    .wp-block-navigation__responsive-container-content > .header-navigation > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container.show {
        display: flex;
    }
    .wp-block-navigation__responsive-container-content > .header-navigation > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container > li {
        padding: 0px !important;
    }
    .wp-block-navigation__responsive-container-content > .header-navigation > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container > li > a {
        padding: 6px 24px !important;
    }
    .wp-block-navigation__responsive-container-content > .header-navigation > li.wp-block-navigation-item > ul.wp-block-navigation__submenu-container > li a span {
        color: #D0E4F9 !important;
    }
}
html.has-modal-open .mobile-nav-bar > .nav-leitner-icon-mobile-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    min-width: 100vw;
    z-index: 100000;
    background-color: white;
    padding: 22px 24px 22px 24px !important;
}
html.has-modal-open body.admin-bar .mobile-nav-bar > .nav-leitner-icon-mobile-wrapper {
    padding-top: 68px!important;
}

.nav-leitner-icon-mobile, .nav-leitner-icon-tablet {
    display: none;
}
@media only screen and (max-width: 1318px) {
    .nav-leitner-icon-tablet {
        height: 32px;
        display: block;
        margin: 12px 0px 12px 27px !important;
    }
    .nav-leitner-icon-tablet img {
        width: auto !important;
        height: 100% !important;
    }
    .nav-leitner-icon-desktop {
        display: none;
    }
}
@media (max-width: 836px) {
    .desktop-nav-bar {
        display: none !important;
    }
    .mobile-nav-bar {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 20px 24px;
    }
    .mobile-nav-bar .nav-menu {
        padding: 10px !important;
        border-radius: 50px;
    }
    .mobile-nav-bar .nav-leitner-icon-mobile {
        height: 40px;
        display: block;
        margin: 0px !important;
    }
    .mobile-nav-bar .nav-leitner-icon-mobile img {
        width: auto;
        height: 100%;
    }
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    position: fixed;
    top: 84px; /* leave space for the white box with site logo to show above it */
    bottom: 0px;
    overflow: scroll;
    max-width: 100%;
    padding: 40px 24px !important;
    gap: 32px;
    margin-left: 0;
    width: 100%;
    background-color: #146DE1;
    color: white;
}
body.admin-bar .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    top: 130px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > ul {
    box-sizing: border-box;
    padding: 0px;
    align-items: start !important;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > ul:first-child {
    gap: 12px !important;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > ul:nth-child(3) {
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > ul:nth-child(3)::before {
    content: "Information for:";
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #BDD7F9;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > ul:nth-child(3) li:first-child {
    margin-top: 12px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > ul:nth-child(3) li:not(:first-child) {
    margin-top: 4px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > ul.wp-block-social-links {
    align-self: flex-start;
}
.wp-block-navigation__container {
    width: 100%;
}
.menu-divider {
    border-bottom: 1px solid #5699F0;
    width: 100%;
}
.wp-block-navigation__responsive-container-close {
    top: 20px;
    right: 24px;
    height: 44px;
    width: 44px;
    border: 1px solid #146DE1;
    border-radius: 50px;
}

.wp-block-navigation__responsive-container-close > svg {
    margin: 0px auto;
    color: #146DE1;
}
.menu-information-text {
    color: #BDD7F9;
    font-family: Figtree;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0em;
}
.wp-block-navigation a:hover,
.wp-block-navigation a:focus {
    text-decoration: none !important;
}

/* fix blue highlight flashing issue */
body .wp-block-navigation__responsive-container-open {
    -webkit-tap-highlight-color: transparent;
}

/**
 * Home Header styles
 */
.home-nav-wrapper {
    padding: var(--wp--preset--spacing--30) !important;
    padding-top: 20px !important;
    position: absolute;
    top: 0px;
    z-index: 10;
    width: 100%;
    margin-top: 0px;
}
body.admin-bar .home-nav-wrapper {
    margin-top: 32px;
}
@media only screen and (max-width: 781px) {
    body.admin-bar .home-nav-wrapper {
      margin-top: 0px;
    }
    .home-nav-wrapper {
        padding: 0px !important;
    }
}


/**
 * Home carousel
 */
.wp-block-cover.has-custom-content-position {
    position: relative;
}
.wp-block-cover.has-custom-content-position.is-position-bottom-center .wp-block-cover__inner-container {
    position: absolute;
    z-index: 5;
    bottom: 3rem;
    width: 100%;
    color: white;
}
.home-slider-wrapper .swiper-slide > .wpcp-single-item {
    width: 100%;
}
.home-slider-wrapper .swiper-slide > .wpcp-single-item .wpcp-all-captions,
.home-slider-wrapper .swiper-slide > .wpcp-single-item .wpcp-all-captions > .wpcp-post-content {
    height: 90vh !important;
    max-height: 740px;
}
.home-slider-wrapper .swiper-slide > .wpcp-single-item > .wpcp-all-captions {
    display: block;
}
.home-slider-wrapper .swiper-slide > .wpcp-single-item > .wpcp-all-captions .wp-block-cover {
    width: 100%;
    height: 100%;
}
.home-slider-wrapper .swiper-slide > .wpcp-single-item > .wpcp-all-captions .wp-block-cover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
}
.home-slider-wrapper .swiper-slide > .wpcp-single-item > .wpcp-all-captions .wp-block-cover img {
    width: 100%;
    object-fit: cover;
    min-height: 90vh;
    height: 90vh;
}
.wpcpro-wrapper .wpcp-carousel-section:not(.wpcp_swiper_vertical) .wpcp-swiper-dots {
    position: absolute !important;
}
.wpcpro-wrapper .wpcp-carousel-section.wpcp-image-carousel .wpcp-single-item .wpcp-all-captions {
    padding: 20px;
    padding-bottom: 38px;
}

.wpcp-all-captions .wpcp-image-caption {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
.home-slider-wrapper .wpcp-carousel-preloader {
    min-height: 90vh;
    height: 90vh;
}
.home-slider-wrapper .wpcp-swiper-dots {
    margin-top: -60px !important;
}
.home-slider-wrapper .wp-block-cover__inner-container {
    text-align: left;
    padding: 24px 100px;
    max-width: var(--wp--style--global--wide-size) !important;
    padding-left: var(--wp--style--root--padding-left);
    padding-right: var(--wp--style--root--padding-right);
}
.home-slider-wrapper .wp-block-cover__inner-container .wp-block-columns {
    gap: 5vw;
}
.home-slider-wrapper .wp-block-cover__inner-container .wp-block-columns h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
}
@media only screen and (max-width: 781px) {
    .wp-block-cover.has-custom-content-position.is-position-bottom-center .wp-block-cover__inner-container {
        bottom: 2rem;
    }
    .home-slider-wrapper .swiper-slide > .wpcp-single-item .wpcp-all-captions,
    .home-slider-wrapper .swiper-slide > .wpcp-single-item .wpcp-all-captions > .wpcp-post-content {
        height: 80vh !important;
    }
    .home-slider-wrapper .swiper-slide > .wpcp-single-item > .wpcp-all-captions .wp-block-cover img {
        min-height: 80vh;
        height: 80vh !important;
    }
    .home-slider-wrapper .wpcp-swiper-dots {
        margin-top: -40px !important;
    }
    .home-slider-wrapper .wp-block-cover__inner-container {
        padding: 48px 24px;
    }
    .home-slider-wrapper .wp-block-cover__inner-container .wp-block-columns {
        gap: 20px;
    }
    .home-slider-wrapper .wp-block-cover__inner-container .wp-block-columns h2 {
        font-size: 30px;
        line-height: 36px;
    }
    .wpcp-all-captions .wpcp-image-caption {
        font-size: 16px;
        line-height: 22px;
    }
    .wpcpro-wrapper .wpcp-carousel-section.wpcp-image-carousel .wpcp-single-item .wpcp-all-captions {
        padding: 20px;
    }
}


/**
 * Carousel-tabs switcher
 */
.tabs-carousel-switch-group .wpcpro-wrapper .wpcp-post-carousel .wpcp-single-item .wpcp-all-captions {
    flex-direction: column;
    padding: 1rem 0rem 0rem 1rem !important;
}
.tabs-carousel-switch-group .wpcpro-wrapper .wpcp-post-carousel .swiper-slide > .wpcp-single-item > .wpcp-slide-image {
    height: 200px !important; /* fix image/containers with height: 0px issue when scaling from desktop to mobile size */
}
.tabs-carousel-switch-group .wpcp-all-captions .wpcp-post-title {
    text-align: left !important;
    margin: 1rem !important;
}
@media only screen and (max-width: 781px) {
    .tabs-carousel-switch-group>.wpcp-carousel-wrapper {
        display: block;
    }
}
@media only screen and (min-width: 782px) {
    .tabs-carousel-switch-group>.wpcp-carousel-wrapper {
        display: none;
    }
}
.tabs-carousel-switch-group>.wpcp-carousel-wrapper .wpcp-carousel-section p {
    margin: 1rem;
    text-align: left;
}
.tabs-carousel-switch-group>.wpcp-carousel-wrapper .wpcp-single-item {
    border-left: 1px solid #D6D5D4 !important;
    /* Leitner Grey 5 */
}
.wpcp-all-captions .wpcp-post-title a:hover {
    color: inherit !important;
}


/**
 * Footer
 */
footer {
    margin-block-start: 0px !important;
}
.social-icon {
    font-size: 24px;
}
.contact-icon img {
    display: block;
}
footer .contact-link {
    font-size: 12px;
    font-weight: 700;
    line-height: 13px;
    letter-spacing: 0.11em;
}
footer .contact-link a {
    text-decoration: none;
}
footer .follow-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 13px;
    letter-spacing: 0.11em;
}
footer .is-style-logos-only {
    margin-right: 40px !important;
}
.footer-left {
    max-width: 66.67%;
}
.footer-bottom-row {
    padding-top: 50px;
}
.email-phone-col {
    min-width: 250px;
}
.footer-container {
    box-sizing: content-box !important; /* to make the max-width take up 1280px correctly */
}
@media only screen and (max-width: 781px) {
    .social-icon {
        font-size: 20px;
    }
    .footer-container {
        padding-left: 0px;
        padding-right: 0px;
    }
    .footer-right {
        display: flex;
        justify-content: start;
    }
    footer .is-style-logos-only {
        margin-right: 26px !important;
    }
    .footer-container > .wp-block-columns:nth-child(1) {
        padding-top: 60px !important;
        gap: 40px !important;
    }
    .footer-container > .wp-block-columns:nth-child(2) {
        margin-top: 20px !important;
        padding-bottom: 60px !important;
    }
    .footer-left {
        max-width: 100%;
    }
    .footer-bottom-row {
        padding-top: 30px;
    }
    .follow-label, .contact-link {
        font-size: 11px !important;
        line-height: 12px !important;
    }
    .footer-privacy-link {
        width: 100%;
    }
}
  @media only screen and (max-width: 400px) {
    .footer-right {
       flex-direction: column;
      align-items: flex-start !important;
      gap: 16px !important;
    }
}


/**
 * Academic offerings in Study page
 * This academic-offerings-cols block should also have the zigzag-img-cols class already
 */
.academic-offerings-cols > .wp-block-column.mobile-order-2:not(.img-col) {
    padding-right: 69px !important;
    padding-left: 100px !important;
    max-width: 40% !important;
}
.academic-offerings-cols > .wp-block-column:not(.img-col):not(.mobile-order-2) {
    padding-left: 69px !important;
    padding-right: 100px !important;
    max-width: 40% !important;
}
.academic-offerings-cols > .wp-block-column:not(.img-col) > h3 {
    margin-bottom: 40px !important;
}
.academic-offerings-cols > .wp-block-column:not(.img-col) > .wp-block-group {
    margin: 16px 0px 25px 0px !important;
}
.academic-offerings-cols > .wp-block-column:not(.img-col) > p + ul {
    margin-top: 36px !important;
}
@media only screen and (max-width: 1024px) {
    .academic-offerings-cols > .wp-block-column:not(.img-col).mobile-order-2 {
        padding-right: 2.5rem !important;
        padding-left: 1.5rem !important;
        max-width: initial !important;
    }
    .academic-offerings-cols > .wp-block-column:not(.img-col):not(.mobile-order-2) {
        padding-left: 2.5rem !important;
        padding-right: 1.5rem !important;
        max-width: initial !important;
    }
}
@media only screen and (max-width: 781px) {
    .academic-offerings-cols > .wp-block-column:not(.img-col).mobile-order-2 {
        padding-right: 1.5rem !important;
    }
    .academic-offerings-cols > .wp-block-column:not(.img-col):not(.mobile-order-2) {
        padding-left: 1.5rem !important;
    }
    .academic-offerings-cols > .wp-block-column:not(.img-col) > h3 {
        margin-bottom: 24px !important;
    }
    .academic-offerings-cols > .wp-block-column:not(.img-col) > .wp-block-group {
        margin: 24px 0px !important;
    }
    .academic-offerings-cols > .wp-block-column:not(.img-col) > p + ul {
        margin-top: 24px !important;
    }
}


/**
 * Content
 */
.vid-player {
    width: 100%;
}
.link-list {
    padding-left: 14px;
    width: 100%;
}
.link-list li::marker {
    color: #369FFF;
    border-bottom: 1px solid #369FFF;
}
.link-list li {
    position: relative;
    border-bottom: none !important;
    padding-left: 1rem;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.link-list li::after {
    content: "";
    width: calc(100% + 16px);
    position: absolute;
    bottom: 0px;
    left: -16px;
    height: 1px;
    background-color: #A1C7F7;
}
.link-list li a {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #272930;
    text-decoration: none;
}
@media only screen and (max-width: 781px) {
    .link-list li a {
        font-size: 16px;
        line-height: 22px;
    }
}


/**
 * Content-sidebar pattern
 */
.content-sidebar-cols .anchor-link a {
    text-decoration: none;
    color: #146DE1;
}
.content-sidebar-cols .anchor-link a:hover {
    text-decoration: underline;
}
.content-sidebar-cols > .sidebar-container p:first-child {
    margin-bottom: 30px;
}
.content-sidebar-cols .anchor-link:not(:first-child) {
    margin-top: 12px;
}
.content-sidebar-cols > .wp-block-column:nth-child(1) {
    padding-left: 0px;
}
@media only screen and (max-width: 781px) {
    .content-sidebar-cols > .wp-block-column:nth-child(1) {
        padding-left: 0px;
        order: 2;
    }
    .content-sidebar-cols > .wp-block-column:nth-child(2) {
        order: 1;
        border-bottom: 1px solid var(--wp--preset--color--custom-leitner-grey-5);
        border-left: none !important;
        padding-bottom: var(--wp--preset--spacing--30);
    }
    .content-sidebar-cols .anchor-link:not(:first-child) {
        margin-top: 8px;
    }
    .content-sidebar-cols > .sidebar-container {
        padding-left: 0px !important;
    }
    .content-sidebar-cols > .sidebar-container p:first-child {
        margin-bottom: 24px;
    }
    .reverse-cols > .wp-block-column:nth-child(1) {
        order: 1;
    }
    .reverse-cols > .wp-block-column:nth-child(2) {
        order: 2;
        border-left: 1px solid var(--wp--preset--color--custom-leitner-grey-5) !important;
        padding-left: 24px !important;
        border-bottom: none !important;
    }
}
.clinic-details-container {
    margin-top: 100px;
}
@media only screen and (max-width: 781px) {
    .clinic-details-container {
        margin-top: 60px;
    }
}
.related-col {
    display: flex;
    align-items: flex-end;
}
.content-sidebar-cols > .wp-block-column.related-col .sidebar-bottom-content {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
@media only screen and (max-width: 781px) {
    .content-sidebar-cols > .wp-block-column.related-col {
        padding-bottom: 0px !important;
        margin-top:  24px;
        border-left: 1px solid #d6d5d4 !important;
        border-bottom: 0px !important;
    }
    .content-sidebar-cols > .wp-block-column.related-col .sidebar-bottom-content {
        padding-bottom: 0px !important;
    }
}


/* Listing page carousel */
.meet-team-row a {
    text-decoration: none;
}
.meet-team-row {
    margin-top: -30px !important;
    justify-content: flex-end;
}
@media only screen and (max-width: 781px) {
    .meet-team-row {
        margin-top: 16px !important;
        justify-content: center;
    }
}
.testimonial-quote {
    margin-bottom: -50px;
}
.meet-team-carousel-wrapper {
    padding: 100px;
}
.meet-team-carousel-wrapper .wpcpro-wrapper .wpcp-post-carousel .wpcp-single-item .wpcp-all-captions {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.meet-team-carousel-wrapper .wpcpro-wrapper .wpcp-post-carousel .wpcp-single-item .wpcp-all-captions .wp-block-columns {
    margin-top: 0px !important;
    gap: 0px !important;
}
.meet-team-carousel-wrapper .wpcpro-wrapper .wpcp-post-carousel .wpcp-all-captions .wpcp-post-content p {
    margin-bottom: 0px;
}
.meet-team-carousel-wrapper .wp-block-group > .wp-block-columns > .wp-block-column.is-vertically-aligned-top {
    padding-top: 86px !important;
    flex-basis: 130px !important;
}
.meet-team-carousel-wrapper .wp-block-group > .wp-block-columns > .wp-block-column.is-vertically-aligned-top > figure {
    text-align: left;
}
.meet-team-carousel-wrapper .wp-block-group > .wp-block-columns > .wp-block-column.is-vertically-aligned-top > figure > img {
    width: 100px !important;
    height: 100px !important;
    margin-right: 30px !important;
}
.meet-team-carousel-wrapper .wp-block-columns .wp-block-column:not(.is-vertically-aligned-top) .wp-block-columns > .wp-block-column.is-vertically-aligned-top {
    flex-basis: 40px !important;
}
.meet-team-carousel-wrapper .wp-block-columns .wp-block-column:not(.is-vertically-aligned-top) .wp-block-columns figure {
    margin-top: -16px !important;
}
.meet-team-carousel-wrapper .faculty-separator {
    margin-top: 30px !important;
    margin-bottom: 44px !important;
    width: 90%;
}
.wpcpro-wrapper .wpcp-post-carousel .wpcp-all-captions .wpcp-post-content p {
    max-width: 400px;
}
@media only screen and (max-width: 781px) {
    .meet-team-carousel-wrapper {
        padding: 60px 24px 30px 24px;
    }
    .meet-team-carousel-wrapper .faculty-separator {
        padding-left: 0px !important;
        padding-right: 0px !important;
        width: 100% !important;
        margin-top: 24px !important;
        margin-bottom: 0px !important;
    }
    .meet-team-carousel-wrapper .wpcp-single-content {
        padding: 0px !important;
    }
    .meet-team-carousel-wrapper .wp-block-group > .wp-block-columns > .wp-block-column.is-vertically-aligned-top {
        padding-top: 40px !important;
    }
}


/* Projects carousel */

.project-carousel-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.project-card-content {
    height: 100%;
    padding: 30px !important;
    display: flex;
    flex-direction: column;
}

.project-carousel-container .wpcp-mix-content img {
    object-fit: cover;
    width: 100%;
    min-height: 220px;
}

@media only screen and (max-width: 781px) {
    .project-carousel-container .wpcp-mix-content img {
        min-height: 150px;
    }
    .project-section-title {
        margin-bottom: 0 !important;
    }
}

.project-carousel-card .project-location {
    color: #806FE2;
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.11em;
    text-align: left;
    margin-bottom: 16px !important;
}

.project-carousel-card .project-title {
    color: #272930;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 16px !important;
}

.project-carousel-card .project-description {
    color: #53545A;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 16px !important;
}

.project-carousel-card .partnership-container {
    margin-top: auto !important;
}

.project-carousel-card .partnership-title {
    color: #7E7F83;
    font-size: 13px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.11em;
    text-align: left;
    margin-bottom: 8px !important;
}

.project-carousel-card .partners, .project-carousel-card .partners a {
    color: #272930;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
}

.wpcp-single-content {
    height: 100%;
}

.wpcp-mix-content {
    display: flex !important;
    flex-direction: column;
}

/**
 * Home content styles
 */
.home-intro {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}
.home-intro a {
    text-decoration: none;
}
@media only screen and (max-width: 781px) {
    .home-intro {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }
    .home-intro > .wp-block-columns {
        gap: 60px !important;
    }
    .home-intro > .wp-block-columns > .wp-block-column:first-child .wp-block-group {
        gap: 14px !important;
    }
    .home-intro > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-group {
        gap: 28px !important;
        font-size: 14px !important;
    }
}
/* org stats */
.org-stats > .subtitle-2 {
    margin-bottom: 72px;
}
.org-stats h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
}


/**
 * Simple Images Carousel (on Study/Advocacy pages)
 */
.carousel-wrapper {
    margin-top: 100px;
    margin-bottom: 80px;
}
@media only screen and (max-width: 781px) {
    .carousel-wrapper {
        margin-top: 40px;
        margin-bottom: 60px;
    }
    .wpcp-ticker {
        margin-right: 12px !important;
    }
}

/* Apply now section */
.apply-section-container {
    padding-top: 110px;
    padding-bottom: 110px;
}

@media only screen and (max-width: 781px) {
    .apply-section-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/**
 * Zigzag image columns
 */
.zigzag-img-cols {
    gap: 32px !important;
}
.zigzag-img-cols .content-col {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
}
.zigzag-img-cols .img-col {
    padding: 0px !important;
}
.zigzag-img-cols .img-col.mobile-order-1 img {
    border-radius: 5px 0px 0px 5px;
}
.zigzag-img-cols .img-col:not(.mobile-order-1) img {
    border-radius: 0px 5px 5px 0px;
}
@media only screen and (max-width: 781px) {
    .zigzag-img-cols {
        gap: 1.5rem !important;
        margin-bottom: 60px !important;
        padding: 24px !important
    }
    .zigzag-img-cols .img-col {
        padding: 0px !important;
    }
    .zigzag-img-cols .wp-block-column:not(.img-col) > .wp-block-group {
        padding: 0px !important;
        gap: 24px !important;
    }
    .zigzag-img-cols .wp-block-column:not(.img-col) h3 {
        font-size: 24px;
    }
    .zigzag-img-cols .img-col img {
        border-radius: 5px !important;
    }
}


/**
 * Page separator
 */
.page-separator {
    margin: 100px 0px;
}
@media only screen and (max-width: 781px) {
    .page-separator {
        margin: 60px 0px;
    }
}
.section-separator {
    width: 100%;
    border-color: #d6d5d4;
}

.intro-separator {
    width: 120%;
    border-color: #d6d5d4;
}
@media only screen and (max-width: 781px) {
    .intro-separator {
        width: 100%;
    }
}


/**
 * Partners Gallery (on Advocacy)
 */
.partners-gallery p:nth-child(2) {
    margin: 50px 0px;
}
@media only screen and (max-width: 781px) {
    .partners-gallery p:nth-child(2) {
        margin: 24px 0px;
    }
}


/**
 * Home organisation stats
 */
.org-stats {
    position: relative;
}
.org-stats > .wp-block-columns > .wp-block-column:nth-child(1) {
    margin-right: 300px;
}
@media only screen and (max-width: 1024px) {
    .org-stats > .wp-block-columns > .wp-block-column:nth-child(1) {
        margin-right: initial;
    }
}
.org-stats figure {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 293px;
}
.org-stats > .wp-block-columns {
    border-radius: 5px;
    padding: 73px 53px 89px 53px;
}
.org-stats > .wp-block-columns h3 + p {
    margin-block-start: 8px !important;
}
@media only screen and (max-width: 1024px) {
    .org-stats > .wp-block-columns {
        margin-top: 280px;
    }
}
@media only screen and (max-width: 781px) {
    /* raise css rule specificity to override default margins defined elsewhere */
    .org-stats.wp-block-group > .wp-block-columns.alignwide {
        font-size: 14px;
        padding: 60px 14px;
        margin-left: -14px !important;
        margin-right: -14px !important;
    }
    .org-stats > .wp-block-columns {
        padding-left: 24px;
        padding-right: 24px;
    }
}


/**
 * Home core streams
 */
.home-core-streams .wp-block-column > .wp-block-group {
    padding: 42px 30px 30px 30px;
    border: 1px solid #D6D5D4;
    border-radius: 5px;
    gap: 8px;
}
.home-core-streams .wp-block-column > .wp-block-group p {
    font-size: 16px;
}
.home-core-streams .wp-block-column > figure {
    margin-bottom: -40px;
}
.home-core-streams .wp-block-columns.home-core-streams-2nd-row {
    margin-top: 40px;
    justify-content: center;
}
.home-core-streams .subtitle-1 {
    margin-bottom: 53px;
}
.home-core-streams .wp-block-buttons {
    margin-top: 60px;
}
.home-core-streams .wp-block-columns {
    gap: 20px;
}
@media only screen and (max-width: 781px) {
    .home-core-streams .wp-block-column > .wp-block-group {
        padding: 38px 24px 32px 24px;
    }
    .home-core-streams .wp-block-column > .wp-block-group p {
        font-size: 14px;
    }
    .home-core-streams .wp-block-column > figure > img {
        width: 136px !important;
        height: 136px !important;
    }
    .home-core-streams .wp-block-columns.home-core-streams-2nd-row {
        margin-top: 30px;
    }
    .home-core-streams .subtitle-1 {
        margin-bottom: 40px;
    }
    .home-core-streams .wp-block-buttons {
        margin-top: 30px;
    }
    .home-core-streams .wp-block-columns {
        gap: 30px;
    }
}


/**
 * Home clinics
 */
.home-clinics > h2 {
    margin-bottom: 46px;
}
.home-clinics > p {
    max-width: 717px !important;
    margin-bottom: 56px;
}
.home-clinics > .wpcp-carousel-wrapper {
    margin-bottom: 60px;
}
.home-clinics > .wpcp-carousel-wrapper .swiper-slide img {
    object-fit: cover;
}
@media only screen and (max-width: 781px) {
    .home-clinics > h2 {
        margin-bottom: 28px;
    }
    .home-clinics > p {
        margin-bottom: 42px;
    }
    .home-clinics > .wpcp-carousel-wrapper {
        margin-bottom: 32px;
    }
}


/**
 * Events styles used in both Home and events page
 */
.events-container {
    position: relative;
}
.events-container p {
    margin: 0px;
}
.events-container .past-event-box {
    border: 1px solid #9F92F3;
    border-radius: 5px;
}
.events-container ul.wp-block-post-template {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 20px;
}
.events-container ul.wp-block-post-template li {
    margin-block-start: 0px;
}
.events-container ul.wp-block-post-template .wpcp-single-content {
    box-sizing: border-box;
    min-height: 260px;
}
.events-container ul.wp-block-post-template .wpcp-single-content .event-meta .left-col .day {
    color: #806FE2;
}
.events-container .wpcp-single-content {
    padding: 24px 30px 32px 30px;
    background-color: white;
    width: 100%;
}
.events-container .wpcp-single-content a {
    text-decoration: none;
    color: #272930;
}
.events-container .heading-row {
    margin-bottom: 58px !important;
}
.events-container .widget_wpc_filters_widget {
    margin-top: 80px;
    margin-bottom: 40px;
}
.events-container .widget_wpc_filters_widget .wpc-filters-widget-wrapper {
    gap: 0px;
}
.events-container .wpcp-single-content .event-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.events-container .wpcp-single-content .event-meta .left-col .month {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}
.events-container .wpcp-single-content .event-meta .left-col .day {
    color: #7B6CDB;
    font-size: 30px;
    font-weight: 600;
    line-height: 33px;
}
.events-container .wpcp-single-content .event-meta .right-col {
    text-align: right;
}
.events-container .wpcp-single-content .event-meta .right-col .time {
    font-size: 13px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.11em;
    color: #7E7F83;
}
.events-container .wpcp-single-content .event-meta .right-col .type {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: #7E7F83;
}
.events-container .wpcp-single-content .event-desc {
    text-align: left;
    font-weight: 600;
}
.events-container ul.wp-block-post-template .wpcp-single-content {
    cursor: pointer;
}
.events-container .wpcp-single-content .event-meta .left-col .month, .home-latest-news .wpcp-single-content .news-meta .category,
.home-publications .wpcp-single-content .meta-info .category, .home-publications .wpcp-single-content .bottom-bar .month,
.events-container .wpcp-single-content .event-meta .right-col .time {
    text-transform: uppercase;
}
.see-all-events > p {
    white-space: nowrap;
}

.see-all-events > figure {
    min-width: 20px;
}
@media only screen and (max-width: 781px) {
    .events-container .wpcp-single-content {
        padding: 24px 24px 32px 24px;
    }
    .events-container .heading-row {
        margin-bottom: 40px !important;
    }
    .events-container ul.wp-block-post-template {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .events-container .widget_wpc_filters_widget {
        margin-top: 24px;
        margin-bottom: 24px;
    }
    .events-container ul.wp-block-post-template .wpcp-single-content {
        min-height: 200px;
    }
    .events-container .wpcp-single-content .event-meta .left-col .month {
        font-size: 14px;
        line-height: 21px;
    }
    .events-container .wpcp-single-content .event-meta .left-col .day {
        font-size: 24px;
        line-height: 32px;
    }
    .events-container .wpcp-single-content .event-meta .right-col .time {
        font-size: 12px;
        line-height: 13px;
    }
    .events-container .wpcp-single-content .event-meta .right-col .type {
        font-size: 13px;
        line-height: 20px;
    }
    .events-container .wpcp-single-content .event-desc {
        font-size: 14px;
    }
}


/**
 * General fixes for carousels
 */
.wpcpro-wrapper .wpcp-post-carousel .wpcp-single-item .wpcp-slide-image a {
    height: 100% !important;
}
.wpcpro-wrapper .wpcp-post-carousel .wpcp-single-item .wpcp-slide-image a img {
    height: 100% !important;
    object-fit: cover;
}
.wpcpro-wrapper .wpcp-post-carousel .swiper-slide {
    height: auto !important;
}
.wpcpro-wrapper .wpcp-post-carousel .swiper-slide > .wpcp-single-item {
    display: inline-flex;
    flex-direction: column;
    height: 100% !important;
}
.wpcpro-wrapper .wpcp-post-carousel .swiper-slide > .wpcp-single-item > .wpcp-all-captions {
    padding: 0px !important;
    flex: 1;
}
.wpcpro-wrapper .wpcp-image-carousel .wpcp-ticker > .wpcp-single-item > .wpcp-slide-image > img {
    height: 200px !important; /* set a specific height to avoid scaling issues(various image heights in mobile vs desktop) */
}
@media screen and (max-width: 480px) {
    .wpcpro-wrapper .wpcp-image-carousel .wpcp-ticker > .wpcp-single-item > .wpcp-slide-image > img {
        max-height: initial !important;
    }
}


/* Profile cards */
.profile-card {
    gap: 0px;
  }

  .profile-card-image {
    width: 100%;
    margin-bottom: 15px !important;
  }

  .profile-card-image img {
    width: 100%;
  }

  .profile-card-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 0px;
  }
  .profile-card-name > a {
      text-decoration: none;
  }

  .profile-card-titles {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 15px!important;
  }

  .profile-4-columns {
    gap: 20px;
  }

  .profile-2-columns {
    gap: 20px;
  }

  .profile-card-socials li a {
    display: flex;
    justify-content: center;
    font-size: 16px;
    padding: 0 !important;
    width: 24px;
    height: 24px;
  }

  .standalone-breadcrumb {
    padding-left: 100px !important;
  }
  /* can probably replace the one above with this */
  .standalone-breadcrumbs {
    max-width: var(--wp--style--global--wide-size);
    margin-left: auto;
    margin-right: auto;
    padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
  }

  .nav-bar-only {
    margin-left: 100px;
    margin-right: 100px;
    box-shadow: 4px 4px 20px 0px #00000026;

  }

  .profiles-container {
    gap: 20px;
  }

  .faculty-container {
    padding-bottom: 100px;
  }

  @media (max-width: 781px) {
    .standalone-breadcrumb {
      padding-left: 24px !important;
    }
    .profile-card-image {
      margin-bottom: 12px !important;
    }
    .profile-card-name {
      font-size: 16px;
      line-height: 22px;
    }
    .profile-card-titles {
      font-size: 12px;
      line-height: 18px;
    }
    .profile-2-columns {
      gap: 16px;
    }
    .profile-4-columns {
      gap: 40px;
    }
    .profiles-container {
      padding-left: 0;
      gap: 40px;
    }
    .faculty-container {
      padding-bottom: 60px;
    }
    .profile-rel-links {
        padding-left: 24px !important;
    }
  }

/* slideshow */
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_slide figure {
    flex-direction: column;
}

.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_caption.gallery-caption {
    font-size: 12px;
    font-weight: 400;
    color: #7E7F83;
    background: none;
    position: relative;
}

.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-custom {
    display: none;
}

.slideshow-container {
  width: 100%;
}

/* quote style */
.single-quote {
  width: 115%;
  gap: 20px;
}

.single-quote .wp-block-column {
  flex-basis: fit-content !important;
}

.quote-mark {
  padding-left: 20px;
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
}

.quote-text {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  padding-top: 8px;
  padding-bottom: 32px;
}

.quote-author {
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
  padding-bottom: 8px;
  letter-spacing: 0.11em;
}

.quote-author-title {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 21px;
}

@media only screen and (max-width: 781px) {
  .single-quote {
    width: 100%;
    gap: 16px;
  }
  .quote-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    padding-top: 0;
    padding-bottom: 20px;
  }
  .quote-author {
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
    padding-bottom: 8px;
    letter-spacing: 0.11em;
  }

  .quote-author-title {
    font-size: 12px;
    line-height: 12.72px;
  }
}

/* profile page */
.profile-page-titles {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 25px;
    color: #101828;
  }

.profile-sidebar-details a {
    font-weight: 600
}

@media only screen and (max-width: 781px) {
    .profile-page-columns {
      padding-left: 24px;
    }
    .profile-sidebar-details  {
        border-left: 1px solid var(--wp--preset--color--custom-leitner-grey-5);
        padding-left: 24px !important;
    }
}

/* Alumni card */
.alumni-card {
    gap: 30px;
}

.alumni-title a {
    text-decoration: none;
}

.alumni-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
}

.alumni-subtitle {
    font-size: 13px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.11em;
}

.alumni-graduation-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    margin-top: 14px;
}

@media (max-width: 781px) {
    .alumni-card {
        gap: 24px;
    }
    .alumni-description {
        font-size: 14px;
        line-height: 21px;
        margin-top: 12px;
    }
    .alumni-subtitle {
        font-size: 12px;
        line-height: 13px;
    }
    .alumni-graduation-text {
        font-size: 13px;
        line-height: 20px;
        margin-top: 12px;
    }
}

/* Map tabs: NOTE: These styles use IDs, which means if the tab component has a new id these styles need to be updated */
.tab-map {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.map-row {
    display: flex;
    padding-left: var(--wp--style--root--padding-left) !important;
    padding-right: var(--wp--style--root--padding-right) !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.map-row figure {
    margin: 0;
}

.map-data-point {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 6px;
    padding-right: 6px;
}

.map-data-point p {
    padding-left: 12px !important;
}

.map-data-point figure {
    min-width: 25px;
}

@media only screen and (max-width: 781px) {
    .map-row {
        flex-direction: column;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .map-data-point {
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 0;
    }
}

.our-mission-map-container .sp-tab__default-accordion .sp-tab__tab-content .sp-tab__tab-pane {
    border: none !important;
}

.our-mission-map-container .sp-tab__default-accordion .sp-tab__card-body {
    border: none !important;
    padding: 0;
}

.our-mission-map-container .sp-tab__nav-tabs .sp-tab__nav-link {
    border: 1px solid #D0D5DD !important;
    border-radius: 5px;
    padding: 10px 16px !important;
    height: auto;
}

.our-mission-map-container .sp-tab__nav-tabs .sp-tab__nav-link > h4 {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 22px;
}

.our-mission-map-container .sp-tab__nav-tabs .sp-tab__nav-item.show .sp-tab__nav-link, .our-mission-map-container .sp-tab__nav-tabs .sp-tab__nav-item .sp-tab__nav-link.sp-tab__active {
    background-color: #146DE1 !important;
}

.our-mission-map-container .sp-tab__nav-tabs .sp-tab__nav-item.show .sp-tab__nav-link, .our-mission-map-container .sp-tab__nav-tabs .sp-tab__nav-item .sp-tab__nav-link.sp-tab__active > h4 {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 22px;
    color: #FFFFFF !important;
}

.our-mission-map-container .sp-tab__lay-default ul.sp-tab__nav-tabs>li:not(:first-child) {
    margin-top: 0px !important;
}

.our-mission-map-container .sp-tab__lay-default .sp-tab__tab-content > .sp-tab__tab-pane .sp-tab__card-header {
    font-weight: 600;
    border-radius: 5px;
}

.about-card-content {
    margin-top: 32px !important;
    margin-bottom: 20px !important;
}

.about-card-arrow > a {
    text-align: left;
}

.about-card-content > h4 {
    margin-bottom: 8px;
}

@media only screen and (max-width: 781px) {
    .about-card-content {
      margin-top: 24px !important;
      margin-bottom: 16px !important;
    }
}

.learn-more-image {
    width: 100%;
}
.learn-more-image img {
    width: 100% !important;
}

@media only screen and (max-width: 781px) {
    .learn-more-block {
        padding-bottom: 40px !important;
    }
}


/**
 * Home latest news
 */
.home-latest-news .wpcp-single-item {
    padding: 30px !important;
    background-color: white !important;
    position: relative;
    display: block !important;
    text-align: right;
}
.home-latest-news .heading-row {
    margin-bottom: 60px !important;
}
.home-latest-news .wpcp-single-item .wpcp-slide-image img {
    max-width: 60%;
    min-width: initial;
}
.home-latest-news .wpcp-single-content {
    text-align: left;
}
.home-latest-news .wpcp-single-content .news-meta {
    position: absolute;
    top: 30px;
    left: 30px;
}
.home-latest-news .wpcp-single-content .news-meta .category {
    color: #146DE1;
}
.home-latest-news .wpcp-single-content .news-meta .date {
    margin-top: 8px;
    color: #7E7F83;
}
.home-latest-news .wpcp-single-content .news-desc {
    margin-top: 24px;
    text-align: left;
    font-weight: 600;
}
.home-latest-news .wpcp-single-item .wpcp-slide-image a {
    text-align: right;
}
.home-latest-news .wpcpro-wrapper .wpcp-post-carousel .wpcp-single-item .wpcp-slide-image a img {
    height: auto !important;
}
@media only screen and (max-width: 781px) {
    .home-latest-news .wpcp-single-item {
        padding: 24px !important;
    }
    .home-latest-news .wpcp-single-item img {
        max-width: 100%;
        margin-top: 50px;
    }
    .home-latest-news .heading-row {
        margin-bottom: 40px !important;
    }
    .home-latest-news .wpcp-single-content .news-meta {
        top: 24px;
        left: 24px;
    }
    .home-latest-news .wpcp-single-content .news-desc {
        font-size: 14px;
    }
}


/**
 * Home latest publications
 */
.home-publications {
    padding: 0px 32px !important;
}
.home-publications .wpcp-single-item {
    padding: 30px !important;
    background-color: white !important;
    position: relative;
    display: block !important;
    text-align: right;
}
.home-publications .heading-row {
    margin-bottom: 60px !important;
}
.home-publications .wpcp-single-item .wpcp-slide-image img {
    max-width: 40%;
    min-width: initial;
}
.home-publications .wpcp-single-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.home-publications .wpcp-single-content .meta-info {
    position: absolute;
    top: 30px;
    left: 30px;
}
.home-publications .wpcp-single-content .meta-info .category {
    color: #146DE1;
}
.home-publications .wpcp-single-content .meta-info .stream {
    margin-top: 8px;
    color: #3F85ED;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}
.home-publications .wpcp-single-content .title {
    margin-top: 24px;
    margin-bottom: 36px;
    text-align: left;
    font-weight: 600;
}
.home-publications .wpcp-single-content .bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.home-publications .wpcp-single-content .bottom-bar .month {
    color: #7E7F83;
    font-size: 13px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.11em;
}
.home-publications .wpcp-single-content .bottom-bar img {
    width: 24px;
    height: 24px;
}
.home-publications .wpcp-single-content .bottom-bar a {
    display: inline-flex;
}
.home-publications .wpcp-single-item .wpcp-slide-image a {
    text-align: right;
}
.home-publications .wpcpro-wrapper .wpcp-post-carousel .wpcp-single-item .wpcp-slide-image a img {
    height: auto !important;
}
@media only screen and (max-width: 781px) {
    .home-publications {
        padding: 0px 24px !important;
    }
    .home-publications .wpcp-single-item {
        padding: 24px !important;
    }
    .home-publications .heading-row {
        margin-bottom: 40px !important;
    }
    .home-publications .wpcp-single-content .meta-info {
        top: 24px;
        left: 24px;
    }
    .home-publications .wpcp-single-content .title {
        font-size: 14px;
    }
}


/**
 * Home support us
 */
.home-support {
    padding: 100px 0px 60px 0px !important;
}
.support-carousel-wrapper {
    margin-top: 0px !important;
    padding-bottom: 100px;
}
.support-carousel-wrapper .wpcp-carousel-wrapper {
    margin-top: 0px !important;
}
.home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(1) a {
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 3px;
}
.home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(1) .wp-block-group {
    margin-top: 40px;
}
.home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(1) h2 {
    margin-bottom: 60px;
}
.home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(1) .subtitle-3 {
    margin-bottom: 20px;
}
.home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(2) {
    padding: 46px 24px 79px 65px;
    border-radius: 5px;
}
.home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(2) h4 {
    margin-bottom: 32px;
}
.home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(2) .body-2::before {
    content: "";
    width: 33px;
    height: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    margin-bottom: 2px;
    background-color: #2EA874;
}
.home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(2) .body-2 + p {
    margin: 20px 0px 46px 0px;
}
.home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(2) img {
    width: auto;
}
@media only screen and (max-width: 781px) {
    .home-support {
        padding: 0 !important;
    }
    .home-support .site-container {
        padding: 60px 0px 40px 0px !important;
    }
    .support-carousel-wrapper {
        padding-bottom: 60px;
    }
    .home-support .site-container > .wp-block-columns {
        gap: 40px !important;
    }
    .home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(1) h2 {
        margin-bottom: 40px;
    }
    .home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(1) .wp-block-group {
        margin-top: 24px;
    }
    .home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(1) .subtitle-3 {
        margin-bottom: 16px;
    }
    .home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(2) {
        padding: 32px 24px 40px 24px;
    }
    .home-support .site-container > .wp-block-columns > .wp-block-column:nth-child(2) .body-2 + p {
        margin: 12px 0px 24px 0px;
    }
}


/**
 * events / other filters
 */
.filters-row {
    margin-bottom: 60px;
}
.filters-row .clear-all-filters {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 600;
}
.filters-row .clear-all-filters a {
    text-decoration: none;
}
.wpc-filters-widget-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}
.wpc-filters-section {
    margin-bottom: 0px !important;
}
.wpc-filters-section .wpc-filter-header {
    display: none;
}
.wpc-filters-section .wpc-filter-content.wpc-filter-event_year select {
    font-size: 24px;
}
.wpc-filters-section .wpc-filter-content select {
    width: 260px !important;
    height: 42px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #D6D5D4;
    background: url("/wp-content/uploads/2023/08/chevron-down.png") no-repeat right #ddd;
    background-size: 20px;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    background-position-x: calc(100% - 14px);
    font-family: 'Figtree';
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 0px;
}
.wpc-filters-section .wpc-filter-content select:focus{
    outline: none;
}
.wpc-edit-filter-set {
    display: none !important;
}
@media only screen and (max-width: 781px) {
    .filters-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0px !important;
        padding-bottom: 40px !important;
        margin-bottom: 40px !important;
        border-bottom: 1px solid #A1C7F7;
    }
    .filters-row .clear-all-filters {
        margin-left: 0px;
        margin-top: 16px;
    }
    .wpc-filters-widget-wrapper {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .wpc-filters-section .wpc-filter-content.wpc-filter-event_year select {
        font-size: 16px;
    }
}
/* Publication/Resource filters have 3 in a row so they need to collapse earlier */
@media only screen and (max-width: 1110px) {
    .research-filters-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0px !important;
        padding-bottom: 40px !important;
        margin-bottom: 40px !important;
        border-bottom: 1px solid #A1C7F7;
    }
    .research-filters-row .clear-all-filters {
        margin-left: 0px;
        margin-top: 16px;
    }
    .research-filters-row .wpc-filters-widget-wrapper {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .research-filters-row .wpc-filters-section .wpc-filter-content.wpc-filter-event_year select {
        font-size: 16px;
    }
}

/**
 * Events(archive page)
 */
.events-breadcrumbs {
    color: white;
    margin-top: 40px;
}
.events-breadcrumbs .home {
    color: white;
}
.archive-events-spacing {
    margin-top: 0px !important;
    padding: 70px 32px 100px 32px !important;
}
.archive-events-spacing.events-container .heading-row {
    margin-bottom: 80px !important;
}
@media only screen and (max-width: 781px) {
    .archive-events-spacing {
        padding: 40px 24px 60px 24px !important;
    }
    .archive-events-spacing.events-container .heading-row {
        margin-bottom: 40px !important;
    }
}

/* Contact us page */
.contact-left-col {
    padding-left: var(--wp--style--root--padding-left) !important;
    padding-right: var(--wp--style--root--padding-right) !important;
    display: flex;
    justify-content: center;
}

.contact-us-left-div {
    max-width: 600px;
}

.contact-box {
    height: 100%;
}

.thank-you-col {
    min-height: 100vh;
}

.thank-you-img img {
    object-fit: cover;
    height: 100% !important;
}

.newsletter-col {
    box-sizing: content-box !important;
    max-width: 480px;
    padding-left: 80px;
    padding-right: 100px;
}

.name-fields {
    display: flex;
    gap: 32px;
}

.name-fields div {
    width: 100%
}

.tnp-subscription {
    max-width: 100% !important;
    margin: 0 !important;
}

.tnp-subscription label {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 22px !important;
}

.tnp-subscription input[type=text], .tnp-subscription input[type=email] {
    background-color: #ffffff !important;
    border: 1px solid #D6D5D4 !important;
    border-radius: 5px;
    color: #146DE1 !important;
    margin-bottom: 24px !important;
}

/* From https://www.w3schools.com/howto/howto_css_placeholder.asp */
.tnp-subscription input[type=text]::placeholder, .tnp-subscription input[type=email]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #7E7F83 !important;
    opacity: 1; /* Firefox */
}

.tnp-subscription input[type=text]::-ms-input-placeholder, .tnp-subscription input[type=email]::-ms-input-placeholder { /* Microsoft Edge */
    color: #7E7F83 !important;
}

.tnp-subscription a {
    color: #272930 !important;
    text-decoration-color: #55ADFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.tnp-subscription input[type=submit] {
    font-size: 13px !important;
    font-weight: 600;
    line-height: 14px !important;
    letter-spacing: 0.11em;
    background-color: #146DE1 !important;
    width: 100% !important;
    border-radius: 50px;
    text-transform: uppercase;
    padding: 16px !important;
    margin-top: 32px !important;
    cursor: pointer;
}

.tnp-privacy-field label {
    display: flex;
}

.tnp-privacy-field label input {
    min-width: 20px;
    min-height: 20px;
    margin-righT: 12px !important;
}

@media only screen and (max-width: 781px) {
    .newsletter-col {
        padding-left: 24px;
        padding-right: 24px;
    }
    .name-fields {
        display: block;
        gap: 16px;
    }
    .tnp-subscription label {
        font-size: 14px !important;
        line-height: 21px !important;
    }
    .tnp-subscription a {
        font-size: 14px;
        line-height: 21px;
    }
    .tnp-subscription input[type=submit] {
        font-size: 13px !important;
        line-height: 14px !important;
        margin-top: 24px !important;
    }
    .tnp-subscription input[type=text], .tnp-subscription input[type=email] {
        margin-bottom: 16px !important;
    }
}

.sign-up-image {
    height: 100%
}

.sign-up-image img {
    object-fit: cover;
    height: 100% !important;
    width: 100%;
}

.contact-us-image {
    margin-top: -164px !important;
    height: calc(100% + 164px);
}

.contact-us-image img{
    object-fit: cover;
    height: 100% !important;
    width: 100%;
}

.contact-card-block {
    padding: 100px;
}

@media only screen and (max-width: 781px) {
    .contact-us-image {
        height: 100% !important;
        margin-top: 0 !important;
    }
    .contact-left-col {
        padding-top: 40px !important;
        justify-content: flex-start;
        padding-left: var(--wp--style--root--padding-left) !important;
        padding-right: var(--wp--style--root--padding-right) !important;
        order: 2;
    }
    .contact-right-col {
        order: 1;
    }
    .contact-card-block {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Search page */
.wp-block-search__input {
    font-family: Figtree;
}

.search-bar div {
    background: #ffffff;
    border: 1px solid #7CB0F3;
    border-radius: 8px;
}

.search-bar input {
    border: none;
    border-radius: 8px;
    color: #146DE1;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding-left: 32px
}

.search-bar button {
    margin: 8px;
    padding: 10px;
}

.search-post-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    margin-bottom: 12px !important;
}
.search-post-date {
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 14px !important;
    letter-spacing: 0.11em !important;
}
.search-post-excerpt {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 21px !important;
    margin-top: 16px !important;
}
.search-query > nav {
    margin-top: 0px !important;
}
@media only screen and (max-width: 781px) {
    .search-post-title {
        font-size: 14px !important;
        line-height: 21px !important;
    }
    .search-post-date {
        font-size: 12px !important;
        line-height: 13px !important;
    }
    .search-post-excerpt {
        font-size: 12px !important;
        line-height: 18px !important;
        margin-top: 8px !important;
    }
    .search-bar input {
        font-size: 16px;
        line-height: 22px;
        padding-left: 14px;
    }
}

.grey-bg {
    margin-top: -20px !important;
    padding-top: 20px !important;
}

.search-category a {
    font-size: 13px !important;
    pointer-events: none;
    text-decoration: none;
}

.search-bar {
    max-width: 925px !important;
}

.search-result-div {
    max-width: 925px !important;
}
@media (max-width: 781px) {
    .search-bar-container {
        padding-left: 24px !important;
    }
}

.amazon-btn {
    margin-inline-end: 0px!important;
}

  /* 404 */
  .not-found-cols {
    max-width: var(--wp--style--global--wide-size);
    margin-left: auto;
    margin-right: auto;
    padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
    padding-bottom: 150px !important;
    gap: 80px;
  }

  @media only screen and (max-width: 781px) {
      .not-found-cols {
          padding-left: 24px !important;
          padding-right: 24px !important;
          padding-bottom: 60px !important;
      }
      .not-found-btns {
         flex-direction: column;
      }
      .not-found-btns div {
        width: 100% !important;
      }
  }

/* privacy */

.privacy-container {
    margin-bottom: 120px !important;
}

.privacy-container p {
    max-width: 820px !important;
}

.privacy-title {
    margin-top: 70px !important;
}

@media only screen and (max-width: 781px) {
    .privacy-title {
        margin-top: 40px !important;
    }
    .privacy-container {
        margin-bottom: 60px !important;
    }
}

/**
 * Event details
 */
 .event-details-sidebar p {
    margin-top: 0px;
}
.event-details-sidebar .event-details-label {
    font-size: 16px;
    font-weight: 600;
}
.event-details-sidebar .event-details-info {
    font-size: 16px;
    margin-bottom: 30px;
}
.event-details-sidebar .event-details-info a {
    text-decoration: none;
    font-weight: 600;
}
.event-details-sidebar .event-details-register-btn {
    padding: 16px 30px;
    width: 100%;
    border-radius: 50px;
    background-color: #146DE1;
    color: white;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
    text-align: center;
}
.event-details-related-col .sidebar-bottom-content {
    padding-top: 30px;
}
@media only screen and (max-width: 781px) {
    .event-details-sidebar .event-details-label {
        font-size: 14px;
    }
    .event-details-sidebar .event-details-info {
        font-size: 14px;
        margin-bottom: 24px;
    }
    body .events-body.is-layout-constrained > .post-title-container {
        margin-bottom: 40px;
    }
    .content-sidebar-cols > .wp-block-column.event-details-sidebar {
        position: relative;
        border-left: 1px solid #d6d5d4 !important;
        padding-left: 24px !important;
        border-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    .events-body .content-sidebar-cols:not(:last-child)::after {
        order: 3;
        margin-top: 36px;
        display: block;
        content: "";
        width: 100%;
        height: 1px;
        background-color: #d6d5d4;
    }
    .past-events .heading-row {
        flex-direction: column;
    }
}


/**
 * News archive page
 */
.archive-breadcrumbs {
    color: #272930;
    margin-top: 40px;
}
.archive-breadcrumbs .home {
    color: #272930;
}
.news-container {
    padding-top: 70px !important;
}
.news-container p {
    margin: 0px;
}
.news-container h2 {
    text-align: left;
}
.news-container .news-box {
    border: 1px solid #A1C7F7;
    border-radius: 5px;
    background-color: white;
    box-sizing: border-box;
    min-height: 260px;
    padding: 30px;
    height: 100%;
}
.news-container .news-box a {
    text-decoration: none;
    color: #272930;
}
.news-container ul.wp-block-post-template {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 20px;
}
.news-container ul.wp-block-post-template li {
    margin-block-start: 0px;
}
.news-container ul.wp-block-post-template .news-box .news-meta .category {
    color: #146DE1;
    text-transform: uppercase;
}
.news-container ul.wp-block-post-template .news-box .news-meta .date {
    margin-top: 8px;
    color: #7E7F83;
}
.news-container h2 {
    margin-bottom: 60px !important;
}
.news-container .news-box .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.news-container .news-box .news-meta .left-col .month {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}
.news-container .news-box .news-meta .left-col .day {
    font-size: 30px;
    font-weight: 600;
    line-height: 33px;
}
.news-container .news-box .news-meta .right-col img {
    width: 180px;
    height: 100px;
    object-fit: cover;
}
.news-container .news-box .news-title {
    text-align: left;
    font-weight: 600;
}
.news-container ul.wp-block-post-template .news-box {
    cursor: pointer;
}
@media only screen and (max-width: 1080px) {
    .news-container ul.wp-block-post-template {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media only screen and (max-width: 781px) {
    .news-container {
        padding-top: 40px !important;
    }
    .news-container .news-box {
        padding: 24px;
    }
    .news-container h2 {
        margin-bottom: 40px !important;
    }
    .news-container ul.wp-block-post-template {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .news-container ul.wp-block-post-template .news-box {
        min-height: 200px;
    }
    .news-container .news-box .news-meta {
        flex-direction: column;
    }
    .news-container .news-box .news-title {
        font-size: 14px;
    }
}


/**
 * archive details page
 */
.archive-details-titlebox-wrapper {
    z-index: 10;
    position: relative;
    box-sizing: content-box !important;
}
.archive-details-sidebar p {
    margin-top: 0px;
}
.archive-details-sidebar .archive-details-label {
    font-size: 16px;
    font-weight: 600;
}
.archive-details-sidebar .archive-details-info {
    font-size: 16px;
    margin-bottom: 30px;
}
.archive-details-related-col .sidebar-bottom-content {
    padding-top: 30px;
}
@media only screen and (max-width: 781px) {
    .archive-details-sidebar .archive-details-label {
        font-size: 14px;
    }
    .archive-details-sidebar .archive-details-info {
        font-size: 14px;
        margin-bottom: 24px;
    }
    body .archive-details-body.is-layout-constrained > .post-title-container {
        margin-bottom: 40px;
    }
    .content-sidebar-cols > .wp-block-column.archive-details-sidebar {
        position: relative;
        border-left: 1px solid #d6d5d4 !important;
        padding-left: 24px !important;
        border-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    .archive-details-body .content-sidebar-cols:not(:last-child)::after {
        order: 3;
        margin-top: 36px;
        display: block;
        content: "";
        width: 100%;
        height: 1px;
        background-color: #d6d5d4;
    }
}


/**
 * Publication archive, also used on Resource archive
 */
.publication-container .wp-block-query,
.publication-container .wp-block-post-template li {
    margin-top: 0px;
}
.publication-container .intro-text {
    max-width: 714px !important;
    margin-left: 0px !important;
    margin: 40px 0px 70px 0px;
}
.publication-meta {
    padding: 24px 0px;
    display: grid;
    gap: 0px 24px;
    grid-template-columns: calc(42% - 24px) calc(14% - 24px) calc(11% - 24px) calc(14% - 24px) calc(14% - 24px) calc(5%);
    border-bottom: 1px solid #A1C7F7;
}
.publication-meta:not(.header-row):hover {
    background-color: #f5f4f4;
}
.publication-meta:hover .download-icon {
    display: none;
}
.publication-meta .blue-download-icon {
    display: none;
}
.publication-meta:hover .blue-download-icon {
    display: inline-block;
}
.publication-meta.header-row {
    padding-bottom: 19px;
    color: #5699F0;
    border-bottom: 2px solid #146DE1;
}
.publication-box a {
    text-decoration: none;
    color: #272930;
}
.publication-box a:focus {
    text-decoration: none !important;
}
.publication-box .publication-meta .download {
    display: flex;
}
.publication-box .publication-meta .download span {
    display: none;
    font-weight: 600;
    color: #146DE1;
}
.publication-box .publication-meta p {
    display: inline-block;
    margin: 0px;
    font-weight: 600;
}
.publication-box .publication-meta p.value {
    font-size: 14px;
}
.publication-box .publication-meta .title {
    font-size: 16px;
    display: flex;
}
.publication-box .publication-meta .title img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    display: inline-block;
    margin-right: 30px;
}
.publication-box .publication-meta p.label {
    display: none;
    color: #5699F0;
    font-size: 12px;
    line-height: 13px;
    letter-spacing: 0.11em;
}
.publication-box .publication-meta .download img {
    width: 24px;
    height: 24px;
}
@media only screen and (max-width: 781px) {
    .publication-container .intro-text {
        margin: 24px 0px 40px 0px;
        color: #53545A;
        font-size: 14px;
    }
    .publication-container .filters-row {
        margin-bottom: 0px !important;
    }
    .publication-box > a {
        pointer-events: none;
    }
    .publication-box .publication-meta .download {
        pointer-events: all;
    }
    .publication-box .publication-meta .download span {
        display: inline-block;
        margin-left: 6px;
    }
    .publication-meta.header-row {
        display: none;
    }
    .publication-meta {
        grid-template-areas:
            "a a"
            "b c"
            "d e"
            "f f";
        grid-template-columns: initial;
        gap: 1rem;
    }
    .publication-box .publication-meta .locale {
        grid-area: b;
    }
    .publication-box .publication-meta .date {
        grid-area: c;
    }
    .publication-box .publication-meta .stream {
        grid-area: d;
    }
    .publication-box .publication-meta .type {
        grid-area: e;
    }
    .publication-box .publication-meta .download {
        grid-area: f;
    }
    .publication-box .publication-meta .title img {
        width: 80px;
        height: 48px;
        margin-right: 12px;
    }
    .publication-box .publication-meta .title {
        font-size: 14px;
        grid-area: a;
    }
    .publication-box .publication-meta p.label {
        display: block;
        margin-bottom: 4px;
    }
}


/**
 * Our people and alumni carousel
 */
.our-ppl-alumni-carousel-wrapper .wpcp-all-captions {
    flex-direction: column;
    align-items: flex-start;
}
.our-ppl-alumni-carousel-wrapper .wpcp-all-captions h2 {
    padding: 32px 0px 8px 0px;
    font-size: 24px !important;
    font-weight: 600 !important;
}
.our-ppl-alumni-carousel-wrapper .wpcp-all-captions p {
    font-size: 16px !important;
    color: #53545A !important;
    margin-bottom: 20px !important;
}
.our-ppl-alumni-carousel-wrapper .wpcpro-wrapper .wpcp-carousel-section.wpcp-standard .swiper-slide {
    text-align: left;
}
@media only screen and (max-width: 781px) {
    .our-ppl-alumni-carousel-wrapper .wpcp-all-captions h2 {
        font-size: 20px !important;
    }
    .our-ppl-alumni-carousel-wrapper .wpcp-all-captions p {
        font-size: 14px !important;
        margin-bottom: 16px !important;
    }
    .our-ppl-alumni-carousel-wrapper.hide-carousel-nav-desktop .wpcp-carousel-wrapper > .wpcp-carousel-section {
        padding-bottom: 85px !important;
    }
}

/* Post carousel styles */
/* NEW */
.wpcp-all-captions {
    display: flex;
}

.wpcp-slide-image {
	/* Disabling to test - this seems to be stopped posts from being clickable */
    pointer-events: auto;
}

.wpcp-slide-image img {
    object-fit: cover;
    min-width: 100%;
	/* Setting to auto to test - was none, but this seems to be stopped posts from being clickable */
    pointer-events: auto;
}


/**
 * WP Tabs Pro elements
 * used on Home - what we do here section and Advocacy - our core streams of work section
 */
.sp-tab__lay-default {
    margin-top: 60px !important;
}
.sp-tab__lay-default .sp-tab__tab-content {
    padding: 0px !important;
}
.sp-tab__lay-default .sp-tab__tab-content .sp-tab__tab-pane {
    border: 0px !important;
    border-left: 1px solid #D6D5D4 !important; /* Leitner Grey 5 */
    padding: 0px !important;
    background-color: transparent !important;
}
.sp-tab__lay-default .sp-tab__tab-content .wp-tabs-featured-image {
    max-width: initial;
    margin-right: 0px;
    float: none;
}
.sp-tab__lay-default .sp-tab__tab-content .wp-tabs-featured-image img {
    margin-bottom: calc(3rem - 20px);
}
.sp-tab__lay-default .sp-tab__tab-content .wp-tabs-post-meta {
    display: none;
}
.sp-tab__lay-default .sp-tab__tab-content p {
    padding-left: 3rem;
}
.sp-tab__lay-default ul.sp-tab__nav-tabs {
    margin-right: 5rem !important;
    min-width: 343px;
}
.what-we-do-here .sp-tab__lay-default ul.sp-tab__nav-tabs {
    min-width: 455px;
}
.sp-tab__lay-default ul.sp-tab__nav-tabs>li {
    margin-bottom: 0px !important;
}
.sp-tab__lay-default ul.sp-tab__nav-tabs>li:not(:first-child) {
    margin-top: 30px !important;
}
.sp-tab__lay-default ul.sp-tab__nav-tabs>li>label {
    padding: 0px !important;
    padding-bottom: 30px !important;
    background-color: transparent !important;
    text-align: left !important;
    border: 0px !important;
}
.sp-tab__lay-default ul.sp-tab__nav-tabs>li>label>h4 {
    font-size: 20px !important;
    text-align: left !important;
}
.sp-tab__lay-default ul.sp-tab__nav-tabs>li.active>label,
.sp-tab__lay-default ul.sp-tab__nav-tabs>li:hover>label,
.sp-tab__lay-default ul.sp-tab__nav-tabs>li.active>label:hover {
    background-color: transparent !important;
}
.sp-tab__lay-default ul.sp-tab__nav-tabs>li>label.sp-tab__active {
    border-bottom: 1px solid #146DE1 !important;
}
.sp-tab__lay-default ul.sp-tab__nav-tabs>li>label {
    border-bottom: 1px solid #A1C7F7 !important;
}
.sp-tab__lay-default ul.sp-tab__nav-tabs>li>label.sp-tab__active>h4 {
    color: #146DE1 !important;
    font-weight: 700 !important;
}
/* Mobile styles for tabs */
@media only screen and (max-width: 1024px) {
    .sp-tab__lay-default ul.sp-tab__nav-tabs {
        margin-right: 3.5rem !important;
        min-width: initial;
    }
}
@media only screen and (max-width: 781px) {
    .sp-tab__lay-default .sp-tab__tab-content p {
        padding-left: 1rem;
    }
}
/* switcher styles */
@media only screen and (max-width: 781px) {
    .tabs-carousel-switch-group .sp-tab__lay-default {
        display: none !important;
    }
}
@media only screen and (min-width: 782px) {
    .tabs-carousel-switch-group .sp-tab__lay-default {
        display: flex !important;
    }
}


/**
 * Styling cookies notice
 */
#cookie-notice {
    background-color: #0862D4 !important;
}
#cookie-notice .cookie-notice-container {
    max-width: var(--wp--style--global--wide-size) !important;
    margin-left: auto;
    margin-right: auto;
    padding-right: var(--wp--style--root--padding-right) !important;
    padding-left: var(--wp--style--root--padding-left) !important;
    display: flex !important;
    align-items: center;
}
#cookie-notice.cookie-notice-hidden .cookie-notice-container {
    display: none !important;
}
#cookie-notice .cookie-notice-container .cn-text-container {
    flex: 1;
    text-align: left;
    margin-bottom: 0px;
}
#cookie-notice .cookie-notice-container .cn-buttons-container {
    margin-right: 1rem;
}
#cookie-notice .cookie-notice-container .cn-buttons-container a {
    background-color: #fff !important;
    color: #0862D4 !important;
    font-weight: 700;
}
#cookie-notice .cookie-notice-container .cn-close-icon {
    position: relative;
    right: initial !important;
    top: initial !important;
    margin-top: initial !important;
    opacity: 1;
}
#cookie-notice .cookie-notice-container .cn-close-icon:before,
#cookie-notice .cookie-notice-container .cn-close-icon:after {
    background-color: white !important;
}
@media (max-width: 781px) {
    #cookie-notice .cookie-notice-container {
        flex-direction: column;
        align-items: flex-start;
        padding-right: calc(var(--wp--style--root--padding-right) + 24px) !important;
    }
    #cookie-notice .cookie-notice-container .cn-buttons-container {
        margin-top: 12px;
    }
    #cookie-notice .cookie-notice-container .cn-buttons-container a:first-child {
        margin-left: 0px;
    }
    #cookie-notice .cookie-notice-container .cn-close-icon {
        position: absolute;
        right: 1rem !important;
    }
}


/**
 * Pagination styles
 */
.wp-block-query-pagination {
    gap: 1rem;
    margin-top: 80px !important;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
    color: #272930;
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    height: 30px;
    width: 30px;
    text-align: center;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers:not(:first-child) {
    margin-left: 1rem;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
    background-color: #146DE1;
    color: white;
    border-radius: 50px;
    font-weight: 700;
}
.wp-block-query-pagination .wp-block-query-pagination-next::after {
    content: url("/wp-content/uploads/2023/09/arrow-narrow-right-1.svg");
    transform: scale(0.6);
    display: block;
}
.wp-block-query-pagination .wp-block-query-pagination-previous::after {
    content: url("/wp-content/uploads/2023/09/arrow-narrow-left.svg");
    padding-top: 3px; /* to align with right arrow */
    display: block;
}
.wp-block-query-pagination .wp-block-query-pagination-next .wp-block-query-pagination-next-arrow,
.wp-block-query-pagination .wp-block-query-pagination-previous .wp-block-query-pagination-previous-arrow{
    display: none;
}
@media only screen and (max-width: 781px) {
    .wp-block-query-pagination {
        margin-top: 40px !important;
    }
    .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        height: 24px;
        width: 24px;
    }
    .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers:not(:first-child) {
        margin-left: 12px;
    }
}


/**
 * Utilities
 */
.align-items-start {
    align-items: flex-start;
}
.pos-relative {
    position: relative;
}
body .is-layout-constrained > .no-margin  {
    margin-top: 0;
}
@media only screen and (max-width: 781px) {
    /* for reordering columns in mobile screens */
    .mobile-order-1 {
        order: 1;
    }
    .mobile-order-2 {
        order: 2;
    }
}
/* used in navbar and potentially other places */
.mobile-only {
    display: none !important;
}
.desktop-only {
    display: inherit !important;
}
@media (max-width: 836px) {
    .mobile-only {
        display: inherit !important;
    }
    .desktop-only {
        display: none !important;
    }
}
/* used in last zigzag row on study page and potentially other places */
.last-component-spacing {
    margin-bottom: 100px !important;
}
@media only screen and (max-width: 781px) {
    .last-component-spacing {
        margin-bottom: 60px !important;
    }
}
/* standard spacing between sections */
.section-spacing {
    margin-top: 100px;
    margin-bottom: 100px;
}
@media only screen and (max-width: 781px) {
    .section-spacing {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}
/* supposedly section is already set to full-width in gutenberg */
.inner-section-spacing {
    margin-top: 0px !important;
    padding: 100px 32px !important;
}
@media only screen and (max-width: 781px) {
    .inner-section-spacing {
        padding: 60px 24px !important;
    }
}
.inner-section-y-spacing {
    margin-top: 0px !important;
    padding: 100px 0px 100px 0px !important;
}
@media only screen and (max-width: 781px) {
    .inner-section-y-spacing {
        padding: 60px 0px 60px 0px !important;
    }
}
/* put hide-carousel-nav-desktop to the wrapper block of the carousel to hide the navigation arrows on desktop only */
.hide-carousel-nav-desktop .wpcp-carousel-wrapper .wpcp-next-button,
.hide-carousel-nav-desktop .wpcp-carousel-wrapper .wpcp-prev-button {
    display: none !important;
}
.hide-carousel-nav-desktop .wpcp-carousel-wrapper > .wpcp-carousel-section {
    padding-bottom: 0px !important;
}
@media only screen and (max-width: 781px) {
    .hide-carousel-nav-desktop .wpcp-carousel-wrapper .wpcp-next-button,
    .hide-carousel-nav-desktop .wpcp-carousel-wrapper .wpcp-prev-button {
        display: flex !important;
    }
    .hide-carousel-nav-desktop .wpcp-carousel-wrapper > .wpcp-carousel-section {
        padding-bottom: 45px !important;
    }
}
.bg-color-sec-purple {
    background-color: #806FE2;
}
.bg-color-grey-6 {
    background-color: #f5f4f4;
}
.x-padding-zero {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
li.no-marker::marker {
    font-size: 0;
}
.swiper-container {
    padding-bottom: 30px !important;
}
.past-projects-text {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.clinic-details-container a, .profile-sidebar-details a {
    text-decoration: none;
}
.clinic-details-container a:hover, .profile-sidebar-details a:hover{
    text-decoration: underline;
}
.max-restrict-content {
    max-width: 720px !important;
}
.title-spacing {
    margin-top: 100px !important;
}
@media only screen and (max-width: 781px) {
    .mobile-full-btn div {
      width: 100% !important;
    }
    :where(.wp-block-columns.has-background) {
        padding: 24px;
    }
    .left-align-section p, .left-align-section h2, .left-align-section h4 {
        text-align: left;
    }
    .reverse-cols-v2 > .wp-block-column:nth-child(1) {
        order: 2;
    }
    .reverse-cols-v2 > .wp-block-column:nth-child(2) {
        order: 1;
    }
    .apply-now-btn div {
        width: 100% !important;
    }
    .support-leitner-content {
        padding-left: 24px;
        padding-right: 24px;
    }
    .title-spacing {
        margin-top: 60px !important;
    }
}


/**
 * Typography
 */
/* Corresponds to Figma "Leitner/Subtitle 1" */
.subtitle-1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.11em;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 80px;
}
@media only screen and (max-width: 781px) {
    .subtitle-1 {
        font-size: 16px;
        text-align: left !important;
        margin-top: 60px;
        margin-bottom: 40px;
        line-height: 17px;
    }
}
/* Leitner Subtitle 2 */
.subtitle-2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0.11em;
    text-align: center;
}
@media only screen and (max-width: 781px) {
    .subtitle-2 {
        font-size: 12px;
        line-height: 13px;
    }
}
.subtitle-3 {
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.11em;
}
@media only screen and (max-width: 781px) {
    .subtitle-3 {
      font-size: 12px;
      line-height: 13px;
    }
}

/* corresponds to "Leitner/H2" on Figma */
.title-h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    margin-top: 100px;
}
@media only screen and (max-width: 781px) {
    .title-h2 {
        font-size: 24px;
        font-weight: 600;
        line-height: 31px;
        margin-top: 60px;
        text-align: left;
    }
}
/* corresponds to "Leitner/H3" on Figma */
.title-h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
}

@media only screen and (max-width: 781px) {
    .title-h3 {
      font-size: 24px;
      line-height: 31px;
      text-align: left;
    }
}

/* corresponds to "Leitner/H4 medium" on Figma */
.title-h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
}
@media only screen and (max-width: 781px) {
    .title-h4 {
        font-size: 18px;
    }
}
/* corresponds to "Leitner/H4 semibold" on Figma */
.title-h4-semi {
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
  }
  @media only screen and (max-width: 781px) {
    .title-h4-semi {
      font-size: 20px;
      line-height: 26px;
    }
  }

/* corresponds to Leitner/H5 bold */
.title-h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
@media only screen and (max-width: 781px) {
    .title-h5 {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
    }
}
/* corresponds to Leitner/H5 semibold */
.title-h5-semi {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
  }
  @media only screen and (max-width: 781px) {
    .title-h5-semi {
      font-size: 18px;
      line-height: 24px;
    }
  }
/* corresponds to "Leitner/Body 1 regular" on Figma */
.body-1 {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}
@media only screen and (max-width: 781px) {
    .body-1 {
        font-size: 14px;
        line-height: 21px;
    }
}
/* corresponds to "Leitner/Body 1 semibold" on Figma */
.body-1-semi {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
@media only screen and (max-width: 781px) {
    .body-1-semi {
        font-size: 16px;
        line-height: 22px;
    }
}
/* corresponds to "Leitner/Body 2 regular" on Figma */
.body-2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.body-2 a {
    font-weight: 600;
}
@media only screen and (max-width: 781px) {
    .body-2 {
        font-size: 14px;
        line-height: 21px;
    }
}
/* corresponds to "Leitner/Button secondary" on Figma */
.secondary-btn {
    font-size: 13px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.11em;
}
@media only screen and (max-width: 781px) {
    .secondary-btn {
        font-size: 13px;
        line-height: 14px;
    }
}
.about-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    margin-top: 70px;
}
@media only screen and (max-width: 781px) {
    .about-title {
        font-size: 30px;
        line-height: 36px;
        margin-top: 40px;
    }
}
.caption-2 {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

/* body-3 */
.body-3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}
