/* VARIABLES */

:root {
    /* Colors: Main */
    --ascend-blue-100: #2EA3F2;
    --ascend-blue-200: #0077C8;
    --ascend-blue-300: #0A4A7A;
    --ascend-blue-400: #11354E;
    --ascend-lime: #8CBB3F;
    --ascend-white: #FFFFFF;
    --ascend-gray-200: #989898;
    --ascend-gray-300: #666666;
    --ascend-gray-500: #000000;
    --ascend-black: #000000;
    /* Colors: Ascend Brand */
    --ascend-yellow: #FFDE37;
    --ascend-orange: #F28E20;
    --ascend-navy: #0A4A7A;
    --ascend-purple: #6E398B;
    /* Box Shadow */
    --ascend-shadow-sm: 0px 0px 10px 0px rgba(17, 53, 78, 0.15);
}


/* TYPOGRAPHY */

.capitalize {
    text-transform: capitalize !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.cf-heading {
    font-family: "Bebas Neue";
    /* font-family: "Bebas Neue Pro"; */
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 116%;
}

.cf-hero-h3 {
    font-family: "Bebas Neue";
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.cf-h3 {
    font-family: "Bebas Neue";
    font-size: 39px;
    font-style: normal;
    font-weight: 600;
    line-height: 123%;
    text-transform: uppercase;
}

.cf-hero-h4 {
    font-family: "Bebas Neue";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cf-h4 {
    font-family: "Bebas Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cf-card-heading {
    /* font-family: "Bebas Neue Pro"; */
    font-family: "Bebas Neue";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 113%;
}

.text-blue {
    color: var(--ascend-blue-200);
}

.text-black {
    color: var(--ascend-black);
}

.text-white {
    color: var(--ascend-white);
}


/* LAYOUT */

.container {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}


/* BUTTONS */

.cf-button {
    cursor: pointer;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none !important;
    display: block;
    text-transform: uppercase;
    font-family: 'Bebas Neue';
    padding: 10px 30px;
}

.cf-button.btn-blue {
    background-color: var(--ascend-blue-200);
    color: var(--ascend-white) !important;
}

.cf-button.btn-white {
    background-color: var(--ascend-white);
    color: var(--ascend-black) !important;
}

.cf-button.btn-navy {
    background-color: var(--ascend-blue-400);
    color: var(--ascend-white) !important;
}

.cf-page a,
.cf-page .cf-button {
    transition: all 300ms ease;
}


/* SWIPER SLIDER */

.swiper-container {
    overflow: hidden;
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-wrapper .swiper-slide {
    height: auto !important;
}

.swiper-button-next::before,
.swiper-button-prev::before {
    color: var(--ascend-white);
    font-size: 32px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next {
    transform: translate(60px, 30px);
}

.swiper-button-prev {
    transform: translate(-60px, 30px);
}


/* Fellow slider */

.fellow-swiper-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px 50px !important;
    padding-bottom: 50px !important;
    margin-left: -50px !important;
    margin-right: -50px !important;
}

.fellow-swiper-container::after {
    z-index: 2;
    position: absolute;
    content: '';
    height: 100%;
    right: 0;
    width: 30px;
    background-color: var(--ast-global-color-4);
    top: 0;
}

.fellow-swiper-container::before {
    z-index: 2;
    position: absolute;
    content: '';
    height: 100%;
    left: 0;
    width: 30px;
    background-color: var(--ast-global-color-4);
    top: 0;
}

.fellow-swiper-button-next,
.fellow-swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44* 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.fellow-swiper-button-next::before,
.fellow-swiper-button-prev::before {
    color: var(--swiper-theme-color);
    font-size: 32px;
}

.fellow-swiper-button-next {
    transform: translate(10px, -30px);
    right: var(--swiper-navigation-sides-offset, 20px);
    left: auto;
}

.fellow-swiper-button-prev {
    transform: translate(-50px, -30px);
    left: var(--swiper-navigation-sides-offset, -20px);
    left: auto;
}

.fellow-swiper-button-prev::before,
.swiper-button-prev::before {
    content: "\f141";
    font: 400 32px / 1 dashicons;
}

.fellow-swiper-button-next::before,
.swiper-button-next::before {
    content: "\f139";
    font: 400 32px / 1 dashicons;
}


/* TAGS */

.cf-tags-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
}

.cf-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cf-tags .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 12px !important;
    text-transform: capitalize;
    color: var(--ascend-white) !important;
    text-decoration: none !important;
    background-color: var(--ascend-blue-200);
    gap: 8px;
}

.cf-tags .tag.tag-round {
    border-radius: 25px;
    padding: 8px 14px;
}

.cf-tags .tag.tag-convening {
    border-radius: 4px;
    padding: 4px 14px;
    background-color: #FFDE37;
    color: var(--ascend-black) !important;
    font-family: "Bebas Neue";
    font-size: 14px;
    text-transform: uppercase;
}

.cf-tags .tag.tag-square {
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
}

.cf-tags .tag.tag-square>span {
    font-weight: 500 !important;
}

.cf-tags .tag:hover {
    background-color: var(--ascend-blue-400);
    color: var(--ascend-white) !important;
}

.cf-tags .tag svg {
    fill: var(--ascend-white);
}

.cf-tags .tag-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--ascend-blue-200);
    transition: all 300ms;
}

.cf-tags .tag-icon:hover svg {
    fill: var(--ascend-blue-400);
}


/* TAGS ends here */


/* BACKGROUND IMAGE */

div:has(>.container__bg) {
    position: relative;
}

.container__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 102vw;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.container__bg~.container {
    position: relative;
    z-index: 2;
}

.container__bg.single-convening .single-convening-header__bg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    min-width: 60%;
    min-height: 100%;
    height: auto;
    max-width: 60vw;
}


/* PAGE HEADER  */

.site-content {
    overflow: hidden;
}

.cf-page-with-header {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.cf-page-header {
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf-page-header.cf-resources-header {
    min-height: unset;
    padding: 4rem 20px !important;
}

.cf-page-header>.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.cf-page-header .container__bg {
    background-color: var(--ascend-blue-400);
}

.cf-page-header.cf-resources-header .container__bg {
    background-color: var(--ascend-blue-200);
    background-image: url('/wp-content/themes/ascend-681/assets/img/page-header-resource-library.jpg');
}

.cf-page-header.cf-resources-header>.container {
    justify-content: center;
}

.profile-header .container__bg {
    background-size: cover;
    background-position: 0% 50%;
    left: 58%;
    width: 120vw;
}

.cf-page-header .cf-page-header__avatar {
    width: 100%;
    max-width: 320px;
    border-radius: 300px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.cf-page-header .cf-page-header__avatar.network {
    border-radius: 12px;
    max-width: 280px;
    background-color: var(--ascend-white);
}

.cf-page-header .cf-page-header__avatar>img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    margin: 0;
}

.cf-page-header .cf-page-header__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    max-width: 560px;
}

.cf-page-header .cf-page-header__text .cf-page-header__return {
    display: flex;
    align-items: center;
    font-size: 18px;
    gap: 8px;
    text-decoration: none;
}

.cf-page-header .cf-page-header__text .cf-page-header__return:hover {
    color: var(--ascend-white) !important;
    opacity: 0.8;
}

.cf-page-header__text * {
    color: var(--ascend-white) !important;
    fill: var(--ascend-white) !important;
    margin-bottom: 0 !important;
}

.cf-page-header__text a:hover {
    opacity: 0.8
}

.cf-page-header__text .title {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 116%;
}

.cf-page-header__text .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cf-page-header__text .info,
.cf-page-header__text .info p {
    font-size: 24px;
    line-height: 133%;
    font-weight: 400;
}

.cf-page-header__text .info .group a {
    font-weight: 600;
    color: var(--ascend-white) !important;
}

.cf-page-header__text .loc-and-link {
    display: flex;
}

.cf-page-header__text .org-link {
    display: flex;
    margin-left: 40px;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: var(--Ascend-Core-Blue-200, #0077C8);
    color: white;
    fill: white;
}

@media screen and (max-width: 990px) {
    .cf-page-header__text .loc-and-link {
        flex-direction: column;
    }

    .cf-page-header__text .org-link { 
        margin-left: 0;
        margin-top: 20px; 
    }  
}

@media screen and (max-width: 768px) {
    .cf-page-header__text .loc-and-link {
        align-items: center;
    }
}


.cf-page-header__text .location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--ascend-white);
}

.cf-page-header__text .info .location svg {
    fill: var(--ascend-white);
}

.cf-page-header__img {
    width: 100%;
    max-width: 420px !important;
    border-radius: 12px;
    overflow: hidden;
    /* aspect-ratio: 1/1; */
}

.cf-page-header__img img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.container__bg.single-convening img {
    object-fit: cover;
}

@media (max-width: 1024px) {
    .cf-page-header__avatar {
        max-width: 280px !important;
    }
    .cf-page-header__img {
        max-width: 360px !important;
    }
    .cf-page-header .cf-page-header__text h1,
    .cf-page-header__text .title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .cf-page-header .cf-page-header__avatar.mobile-hidden {
        display: none;
    }
    .cf-page-header .cf-page-header__text {
        max-width: 100%;
        width: 100%;
        align-items: center;
    }
    .cf-page-header .cf-page-header__text * {
        text-align: center;
    }
    .cf-page-header .cf-page-header__avatar {
        margin: 0 auto;
    }
    .cf-page-header .cf-page-header__text h1,
    .cf-page-header__text .title {
        font-size: 52px !important;
        text-align: center;
    }
    .cf-page-header__text .info,
    .cf-page-header__text .info p {
        font-size: 20px;
    }
    .cf-page-header__img.mobile-hidden {
        display: none;
    }
    .container__bg.single-convening img {
        display: none;
    }
}

@media (max-width: 499px) {
    .cf-page-header__avatar.desktop-hidden {
        max-width: 240px !important;
    }
    .cf-page-header .cf-page-header__text h1,
    .cf-page-header__text .title {
        font-size: 42px !important;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .cf-page-header .cf-page-header__avatar.desktop-hidden {
        display: none;
    }
    .cf-page-header__img.desktop-hidden {
        display: none;
    }
}


/* PAGE MAIN CONTENT */

.cf-page-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding: 75px 0;
}

.cf-page-content .cf-page-content__sidebar {
    max-width: 379px;
    width: 100%;
}

@media (max-width: 1024px) {
    .cf-page-content .cf-page-content__sidebar {
        max-width: 30%;
    }
}

@media (max-width: 768px) {
    .container.cf-page-content {
        flex-direction: column;
    }
    .container.cf-page-content>div {
        max-width: 100%;
    }
}

.cf-page-content .cf-page-content__sidebar>div {
    width: 100%;
    display: flex;
    padding: 25px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 4px;
    box-shadow: var(--ascend-shadow-sm);
}

.cf-page-content .cf-page-content__sidebar .cf-sidebar-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cf-org-info {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none !important;
}

.cf-org-info .org-logo {
    width: 46px;
    height: 46px;
    border-radius: 46px;
    background-color: var(--ascend-gray-200);
    overflow: hidden;
    flex-shrink: 0;
}

.cf-org-info .org-logo img {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
}

.cf-org-info .org-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 138%;
}

.cf-org-info .org-title a {
    color: var(--ascend-black) !important;
    text-decoration: none !important;
}

.cf-more-info {
    font-size: 16px;
}

.cf-page-content .cf-page-content__content {
    width: 100%;
    /* max-width: 690px; */
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: var(--ascend-black);
    display: flex;
    flex-direction: column;
}


/* MEDIA MENTION */

.cf-media-mention {
    padding: 50px 0 100px 0;
    width: 100%;
    position: relative;
}

.cf-media-mention .container__bg {
    background-color: #FAFAFA;
}

.cf-media-mention .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cf-media-mention__box {
    display: flex;
    width: 100%;
    padding: 25px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border-radius: 24px;
    box-shadow: var(--ascend-shadow-sm);
}

.cf-media-mention__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
    max-width: 465px;
    width: 100%;
}

.cf-media-mention__left .texts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cf-media-mention__left .texts .description {
    color: var(--ascend-gray-300);
}

.cf-media-mention__right {
    aspect-ratio: 1/1;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    flex-shrink: 0;
    border-radius: 12px;
    background-color: var(--ascend-gray-200) !important;
}

.cf-media-mention__right img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .cf-media-mention__box {
        flex-direction: column;
    }
}


/* POST LIST */

.cf-post-list {
    padding: 50px 0 120px 0;
    position: relative;
}

.cf-post-list.no-pagination {
    padding: 50px 0 50px 0;
    position: relative;
}

.cf-post-list__wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cf-post-list .cf-post-list__wrapper .title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cf-post-list__wrapper .title-box>.cf-hero-h3 {
    flex-grow: 1;
}

.cf-post-list__wrapper .title-box>a {
    flex-shrink: 0;
}

.cf-post-list__item {
    padding: 16px;
    border-radius: 24px;
    background-color: var(--ascend-white);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cf-post-list__item .bookmark {
    position: absolute;
    top: -8px;
    left: -8px;
    z-index: 2;
}

.cf-post-list__item .bookmark svg {
    z-index: 3;
    position: absolute;
    top: 8px;
    left: 8px;
}

.cf-post-list__item .cf-post-list__item-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
    height: 100%;
}

.cf-post-list__item-inner .featured-img {
    aspect-ratio: 4/3;
    border-radius: 24px;
    background-color: var(--ascend-gray-200);
    overflow: hidden;
    flex-shrink: 0;
    transition: all 350ms ease;
}

.cf-post-list__item-inner .featured-img img {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    transition: all 350ms ease;
    height: 100%;
}

.cf-post-list__item.cf-resources-item .cf-post-list__item-inner .featured-img iframe {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    transition: all 350ms ease;
    height: 100%;
    max-height: 100%;
}

.cf-post-list__item:hover .featured-img {
    box-sizing: border-box;
    border: 8px solid var(--ascend-lime);
    /* transform: scale(calc(100% + 4px)); */
}

.cf-post-list__item:hover .featured-img img {
    transform: scale(calc(100%-16px));
}

.cf-post-list__item-inner .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.cf-post-list__item-inner .content .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cf-post-list__item-inner .content .meta span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.07px;
    color: var(--ascend-gray-300);
}

.cf-post-list__item .content .link {
    color: var(--Ascend-Core-Blue-100, #2EA3F2);
    font-family: "Bebas Neue" !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 350ms ease;
}

.cf-post-list__item:hover .link,
.cf-post-list__item:focus .link {
    color: var(--ascend-blue-300);
}

.cf-post-list__item .content .title {
    flex-grow: 1;
    color: var(--ascend-black);
    text-decoration: none !important;
}

.cf-post-list__item {
    text-decoration: none !important;
}

.cf-post-list .swiper-pagination {
    top: calc(100% + 30px) !important;
}

.cf-post-list .swiper-pagination-bullet {
    background-color: var(--ascend-white);
}


/* FELLOWS GRID */

.cf-fellows-list .container {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cf-fellows-list__item {
    height: 100%;
    display: flex;
    text-decoration: none !important;
}

.facetwp-template .cf-fellows-list__item {
    height: unset;
}

.cf-fellows-list__item-inner {
    display: flex;
    width: 100%;
    min-height: 448px;
    height: 100%;
    padding: 14px 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--ascend-white);
    box-shadow: var(--ascend-shadow-sm);
}

.cf-fellows-list__item .featured-img {
    max-width: 70vw;
    width: 208px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    border-radius: 200px;
    border: 8px solid #F0F0F0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 350ms ease;
}

.cf-fellows-list__item:hover .featured-img {
    border: 8px solid var(--ascend-lime);
}

.cf-fellows-list__item .featured-img img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.cf-fellows-list__item .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.cf-fellows-list__item .title {
    text-align: center;
    text-decoration: none !important;
}

.cf-fellows-list__item .location {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06px;
    text-decoration: none !important;
}

.cf-fellows-list__item .location svg {
    fill: var(--ascend-lime);
    width: 44px;
    height: auto;
}

.cf-fellows-list__item .organization {
    color: var(--ascend-blue-200);
    text-align: center;
    text-overflow: ellipsis;
    font-family: 'Avenir Next', 'Avenir', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 128%;
    letter-spacing: 0.07px;
    text-align: center;
    text-decoration: none !important;
}

.cf-fellows-list__item .job-title {
    text-align: center;
    text-overflow: ellipsis;
    font-family: 'Avenir Next', 'Avenir', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 133%;
    letter-spacing: 0.06px;
    color: var(--ascend-gray-500);
    text-align: center;
    text-decoration: none !important;
}

.cf-fellows-list .swiper-pagination {
    /* top: 30px !important; */
    bottom: unset !important;
    padding-top: 16px;
    /* display: none; */
}


/* CONVENING / EVENT */

.cf-page-header {
    position: relative;
}

.cf-page-header .convening-overlay {
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    top: 0;
    left: 50%;
    height: 100%;
    position: absolute;
    width: calc(100vw + 140px);
    transform: translateX(-50%);
    z-index: 2;
    overflow: hidden;
}

.cf-page-header .convening-overlay img {
    min-height: 100%;
    width: 70%;
    position: absolute;
    top: 0;
    left: 0;
}

.cf-page-content__sidebar .subgroup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.speakers.speakers__wrapper {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cf-page-content__sidebar .speakers .cf-speaker-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cf-page-content__sidebar .speakers .cf-speaker-info .speaker-logo {
    width: 45px;
    height: 45px;
    border-radius: 40px !important;
    overflow: hidden;
    flex-shrink: 0;
}

.cf-page-content__sidebar .speakers .cf-speaker-info .speaker-logo img {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

.cf-page-content__sidebar .speakers .speaker-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    font-size: 14px;
    font-style: normal;
}

.cf-page-content__sidebar .speakers .cf-speaker-info {
    margin: 0;
    line-height: 1.2;
    text-decoration: none !important;
}

.cf-page-content__sidebar .speakers .speaker-info .speaker-name {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.cf-page-content__sidebar .convening-info {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.5px;
}


/* Event Item: Header */

.cf-event-item__header {
    padding: 0 0 110px;
    position: relative;
}

.cf-event-item__header-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    width: 100vw;
    height: 100%;
}

.cf-event-item__header-bg img {
    min-height: 100%;
    position: absolute;
    top: 0;
    right: 48%;
    width: 52%;
    height: auto;
}

.cf-event-item__header-content {
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    padding: 36px;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    width: 100%;
    background-color: var(--ascend-white);
    border-radius: 0px 12px 12px 12px;
    box-shadow: 4px 8px 15px 0px rgba(0, 0, 0, 0.15);
}

.cf-event-item__sessions {
    display: flex;
    padding: 50px 0 155px;
    flex-direction: column;
    gap: 24px;
}

.cf-event-item .session-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 32px;
    flex-wrap: wrap;
}

.cf-event-item .session-grid .session-item {
    display: flex;
    width: 100%;
    padding-right: 24px;
    align-items: center;
    gap: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #F2F5F7;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    min-height: 160px;
    overflow: hidden;
    text-decoration: none;
}

.cf-event-item .session-grid .session-item .session-item__img {
    background-color: var(--ascend-blue-400);
    height: 100%;
    max-height: 166px;
    aspect-ratio: 1 / 1;
}

.cf-event-item .session-grid .session-item .session-item__img img {
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}

@media (max-width: 768px) {
    .cf-event-item__header-content {
        padding: 24px 24px 12px 24px;
        min-height: 150px;
    }
    .cf-event-item__header-content .cf-heading {
        font-size: 50px;
    }
    .cf-event-item .session-grid {
        grid-template-columns: 1fr;
    }
    .cf-event-item .session-grid .session-item {
        gap: 24px;
    }
}


/* GALLERY */

.cf-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 32px;
}

.cf-gallery .cf-gallery__item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
}

.cf-gallery .cf-gallery__item img {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

.cf-gallery .gallery-grid.grid-1 .cf-gallery__item {
    grid-column: span 12;
}

.cf-gallery .gallery-grid.grid-2 .cf-gallery__item {
    grid-column: span 6;
}

.cf-gallery .gallery-grid.grid-3 .cf-gallery__item,
.cf-gallery .gallery-grid.grid-6 .cf-gallery__item,
.cf-gallery .gallery-grid.grid-9 .cf-gallery__item {
    grid-column: span 4;
}

.cf-gallery .gallery-grid.grid-4 .cf-gallery__item,
.cf-gallery .gallery-grid.grid-8 .cf-gallery__item,
.cf-gallery .gallery-grid.grid-12 .cf-gallery__item {
    grid-column: span 3;
}

.cf-gallery .gallery-grid.grid-5 .cf-gallery__item:nth-child(-n+3) {
    grid-column: span 4;
}

.cf-gallery .gallery-grid.grid-5 .cf-gallery__item:nth-child(n+4) {
    grid-column: span 6;
}

.cf-gallery .gallery-grid.grid-7 .cf-gallery__item:nth-child(-n+4) {
    grid-column: span 3;
}

.cf-gallery .gallery-grid.grid-7 .cf-gallery__item:nth-child(n+5) {
    grid-column: span 4;
}

.cf-gallery .gallery-grid.grid-10 .cf-gallery__item:nth-child(-n+3) {
    grid-column: span 4;
}

.cf-gallery .gallery-grid.grid-10 .cf-gallery__item:nth-child(n+4):nth-child(-n+7) {
    grid-column: span 3;
}

.cf-gallery .gallery-grid.grid-10 .cf-gallery__item:nth-child(n+8) {
    grid-column: span 4;
}

.cf-gallery .gallery-grid.grid-11 .cf-gallery__item:nth-child(-n+4),
.cf-gallery .gallery-grid.grid-11 .cf-gallery__item:nth-child(n+8) {
    grid-column: span 3;
}

.cf-gallery .gallery-grid.grid-11 .cf-gallery__item:nth-child(n+5):nth-child(-n+7) {
    grid-column: span 4;
}