@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Prata&display=swap');

:root {
    --ink: #212121;
    --plum: #3d2f60;
    --rose: #8f79ba;
    --peach: #c2b4df;
    --cream: #eeedef;
    --paper: #fff;
    --sage: #8c8792;
    --line: rgba(61, 47, 96, .16);
    --serif: 'Prata', Georgia, serif;
    --sans: 'Manrope', Arial, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65
}

img {
    display: block;
    width: 100%;
    object-fit: cover
}

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

button,
input {
    font: inherit
}

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

.site-header {
    height: 88px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 50;
    background: rgba(255, 253, 249, .9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.brand-mark {
    width: 36px;
    height: 36px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 20px
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600
}

.site-header nav a:not(.nav-cta) {
    position: relative
}

.site-header nav a:not(.nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -5px;
    height: 1px;
    background: var(--rose);
    transition: .3s
}

.site-header nav a:hover:after,
.site-header nav a.active:after {
    right: 0
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 100px
}

.nav-cta {
    background: var(--ink);
    color: white
}

.menu-toggle {
    display: none;
    border: 0;
    background: none
}

.section-pad {
    padding: 110px 7vw
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    font-weight: 700;
    color: var(--rose);
    margin: 0 0 22px
}

.eyebrow.light {
    color: var(--peach)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.03em
}

h1 {
    font-size: clamp(54px, 7.2vw, 112px);
    margin: 0 0 30px
}

h2 {
    font-size: clamp(42px, 5.2vw, 76px);
    margin: 0
}

em {
    font-weight: 400;
    color: var(--rose)
}

.hero {
    min-height: calc(100vh - 88px);
    padding: 8vh 7vw 6vh;
    display: grid;
    grid-template-columns: 1.05fr .85fr;
    gap: 6vw;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cream)
}

.hero-copy {
    position: relative;
    z-index: 2
}

.hero-lead {
    font-size: 18px;
    max-width: 600px;
    color: #5c5867
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 36px 0 55px
}

.button.primary {
    background: var(--plum);
    color: white;
    padding: 16px 28px
}

.text-link {
    font-weight: 700;
    font-size: 13px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 5px
}

.text-link span {
    color: var(--rose);
    margin-left: 5px
}

.hero-meta {
    display: flex;
    gap: 36px;
    border-top: 1px solid var(--line);
    padding-top: 24px
}

.hero-meta div {
    display: flex;
    flex-direction: column
}

.hero-meta b {
    font-family: var(--serif);
    font-size: 22px
}

.hero-meta span {
    font-size: 11px;
    color: #77717e
}

.hero-art {
    position: relative
}

.hero-photo {
    position: relative;
    max-width: 560px;
    margin: auto
}

.hero-photo img {
    height: min(68vh, 690px);
    border-radius: 48% 48% 18px 18px;
    filter: saturate(.75)
}

.photo-note {
    position: absolute;
    left: -50px;
    bottom: 40px;
    background: var(--paper);
    padding: 24px 30px;
    font-family: var(--serif);
    font-size: 17px;
    box-shadow: 0 14px 50px rgba(42, 26, 46, .12)
}

.photo-note i {
    color: var(--rose)
}

.spark {
    position: absolute;
    right: -20px;
    top: 14%;
    font-size: 52px;
    color: var(--peach)
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(214, 139, 143, .35);
    border-radius: 50%
}

.orbit-one {
    width: 420px;
    height: 420px;
    right: -160px;
    top: -130px
}

.orbit-two {
    width: 260px;
    height: 260px;
    left: -140px;
    bottom: -120px
}

.intro {
    background: var(--paper)
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
    align-items: start
}

.intro-grid>div {
    max-width: 570px
}

.large-copy {
    font-size: 23px;
    line-height: 1.5
}

.intro-grid>div>p:last-child {
    color: #6f6975
}

.details {
    padding-top: 20px;
    background: var(--paper)
}

.details-card {
    background: var(--plum);
    color: white;
    border-radius: 28px;
    padding: 80px;
    display: grid;
    grid-template-columns: .8fr 1.15fr;
    gap: 8vw
}

.details-card h2 {
    font-size: clamp(42px, 4.5vw, 68px)
}

.accordion {
    border-top: 1px solid rgba(255, 255, 255, .25)
}

.acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, .25)
}

.acc-item button {
    width: 100%;
    border: 0;
    background: none;
    color: white;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    text-align: left;
    align-items: center;
    padding: 24px 0;
    cursor: pointer
}

.acc-item button span {
    font-size: 11px;
    color: var(--peach)
}

.acc-item button b {
    font-size: 17px
}

.acc-item button i {
    font-size: 22px;
    font-style: normal;
    font-weight: 300
}

.acc-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s
}

.acc-content p {
    overflow: hidden;
    color: #ded4dc;
    margin: 0;
    max-width: 560px
}

.acc-item.open .acc-content {
    grid-template-rows: 1fr
}

.acc-item.open .acc-content p {
    padding: 0 0 24px 40px
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 55px
}

.speaker-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 24px;
    align-items: end
}

.speaker-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--cream)
}

.speaker-card img {
    height: 440px;
    filter: saturate(.7);
    transition: .5s
}

.speaker-card.tall img {
    height: 540px
}

.speaker-card:hover img {
    transform: scale(1.03);
    filter: saturate(1)
}

.speaker-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 70px 24px 22px;
    color: white;
    background: linear-gradient(transparent, rgba(25, 15, 28, .8))
}

.speaker-card span {
    font-size: 11px;
    letter-spacing: .08em
}

.speaker-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    margin: 4px 0 0
}

.quote-band {
    background: var(--peach);
    padding: 90px 15vw;
    display: flex;
    gap: 40px;
    align-items: start
}

.quote-band>span {
    font-family: var(--serif);
    font-size: 90px;
    line-height: .8;
    color: var(--rose)
}

blockquote {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.3;
    margin: 0;
    max-width: 1000px
}

.posts-grid {
    display: grid;
    grid-template-columns: 1.45fr .8fr;
    gap: 24px
}

.post-card {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden
}

.post-card.featured {
    grid-row: span 2;
    position: relative;
    min-height: 570px
}

.post-card.featured img {
    height: 100%;
    position: absolute
}

.post-card.featured:after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(26, 20, 31, .85))
}

.post-card.featured>div {
    position: absolute;
    z-index: 2;
    bottom: 0;
    color: white;
    padding: 36px
}

.post-card h3 {
    font-family: var(--serif);
    font-size: 27px;
    line-height: 1.3;
    margin: 10px 0
}

.post-card p {
    font-size: 12px;
    margin: 0;
    opacity: .75
}

.tag {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 700
}

.compact {
    display: grid;
    grid-template-columns: 160px 1fr;
    min-height: 270px
}

.post-color {
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 50px
}

.post-color.coral {
    background: var(--rose);
    color: white
}

.post-color.lilac {
    background: #b8a8c4;
    color: white
}

.compact>div:last-child {
    padding: 30px;
    align-self: end
}

.cta {
    text-align: center;
    color: white;
    background: var(--ink);
    padding: 110px 20px
}

.cta h2 {
    font-size: clamp(42px, 5vw, 72px)
}

.cta>p:not(.eyebrow) {
    color: #c8c3ce
}

.signup-form {
    display: flex;
    max-width: 560px;
    margin: 35px auto 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .45)
}

.signup-form input {
    flex: 1;
    background: none;
    border: 0;
    color: white;
    padding: 16px 5px;
    outline: none
}

.signup-form button {
    border: 0;
    background: none;
    color: var(--peach);
    font-weight: 700
}

.cta small {
    color: #918b98
}

footer {
    background: #1c1928;
    color: #d8d2dd;
    padding: 70px 7vw 35px;
    display: grid;
    grid-template-columns: 1.2fr 1fr .7fr 1fr;
    gap: 40px;
    position: relative
}

footer .brand {
    color: white
}

.footer-links {
    display: flex;
    flex-direction: column
}

footer p,
footer a {
    font-size: 13px
}

footer small {
    grid-column: 1/-1;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 25px;
    color: #77717e
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s, transform .8s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

/* Inner pages */
.page-hero {
    padding: 100px 7vw 70px;
    background: var(--cream);
    position: relative;
    overflow: hidden
}

.page-hero h1 {
    max-width: 950px
}

.page-hero p:not(.eyebrow) {
    max-width: 620px;
    font-size: 18px;
    color: #686370
}

.crumbs {
    font-size: 12px;
    margin-bottom: 60px;
    color: #77717e
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.bio-card {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden
}

.bio-card img {
    height: 560px
}

.bio-card div {
    padding: 24px
}

.bio-card h2 {
    font-family: var(--serif);
    font-size: 27px;
    margin: 0 0 5px
}

.bio-card p {
    font-size: 13px;
    color: #77717e
}

.bio-card .text-link {
    display: inline-block;
    margin-top: 10px
}

.speaker-profile {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 8vw;
    align-items: start
}

.profile-image {
    position: sticky;
    top: 110px
}

.profile-image img {
    height: 720px;
    border-radius: 220px 220px 18px 18px
}

.profile-copy h1 {
    font-size: clamp(50px, 6vw, 86px)
}

.profile-copy .role {
    color: var(--rose);
    font-weight: 700
}

.profile-copy blockquote {
    font-size: 30px;
    border-left: 2px solid var(--rose);
    padding-left: 25px;
    margin: 45px 0
}

.profile-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 45px;
    margin-bottom: 45px
}

.profile-facts div {
    border-top: 1px solid var(--line);
    padding-top: 15px
}

.profile-facts b {
    display: block
}

.profile-facts span {
    font-size: 13px;
    color: #77717e
}

.filter-row {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.filter-button {
    border: 1px solid var(--line);
    border-radius: 100px;
    background: white;
    padding: 10px 18px;
    cursor: pointer
}

.filter-button.active {
    background: var(--ink);
    color: white
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.blog-card {
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px
}

.blog-card img {
    height: 280px;
    border-radius: 14px;
    margin-bottom: 20px
}

.blog-card h2 {
    font-family: var(--serif);
    font-size: 27px;
    margin: 10px 0
}

.article-hero {
    max-width: 1050px;
    margin: auto;
    text-align: center
}

.article-cover {
    width: min(1180px, 86vw);
    height: min(70vh, 720px);
    margin: 0 auto;
    border-radius: 20px
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 20px 120px;
    font-family: Georgia, serif;
    font-size: 19px;
    line-height: 1.85
}

.article-body .lead {
    font-size: 25px
}

.article-body h2 {
    font-size: 38px;
    margin: 55px 0 20px
}

.article-body blockquote {
    font-size: 28px;
    margin: 50px -80px;
    padding: 30px 50px;
    background: var(--cream)
}

.gallery-grid {
    columns: 3;
    column-gap: 18px
}

.gallery-grid figure {
    margin: 0 0 18px;
    break-inside: avoid;
    position: relative
}

.gallery-grid img {
    border-radius: 14px
}

.gallery-grid figcaption {
    font-size: 11px;
    color: #77717e;
    padding-top: 7px
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center
}

.about-story img {
    height: 650px;
    border-radius: 240px 240px 18px 18px
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px
}

.value {
    border-top: 1px solid var(--line);
    padding-top: 25px
}

.value b {
    font-family: var(--serif);
    font-size: 26px
}

.resource-shell {
    min-height: 100vh;
    background: #f2eee8;
    padding: 50px 7vw
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px
}

.privacy-badge {
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 15px;
    font-size: 11px
}

.resource-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 50px
}

.resource-nav {
    position: sticky;
    top: 30px;
    height: max-content
}

.resource-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px
}

.files-list {
    background: white;
    border-radius: 20px;
    padding: 10px 30px
}

.file-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line)
}

.file-item:last-child {
    border: 0
}

.file-icon {
    width: 44px;
    height: 52px;
    background: var(--cream);
    display: grid;
    place-items: center;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--rose)
}

.file-item h3 {
    margin: 0;
    font-size: 15px
}

.file-item p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #77717e
}

.file-item a {
    font-size: 12px;
    font-weight: 700
}

.resource-section {
    margin-bottom: 55px
}

.resource-section h2 {
    font-size: 40px;
    margin-bottom: 20px
}

@media(max-width:900px) {
    .site-header {
        height: 72px
    }

    .menu-toggle {
        display: block;
        width: 42px;
        height: 42px
    }

    .menu-toggle span {
        display: block;
        width: 23px;
        height: 1px;
        background: var(--ink);
        margin: 7px auto;
        transition: .3s
    }

    .site-header nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 30px 7vw 40px;
        flex-direction: column;
        align-items: flex-start;
        font-size: 18px;
        box-shadow: 0 18px 30px rgba(0, 0, 0, .08)
    }

    .site-header.menu-open nav {
        display: flex
    }

    .site-header.menu-open .menu-toggle span:first-child {
        transform: translateY(4px) rotate(45deg)
    }

    .site-header.menu-open .menu-toggle span:last-child {
        transform: translateY(-4px) rotate(-45deg)
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 70px
    }

    .hero-art {
        max-width: 650px;
        margin: 0 auto
    }

    .hero-photo img {
        height: 600px
    }

    .intro-grid,
    .details-card,
    .speaker-profile,
    .about-story {
        grid-template-columns: 1fr
    }

    .details-card {
        padding: 55px 40px
    }

    .speaker-grid {
        grid-template-columns: 1fr 1fr
    }

    .speaker-card:first-child {
        grid-column: 1/-1
    }

    .speaker-card.tall img {
        height: 520px
    }

    .posts-grid {
        grid-template-columns: 1fr
    }

    .post-card.featured {
        min-height: 560px
    }

    .content-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr
    }

    .profile-image {
        position: relative;
        top: 0;
        max-width: 600px
    }

    .profile-image img {
        height: 650px
    }

    .gallery-grid {
        columns: 2
    }

    .resource-layout {
        grid-template-columns: 1fr
    }

    .resource-nav {
        position: relative;
        display: flex;
        gap: 18px;
        overflow: auto
    }

    .resource-nav a {
        white-space: nowrap
    }

    .values {
        grid-template-columns: 1fr 1fr
    }

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

@media(max-width:600px) {
    body {
        font-size: 15px
    }

    .section-pad {
        padding: 78px 20px
    }

    .site-header {
        padding: 0 20px
    }

    .site-header nav {
        padding-left: 20px
    }

    .hero {
        padding: 55px 20px 45px;
        gap: 55px
    }

    .hero h1 {
        font-size: 53px
    }

    .hero-lead {
        font-size: 16px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px
    }

    .hero-meta {
        gap: 14px;
        justify-content: space-between
    }

    .hero-meta b {
        font-size: 17px
    }

    .hero-meta span {
        font-size: 9px
    }

    .hero-photo img {
        height: 470px;
        border-radius: 46% 46% 12px 12px
    }

    .photo-note {
        left: -5px;
        bottom: 25px;
        padding: 17px 20px;
        font-size: 14px
    }

    .spark {
        right: 0
    }

    .intro-grid {
        gap: 35px
    }

    .large-copy {
        font-size: 19px
    }

    .details {
        padding: 0
    }

    .details-card {
        border-radius: 0;
        padding: 65px 20px;
        gap: 45px
    }

    .acc-item button {
        grid-template-columns: 30px 1fr auto
    }

    .acc-item.open .acc-content p {
        padding-left: 30px
    }

    .section-head {
        display: block
    }

    .section-head .text-link {
        display: inline-block;
        margin-top: 25px
    }

    .speaker-grid,
    .content-grid,
    .blog-grid {
        grid-template-columns: 1fr
    }

    .speaker-card:first-child {
        grid-column: auto
    }

    .speaker-card img,
    .speaker-card.tall img,
    .bio-card img {
        height: 460px
    }

    .quote-band {
        padding: 65px 25px;
        gap: 15px
    }

    .quote-band>span {
        font-size: 60px
    }

    .posts-grid {
        display: block
    }

    .post-card {
        margin-bottom: 18px
    }

    .post-card.featured {
        min-height: 500px
    }

    .compact {
        grid-template-columns: 105px 1fr;
        min-height: 210px
    }

    .compact>div:last-child {
        padding: 20px
    }

    .post-card h3 {
        font-size: 22px
    }

    .cta {
        padding: 80px 20px
    }

    .signup-form {
        display: block;
        border: 0
    }

    .signup-form input {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .45);
        text-align: center
    }

    .signup-form button {
        margin-top: 20px
    }

    footer {
        grid-template-columns: 1fr;
        padding: 55px 20px 30px
    }

    .page-hero {
        padding: 70px 20px 50px
    }

    .crumbs {
        margin-bottom: 40px
    }

    .profile-image img {
        height: 500px
    }

    .profile-facts {
        grid-template-columns: 1fr
    }

    .article-cover {
        width: calc(100% - 20px);
        height: 52vh
    }

    .article-body {
        font-size: 17px;
        padding-top: 55px
    }

    .article-body .lead {
        font-size: 21px
    }

    .article-body blockquote {
        margin: 40px 0;
        padding: 25px
    }

    .gallery-grid {
        columns: 1
    }

    .about-story img {
        height: 480px
    }

    .values {
        grid-template-columns: 1fr
    }

    .resource-shell {
        padding: 25px 20px
    }

    .resource-header {
        margin-bottom: 45px
    }

    .resource-header .brand span:last-child {
        display: none
    }

    .files-list {
        padding: 5px 16px
    }

    .file-item {
        grid-template-columns: 42px 1fr
    }

    .file-item>a {
        grid-column: 2
    }

    .resource-section h2 {
        font-size: 34px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Course banner, navigation and refined inner pages */
.course-hero {
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    grid-template-columns: none;
    padding: 95px 7vw 75px;
    color: white;
    background: linear-gradient(90deg, rgba(28, 22, 39, .94) 0%, rgba(31, 24, 43, .72) 48%, rgba(31, 24, 43, .28) 100%), url('../assets/original/all/site-03.jpg') center 42%/cover
}

.course-hero .hero-copy {
    max-width: 850px
}

.course-hero .course-banner,
.course-hero .hero-orbit {
    display: none
}

.course-hero .crumbs,
.course-hero .crumbs a,
.course-hero .hero-lead,
.course-hero .hero-meta span {
    color: #eeeaf3
}

.course-hero .crumbs {
    margin-bottom: 40px
}

.course-hero .hero-meta {
    max-width: 720px;
    border-color: rgba(255, 255, 255, .3)
}

.course-hero .text-link {
    border-color: rgba(255, 255, 255, .4)
}

.course-hero .button.primary {
    background: white;
    color: var(--plum)
}

.nav-dropdown {
    position: relative
}

.nav-dropdown>button {
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    cursor: pointer
}

.nav-dropdown>button span {
    color: var(--rose);
    margin-left: 4px
}

.nav-dropdown.active>button {
    color: var(--rose)
}

.nav-dropdown-menu {
    position: absolute;
    z-index: 90;
    left: 50%;
    top: calc(100% + 15px);
    transform: translate(-50%, 8px);
    width: 270px;
    padding: 10px;
    background: white;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: 0 18px 50px rgba(35, 29, 43, .16);
    opacity: 0;
    visibility: hidden;
    transition: .22s
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}

.nav-dropdown-menu>a,
.nav-dropdown-menu>.course-soon {
    display: flex !important;
    flex-direction: column;
    padding: 13px 14px;
    border-radius: 9px;
    font-size: 13px !important
}

.nav-dropdown-menu>a:hover {
    background: var(--cream)
}

.nav-dropdown-menu small {
    font-size: 9px;
    color: #8a848e;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.course-soon {
    opacity: .55;
    border-top: 1px solid var(--line);
    margin-top: 4px
}

.organizers-intro {
    max-width: 670px;
    color: #706a76;
    font-size: 18px;
    margin-top: 20px
}

.organizer-grid {
    max-width: 920px
}

.organizer-grid article {
    background: white;
    border: 1px solid var(--line);
    padding: 38px;
    text-align: center
}

.organizer-symbol {
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
    border-radius: 22px;
    background: var(--cream);
    display: grid;
    place-items: center
}

.organizer-symbol img {
    width: 126px;
    height: 126px;
    object-fit: contain
}

.organizer-grid article:nth-child(2) .organizer-symbol img {
    width: 138px;
    height: 138px
}

.organizer-grid h3 {
    font-size: 25px
}

.organizer-grid p {
    max-width: 340px;
    margin: 0 auto
}

.location-photos button {
    padding: 0;
    border: 0;
    background: none;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in
}

.location-photos button img {
    transition: transform .35s
}

.location-photos button:hover img {
    transform: scale(1.04)
}

.about-hero {
    padding: 68px 7vw 75px
}

.about-hero>div {
    max-width: 1080px;
    margin: 0 auto
}

.about-hero .crumbs {
    margin-bottom: 45px
}

.about-hero h1 {
    font-size: clamp(44px, 5.7vw, 76px);
    max-width: 930px;
    margin-bottom: 24px
}

.about-hero .page-deck {
    font-size: 20px;
    line-height: 1.55;
    max-width: 700px;
    color: #625d68
}

/* Private materials library */
.materials-page {
    background: var(--cream)
}

.materials-topbar {
    height: 82px;
    padding: 0 6vw;
    background: white;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.resource-shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 6vw 110px;
    background: transparent
}

.materials-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
    padding-bottom: 65px
}

.materials-hero h1 {
    font-size: clamp(50px, 6vw, 88px);
    max-width: 850px
}

.materials-hero .privacy-badge {
    display: inline-block;
    color: var(--plum);
    background: white;
    margin-bottom: 30px
}

.materials-stats {
    display: flex;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 22px
}

.materials-stats div {
    min-width: 90px;
    text-align: center;
    border-right: 1px solid var(--line);
    padding: 0 18px
}

.materials-stats div:last-child {
    border: 0
}

.materials-stats b {
    display: block;
    font-family: var(--serif);
    font-size: 28px
}

.materials-stats span {
    font-size: 9px;
    text-transform: uppercase;
    color: #8b858f;
    letter-spacing: .1em
}

.materials-tools {
    position: sticky;
    z-index: 20;
    top: 10px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 35px rgba(40, 31, 53, .08)
}

.materials-tools label {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1
}

.materials-tools label span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #746e79
}

.materials-tools input {
    border: 0;
    background: var(--cream);
    border-radius: 9px;
    padding: 10px 13px;
    min-width: 280px;
    outline: none
}

.materials-tools nav {
    display: flex;
    gap: 20px
}

.materials-tools nav a {
    font-size: 12px;
    font-weight: 700
}

.materials-section {
    padding: 85px 0 0
}

.materials-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 32px
}

.materials-heading h2,
.materials-section h2 {
    font-size: clamp(38px, 4vw, 58px)
}

.materials-heading>span {
    font-size: 11px;
    color: #817b85
}

.download-grid {
    display: grid;
    gap: 12px
}

.download-card {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 20px;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 19px 22px;
    transition: .2s
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(39, 31, 50, .08)
}

.download-card .file-icon {
    height: 58px;
    width: 50px
}

.download-card span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--rose)
}

.download-card h3 {
    margin: 2px 0;
    font-size: 16px
}

.download-card p {
    margin: 0;
    font-size: 11px;
    color: #827c86
}

.download-card>a {
    background: var(--plum);
    color: white;
    border-radius: 9px;
    padding: 11px 15px;
    font-size: 11px;
    font-weight: 700
}

.audio-section {
    margin-top: 85px;
    padding: 60px;
    background: var(--plum);
    color: white;
    border-radius: 22px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center
}

.audio-section>div:first-child>p:not(.eyebrow) {
    color: #d5cfdd
}

.audio-player {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;
    background: white;
    color: var(--ink);
    padding: 24px;
    border-radius: 16px
}

.audio-art {
    height: 120px;
    background: var(--peach);
    display: grid;
    place-items: center;
    font-size: 46px;
    border-radius: 12px;
    color: var(--plum)
}

.audio-player span {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--rose)
}

.audio-player h3 {
    font-family: var(--serif);
    font-size: 20px;
    margin: 3px 0 10px
}

.audio-player audio {
    width: 100%;
    height: 38px
}

.audio-player a {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--plum);
    margin-top: 9px
}

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

.video-grid>a {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 22px
}

.video-cover {
    height: 230px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.video-cover>span {
    width: 58px;
    height: 58px;
    background: white;
    color: var(--plum);
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding-left: 4px;
    font-size: 18px
}

.video-cover small {
    position: absolute;
    left: 20px;
    bottom: 17px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.lilac-video {
    background: var(--peach)
}

.plum-video {
    background: var(--plum);
    color: white
}

.cream-video {
    background: #d9d6dc
}

.video-grid h3,
.video-grid p {
    margin-left: 20px;
    margin-right: 20px
}

.video-grid h3 {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.35;
    margin-top: 20px
}

.video-grid p {
    font-size: 10px;
    color: var(--rose);
    font-weight: 700
}

.materials-empty {
    text-align: center;
    padding: 50px
}

.materials-footer {
    background: #1c1928;
    color: #d7d2dc;
    padding: 30px 6vw;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: 11px
}

.materials-footer p {
    margin: 0
}

@media(max-width:900px) {
    .nav-dropdown-menu {
        left: 0;
        transform: translateY(8px)
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none
    }

    .site-header nav .nav-dropdown {
        width: 100%
    }

    .nav-dropdown-menu {
        position: relative;
        top: auto;
        width: 100%;
        box-shadow: none;
        margin-top: 8px;
        display: none;
        opacity: 1;
        visibility: visible
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block
    }

    .course-hero {
        min-height: 650px
    }

    .materials-hero {
        grid-template-columns: 1fr
    }

    .materials-stats {
        width: max-content
    }

    .materials-tools {
        position: relative;
        top: 0;
        align-items: flex-start;
        flex-direction: column
    }

    .materials-tools label {
        width: 100%
    }

    .materials-tools input {
        flex: 1
    }

    .audio-section {
        grid-template-columns: 1fr
    }

    .video-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .course-hero {
        min-height: 620px;
        padding: 70px 20px 55px;
        background-position: 60% center
    }

    .course-hero h1 {
        font-size: 50px
    }

    .course-hero .hero-meta {
        flex-wrap: wrap
    }

    .organizer-symbol {
        width: 145px;
        height: 145px
    }

    .organizer-symbol img {
        width: 105px;
        height: 105px
    }

    .about-hero {
        padding: 48px 20px 55px
    }

    .about-hero h1 {
        font-size: clamp(40px, 12vw, 58px)
    }

    .about-hero .page-deck {
        font-size: 17px
    }

    .materials-topbar {
        padding: 0 20px
    }

    .materials-topbar .text-link {
        font-size: 10px
    }

    .resource-shell {
        padding: 48px 20px 80px
    }

    .materials-tools label {
        display: block
    }

    .materials-tools label span {
        display: block;
        margin-bottom: 7px
    }

    .materials-tools input {
        width: 100%;
        min-width: 0
    }

    .materials-tools nav {
        width: 100%;
        justify-content: space-between
    }

    .materials-heading {
        display: block
    }

    .materials-heading>span {
        display: block;
        margin-top: 10px
    }

    .download-card {
        grid-template-columns: 50px 1fr
    }

    .download-card>a {
        grid-column: 2;
        width: max-content
    }

    .audio-section {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        padding: 50px 20px;
        gap: 35px
    }

    .audio-player {
        grid-template-columns: 1fr
    }

    .audio-art {
        height: 90px
    }

    .video-grid {
        grid-template-columns: 1fr
    }

    .materials-footer {
        display: block
    }

    .materials-footer a {
        display: inline-block;
        margin-top: 12px
    }
}

/* Editorial article */
.article-header {
    background: var(--cream);
    padding: 68px 7vw 0
}

.article-head-inner {
    max-width: 1080px;
    margin: 0 auto
}

.article-header .crumbs {
    margin-bottom: 48px
}

.article-kicker {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 700;
    color: var(--rose)
}

.article-kicker time {
    color: #77717e;
    padding-left: 18px;
    border-left: 1px solid var(--line)
}

.article-header h1 {
    font-size: clamp(44px, 5.7vw, 76px);
    line-height: 1.1;
    max-width: 960px;
    margin-bottom: 24px
}

.article-deck {
    font-size: 20px;
    line-height: 1.55;
    max-width: 700px;
    color: #625d68
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px
}

.article-meta img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: var(--plum);
    border-radius: 50%;
    padding: 4px
}

.article-meta div {
    display: flex;
    flex-direction: column
}

.article-meta b {
    font-size: 12px
}

.article-meta span {
    font-size: 11px;
    color: #7b7580
}

.article-cover-wrap {
    margin: 52px 0 0
}

.article-cover-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/8.2;
    object-fit: cover;
    border-radius: 18px
}

.article-cover-wrap figcaption {
    font-size: 11px;
    color: #7b7580;
    padding: 10px 3px 0
}

.article-layout {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100px minmax(0, 720px);
    gap: 55px;
    padding: 0 20px
}

.article-layout .article-body {
    max-width: none;
    margin: 0;
    padding: 78px 0 110px;
    font-size: 18px
}

.article-layout .article-body .lead {
    font-size: 24px;
    line-height: 1.6;
    color: #35303a
}

.article-layout .article-body h2 {
    font-size: 36px;
    margin: 52px 0 18px
}

.article-layout .article-body blockquote {
    position: relative;
    margin: 48px 0;
    padding: 38px 42px 35px;
    background: var(--plum);
    color: white;
    border-radius: 14px;
    font-size: 27px;
    line-height: 1.5
}

.article-layout .article-body blockquote>span {
    display: block;
    color: var(--peach);
    font-size: 58px;
    line-height: .55;
    margin-bottom: 18px
}

.article-aside {
    padding-top: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px
}

.article-aside>span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 9px;
    color: #8a848e;
    margin-bottom: 8px
}

.article-aside a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--sans);
    font-size: 12px;
    position: sticky;
    top: 100px
}

.article-note {
    margin: 42px 0;
    padding: 24px 28px;
    border-left: 3px solid var(--rose);
    background: var(--cream);
    font-family: var(--sans)
}

.article-note b {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--plum)
}

.article-note p {
    font-size: 15px;
    line-height: 1.65;
    margin: 8px 0 0
}

.article-more {
    background: var(--cream)
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.related-grid>a {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 25px
}

.related-grid img,
.related-color {
    height: 260px
}

.related-color {
    display: grid;
    place-items: center;
    background: var(--peach);
    color: var(--plum);
    font-family: var(--serif);
    font-size: 70px
}

.related-grid span,
.related-grid h3 {
    display: block;
    margin-left: 25px;
    margin-right: 25px
}

.related-grid span {
    margin-top: 22px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--rose);
    font-size: 9px;
    font-weight: 700
}

.related-grid h3 {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.35;
    margin-top: 8px;
    margin-bottom: 0
}

@media(max-width:700px) {
    .article-header {
        padding: 48px 20px 0
    }

    .article-header .crumbs {
        margin-bottom: 35px
    }

    .article-kicker {
        flex-wrap: wrap;
        gap: 10px
    }

    .article-header h1 {
        font-size: clamp(40px, 12vw, 58px)
    }

    .article-deck {
        font-size: 17px
    }

    .article-cover-wrap {
        margin-top: 38px
    }

    .article-cover-wrap img {
        aspect-ratio: 4/3;
        border-radius: 12px
    }

    .article-layout {
        display: block;
        padding: 0 20px
    }

    .article-aside {
        display: none
    }

    .article-layout .article-body {
        padding: 55px 0 80px;
        font-size: 17px
    }

    .article-layout .article-body .lead {
        font-size: 21px
    }

    .article-layout .article-body h2 {
        font-size: 31px
    }

    .article-layout .article-body blockquote {
        padding: 30px 24px;
        font-size: 23px
    }

    .related-grid {
        grid-template-columns: 1fr
    }

    .related-grid img,
    .related-color {
        height: 220px
    }
}

/* Multi-page Woman Ministry UA */
.brand-logo {
    width: 38px;
    height: 38px;
    object-fit: contain
}

.crumbs {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap
}

.crumbs a {
    transition: color .2s
}

.crumbs a:hover {
    color: var(--rose)
}

.site-header .brand-mark {
    display: none
}

.home-hero {
    min-height: calc(100vh - 88px);
    padding: 7vh 7vw;
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 7vw;
    align-items: center;
    background: var(--cream);
    overflow: hidden
}

.home-hero h1 {
    font-size: clamp(58px, 7vw, 108px)
}

.home-collage {
    height: min(72vh, 700px);
    position: relative
}

.collage-main {
    width: 74%;
    height: 88%;
    margin-left: auto;
    border-radius: 240px 240px 20px 20px
}

.collage-small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45%;
    height: 42%;
    border: 10px solid var(--cream);
    border-radius: 16px
}

.collage-mark {
    position: absolute;
    left: 2%;
    top: 2%;
    width: 105px;
    height: 105px;
    object-fit: contain
}

.home-intro {
    background: white
}

.courses-section {
    background: var(--cream)
}

.course-feature {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 550px;
    background: var(--plum);
    color: white;
    border-radius: 24px;
    overflow: hidden
}

.course-feature>div {
    padding: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.course-feature h3 {
    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 74px);
    line-height: 1.05;
    margin: 18px 0 25px
}

.course-feature p {
    color: #d7d1df;
    max-width: 500px
}

.course-feature strong {
    margin-top: 20px;
    color: var(--peach)
}

.course-feature>img {
    height: 100%;
    min-height: 550px
}

.course-year {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 10px;
    color: var(--peach)
}

.home-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.home-posts .blog-card h3 {
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.3
}

.home-verse {
    background: var(--plum);
    color: white;
    padding: 85px 12vw;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 65px;
    align-items: center
}

.home-verse img {
    height: 150px;
    object-fit: contain
}

.home-verse blockquote {
    font-size: clamp(30px, 4vw, 55px)
}

.home-verse span {
    color: var(--peach)
}

.course-hero .crumbs {
    margin-bottom: 30px
}

.course-banner {
    height: min(70vh, 690px)
}

.course-banner .banner-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 78%;
    height: 88%;
    border-radius: 230px 230px 18px 18px
}

.course-banner .banner-detail {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48%;
    height: 43%;
    border: 9px solid var(--cream);
    border-radius: 14px
}

.course-banner .photo-note {
    left: auto;
    right: -15px;
    bottom: 35px
}

.details-visual img {
    margin-top: 40px;
    height: 230px;
    border-radius: 12px;
    filter: saturate(.75)
}

.speaker-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px)/3);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 4px
}

.speaker-slider::-webkit-scrollbar {
    display: none
}

.speaker-slider .speaker-card {
    scroll-snap-align: start
}

.slider-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.slider-actions .text-link {
    margin-right: 12px
}

.slider-actions button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    cursor: pointer;
    color: var(--plum);
    font-size: 18px
}

.organizers {
    background: white
}

.organizer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 55px
}

.organizer-grid article {
    background: var(--cream);
    border-radius: 18px;
    padding: 35px
}

.organizer-logo {
    height: 180px;
    background: #17141e;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 25px
}

.organizer-logo img {
    height: 130px;
    object-fit: contain
}

.organizer-grid h3 {
    font-family: var(--serif);
    font-size: 24px;
    margin-bottom: 6px
}

.organizer-grid p {
    color: #716b78;
    margin: 0
}

.location-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 35px
}

.location-photos img {
    height: 185px;
    border-radius: 12px
}

.location {
    grid-template-columns: 1fr 1fr
}

.location iframe {
    height: 100%;
    min-height: 620px
}

.blog-hero {
    min-height: 500px;
    color: white;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(90deg, rgba(29, 23, 40, .92), rgba(29, 23, 40, .42)), url('../assets/original/all/site-04.jpg') center 42%/cover
}

.blog-hero .crumbs,
.blog-hero p:not(.eyebrow) {
    color: #e1dce7
}

.blog-hero>div {
    width: 100%
}

.blog-card {
    transition: opacity .24s ease, transform .24s ease
}

.blog-card.hidden {
    display: none
}

.blog-card.filtering-out,
.gallery-grid figure.filtering-out {
    opacity: 0;
    transform: translateY(10px) scale(.98)
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px
}

.pagination a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px
}

.pagination a.active {
    background: var(--plum);
    color: white
}

.pagination a.disabled {
    opacity: .35;
    pointer-events: none
}

.social-links {
    display: flex;
    gap: 10px
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.social-links svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7
}

.social-links svg path {
    fill: currentColor;
    stroke: none
}

@media(max-width:900px) {
    .home-hero {
        grid-template-columns: 1fr;
        padding-top: 65px
    }

    .home-collage {
        height: 620px
    }

    .course-feature {
        grid-template-columns: 1fr
    }

    .course-feature>img {
        min-height: 450px
    }

    .home-posts {
        grid-template-columns: 1fr 1fr
    }

    .home-posts .blog-card:last-child {
        grid-column: 1/-1
    }

    .speaker-slider {
        grid-auto-columns: calc((100% - 24px)/2)
    }

    .organizer-grid {
        grid-template-columns: 1fr
    }

    .location {
        grid-template-columns: 1fr
    }

    .location iframe {
        min-height: 440px
    }

    .course-banner {
        height: 620px
    }
}

@media(max-width:600px) {
    .brand {
        font-size: 11px
    }

    .brand-logo {
        width: 34px;
        height: 34px
    }

    .home-hero {
        padding: 55px 20px
    }

    .home-collage {
        height: 470px
    }

    .collage-mark {
        width: 76px;
        height: 76px
    }

    .course-feature>div {
        padding: 45px 25px
    }

    .course-feature>img {
        min-height: 340px
    }

    .home-posts {
        grid-template-columns: 1fr
    }

    .home-posts .blog-card:last-child {
        grid-column: auto
    }

    .home-verse {
        grid-template-columns: 1fr;
        padding: 65px 25px;
        gap: 25px
    }

    .home-verse img {
        width: 100px;
        height: 100px
    }

    .course-banner {
        height: 500px
    }

    .course-banner .photo-note {
        right: 0
    }

    .details-visual img {
        height: 190px
    }

    .speaker-slider {
        grid-auto-columns: 84%
    }

    .slider-actions .text-link {
        display: none
    }

    .organizer-grid article {
        padding: 20px
    }

    .organizer-logo {
        height: 145px
    }

    .organizer-logo img {
        height: 100px
    }

    .location-photos img {
        height: 130px
    }

    .blog-hero {
        min-height: 460px
    }

    .social-links {
        align-self: start
    }
}

/* Woman Ministry UA course additions */
.brand {
    font-size: 15px
}

.brand i {
    font-style: normal;
    color: var(--rose)
}

.nav-cta {
    background: var(--plum)
}

.hero-orbit {
    border-color: rgba(61, 47, 96, .22)
}

.speaker-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch
}

.speaker-card img,
.speaker-card.tall img {
    height: 480px
}

.quote-band blockquote small {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    margin-top: 20px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.cta {
    background: var(--plum)
}

.location {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 7vw;
    align-items: center;
    background: var(--cream)
}

.location iframe {
    border: 0;
    width: 100%;
    height: 520px;
    border-radius: 20px;
    filter: saturate(.7)
}

.course-facts {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 50px auto
}

.course-facts div {
    min-width: 240px;
    padding: 12px 40px;
    border-right: 1px solid rgba(255, 255, 255, .22);
    display: flex;
    flex-direction: column
}

.course-facts div:last-child {
    border: 0
}

.course-facts span {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    color: var(--peach)
}

.course-facts b {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400
}

.course-facts small {
    color: #cfc8dd
}

.register-button {
    background: white;
    color: var(--plum);
    padding: 17px 30px
}

.scroll-cta {
    position: fixed;
    z-index: 70;
    left: 50%;
    top: 12px;
    transform: translate(-50%, -140%);
    width: min(760px, calc(100% - 36px));
    background: rgba(61, 47, 96, .96);
    color: white;
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 18px 60px rgba(33, 33, 33, .25);
    backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 13px 15px 13px 22px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 22px;
    align-items: center;
    transition: transform .35s
}

.scroll-cta.visible {
    transform: translate(-50%, 0)
}

.scroll-cta div {
    display: flex;
    flex-direction: column
}

.scroll-cta div span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--peach)
}

.scroll-cta div b {
    font-family: var(--serif);
    font-weight: 400
}

.scroll-cta>strong {
    font-size: 12px
}

.scroll-cta>a {
    background: white;
    color: var(--plum);
    border-radius: 9px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 700
}

.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px
}

.gallery-filter {
    border: 1px solid var(--line);
    background: white;
    border-radius: 100px;
    padding: 10px 18px;
    cursor: pointer
}

.gallery-filter.active {
    background: var(--plum);
    color: white
}

.gallery-grid figure {
    cursor: zoom-in;
    transition: opacity .25s, transform .25s
}

.gallery-grid figure.hidden {
    display: none
}

.gallery-grid figure:hover {
    transform: translateY(-3px)
}

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    background: rgba(20, 17, 27, .94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 65px
}

.lightbox.open {
    display: flex
}

.lightbox img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 120px);
    object-fit: contain
}

.lightbox button {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px
}

.lightbox-close {
    right: 24px;
    top: 22px
}

.lightbox-prev {
    left: 24px
}

.lightbox-next {
    right: 24px
}

.lightbox-caption {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    color: white;
    font-size: 12px;
    white-space: nowrap
}

@media(max-width:900px) {
    .location {
        grid-template-columns: 1fr
    }

    .course-facts div {
        min-width: 0;
        padding: 12px 25px
    }

    .scroll-cta>strong {
        display: none
    }

    .speaker-card:first-child {
        grid-column: auto
    }
}

@media(max-width:600px) {

    .speaker-card img,
    .speaker-card.tall img {
        height: 430px
    }

    .course-facts {
        display: grid;
        grid-template-columns: 1fr;
        margin: 35px auto
    }

    .course-facts div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        padding: 17px
    }

    .location iframe {
        height: 390px
    }

    .scroll-cta {
        top: 8px;
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 10px 10px 10px 14px
    }

    .scroll-cta div span {
        display: none
    }

    .scroll-cta div b {
        font-size: 13px
    }

    .scroll-cta>a {
        font-size: 10px
    }

    .lightbox {
        padding: 52px 12px
    }

    .lightbox-prev {
        left: 8px
    }

    .lightbox-next {
        right: 8px
    }
}

/* Final cascade refinements */
.organizer-grid article {
    background: white;
    border: 1px solid var(--line);
    padding: 38px;
    text-align: center
}

.organizer-symbol {
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
    border-radius: 22px;
    background: var(--cream);
    display: grid;
    place-items: center
}

.organizer-symbol img {
    width: 126px;
    height: 126px;
    object-fit: contain
}

.organizer-grid article:nth-child(2) .organizer-symbol img {
    width: 138px;
    height: 138px
}

.location {
    grid-template-columns: 1fr 1fr
}

.location-photos button img {
    height: 185px
}

.course-hero {
    display: flex;
    background: linear-gradient(90deg, rgba(28, 22, 39, .94) 0%, rgba(31, 24, 43, .72) 48%, rgba(31, 24, 43, .28) 100%), url('../assets/original/all/site-03.jpg') center 42%/cover
}

.course-hero .course-banner,
.course-hero .hero-orbit {
    display: none
}

@media(max-width:900px) {
    .location {
        grid-template-columns: 1fr
    }

    .organizer-grid article {
        padding: 30px
    }
}

@media(max-width:600px) {
    .organizer-grid article {
        padding: 22px
    }

    .organizer-symbol {
        width: 145px;
        height: 145px
    }

    .organizer-symbol img {
        width: 105px;
        height: 105px
    }

    .location-photos button img {
        height: 130px
    }

    .course-hero {
        background-position: 60% center
    }
}

/* Interactive map, course carousel and categorized materials */
[hidden] {
    display: none !important
}

.interactive-map {
    position: relative;
    min-height: 620px;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 18px 45px rgba(47, 36, 61, .1)
}

.interactive-map iframe {
    display: block;
    width: 100%;
    height: 620px;
    min-height: 620px;
    border: 0;
    border-radius: 0;
    filter: none
}

.map-location-label {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    max-width: 300px;
    background: rgba(255, 255, 255, .96);
    padding: 18px 21px;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: 0 12px 35px rgba(39, 30, 52, .16);
    display: flex;
    flex-direction: column;
    pointer-events: none
}

.map-location-label small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--rose)
}

.map-location-label b {
    font-family: var(--serif);
    font-size: 21px
}

.map-location-label span {
    font-size: 12px;
    color: #746e79
}

.map-location-label a {
    font-size: 11px;
    font-weight: 700;
    color: var(--plum);
    margin-top: 9px;
    pointer-events: auto
}

.speaker-slider .speaker-card,
.speaker-slider .speaker-card img,
.speaker-slider .speaker-card.tall img {
    height: 560px;
    min-height: 560px
}

.speaker-slider .speaker-card img,
.speaker-slider .speaker-card.tall img {
    width: 100%;
    object-fit: cover;
    object-position: center 22%
}

.speaker-slider .speaker-card div {
    min-height: 125px
}

.material-category-menu {
    position: sticky;
    z-index: 18;
    top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 9px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(40, 31, 53, .08)
}

.material-category-menu button {
    min-height: 68px;
    padding: 10px 14px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #655f6a;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    transition: .2s
}

.material-category-menu button span {
    display: block;
    font-size: 9px;
    color: var(--rose);
    margin-bottom: 3px
}

.material-category-menu button:hover {
    background: var(--cream)
}

.material-category-menu button.active {
    background: var(--plum);
    color: white
}

.material-category-menu button.active span {
    color: var(--peach)
}

.material-panel {
    padding: 80px 0 10px;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 7vw;
    align-items: start;
    animation: panel-in .32s ease
}

.material-panel[hidden] {
    display: none
}

.material-panel>header {
    position: sticky;
    top: 115px
}

.material-panel>header h2 {
    font-size: clamp(40px, 4.6vw, 66px)
}

.material-panel>header>p:last-child {
    font-size: 17px;
    color: #706a75;
    max-width: 480px
}

.category-resources {
    display: grid;
    gap: 18px
}

.category-file,
.category-video {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 25px;
    transition: .2s
}

.category-file {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 20px;
    align-items: center
}

.category-file .file-icon {
    height: 62px;
    width: 52px
}

.category-file span,
.category-video small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--rose)
}

.category-file h3,
.category-video h3 {
    font-family: var(--serif);
    font-size: 22px;
    margin: 3px 0
}

.category-file p,
.category-video p {
    font-size: 12px;
    color: #79737e;
    margin: 0
}

.category-file>a {
    background: var(--plum);
    color: white;
    padding: 11px 15px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700
}

.category-file:hover,
.category-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(40, 31, 53, .09)
}

.category-video {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 25px
}

.category-video>div {
    min-height: 130px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--peach), #9580bd);
    display: grid;
    place-items: center
}

.category-video>div span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    color: var(--plum);
    display: grid;
    place-items: center;
    padding-left: 4px
}

.category-video>section {
    align-self: center
}

.materials-search-hidden {
    display: none !important
}

@keyframes panel-in {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:900px) {

    .interactive-map,
    .interactive-map iframe {
        min-height: 520px;
        height: 520px
    }

    .speaker-slider .speaker-card,
    .speaker-slider .speaker-card img,
    .speaker-slider .speaker-card.tall img {
        height: 520px;
        min-height: 520px
    }

    .material-category-menu {
        grid-template-columns: 1fr 1fr;
        position: relative;
        top: 0
    }

    .material-panel {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .material-panel>header {
        position: relative;
        top: 0
    }

    .category-video {
        grid-template-columns: 130px 1fr
    }
}

@media(max-width:600px) {

    .interactive-map,
    .interactive-map iframe {
        min-height: 460px;
        height: 460px
    }

    .map-location-label {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none
    }

    .speaker-slider .speaker-card,
    .speaker-slider .speaker-card img,
    .speaker-slider .speaker-card.tall img {
        height: 440px;
        min-height: 440px
    }

    .material-category-menu {
        grid-template-columns: 1fr
    }

    .material-category-menu button {
        min-height: 58px
    }

    .material-panel {
        padding-top: 55px
    }

    .category-file {
        grid-template-columns: 52px 1fr
    }

    .category-file>a {
        grid-column: 2;
        width: max-content
    }

    .category-video {
        grid-template-columns: 1fr
    }

    .category-video>div {
        min-height: 170px
    }

    .category-file span,
    .category-video small,
    .material-category-menu button span,
    .map-location-label small,
    .map-location-label span,
    .map-location-label a {
        font-size: 14px !important
    }
}

/* Themed Google Maps treatment */
.interactive-map:after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(117, 93, 155, .07);
    mix-blend-mode: multiply;
    pointer-events: none
}

.interactive-map iframe {
    position: relative;
    z-index: 0;
    filter: grayscale(.18) sepia(.12) hue-rotate(218deg) saturate(.82) contrast(.96)
}

.map-location-label {
    z-index: 2
}

/* Clean framed Google map */
.interactive-map {
    display: flex;
    flex-direction: column;
    padding: 8px;
    background: var(--plum);
    border: 0;
    box-shadow: 0 22px 55px rgba(46, 34, 62, .16)
}

.interactive-map:after {
    display: none
}

.interactive-map iframe {
    order: 2;
    width: 100%;
    height: 540px;
    min-height: 540px;
    filter: none;
    border-radius: 0 0 13px 13px
}

.map-card-head {
    order: 1;
    min-height: 108px;
    padding: 18px 22px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.map-card-head>div {
    display: flex;
    flex-direction: column
}

.map-card-head small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--peach)
}

.map-card-head b {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400
}

.map-card-head span {
    font-size: 12px;
    color: #d9d2df
}

.map-card-head>a {
    flex: none;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 100px;
    padding: 11px 15px;
    color: white;
    font-size: 11px;
    font-weight: 700
}

@media(max-width:900px) {
    .interactive-map iframe {
        height: 500px;
        min-height: 500px
    }
}

@media(max-width:600px) {
    .interactive-map {
        padding: 6px
    }

    .map-card-head {
        align-items: flex-start;
        flex-direction: column
    }

    .map-card-head>a {
        font-size: 14px
    }

    .map-card-head small,
    .map-card-head span {
        font-size: 14px
    }

    .interactive-map iframe {
        height: 430px;
        min-height: 430px;
        border-radius: 0 0 10px 10px
    }
}

/* Restored floating-address map composition */
.interactive-map {
    display: block;
    padding: 0;
    background: #d8cee8;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(47, 36, 61, .12)
}

.interactive-map:after {
    display: block;
    background: rgba(150, 126, 184, .055);
    mix-blend-mode: multiply;
    pointer-events: none
}

.interactive-map iframe {
    display: block;
    order: initial;
    width: 100%;
    height: 620px;
    min-height: 620px;
    border: 0;
    border-radius: 20px;
    filter: grayscale(.32) sepia(.07) hue-rotate(215deg) saturate(.78) brightness(1.035)
}

.map-location-label {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 24px;
    max-width: 310px;
    background: rgba(255, 255, 255, .96);
    padding: 19px 22px;
    border: 1px solid rgba(61, 47, 96, .13);
    border-radius: 13px;
    box-shadow: 0 14px 38px rgba(45, 34, 59, .16);
    display: flex;
    flex-direction: column;
    pointer-events: none
}

.map-location-label small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--rose)
}

.map-location-label b {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400
}

.map-location-label span {
    font-size: 12px;
    color: #746e79
}

.map-location-label a {
    font-size: 11px;
    font-weight: 700;
    color: var(--plum);
    margin-top: 9px;
    pointer-events: auto
}

.map-card-head {
    display: none
}

@media(max-width:900px) {
    .interactive-map iframe {
        height: 520px;
        min-height: 520px
    }
}

@media(max-width:600px) {
    .interactive-map {
        padding: 0
    }

    .interactive-map iframe {
        height: 460px;
        min-height: 460px;
        border-radius: 14px
    }

    .map-location-label {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none
    }

    .map-location-label small,
    .map-location-label span,
    .map-location-label a {
        font-size: 14px
    }
}

/* Cold violet map palette — matches #3d2f60 / #c2b4df */
.interactive-map {
    background: #c2b4df
}

.interactive-map iframe {
    filter: grayscale(1) contrast(.92) brightness(1.06)
}

.interactive-map:after {
    display: block;
    background: rgba(61, 47, 96, .32);
    mix-blend-mode: color;
    pointer-events: none
}

.map-location-label {
    border-color: rgba(61, 47, 96, .18)
}

/* Responsive polish */
.compact-page-hero h1 {
    font-size: clamp(44px, 5.7vw, 76px);
    max-width: 930px
}

.compact-page-hero {
    padding-top: 72px;
    padding-bottom: 72px
}

.compact-page-hero .crumbs {
    margin-bottom: 44px
}

.blog-hero.compact-page-hero h1 {
    max-width: 850px
}

.themed-map {
    min-height: 620px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(145deg, #ded7ec, #c9bddf);
    display: block;
    isolation: isolate
}

.themed-map:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .55), transparent 24%), linear-gradient(35deg, transparent 46%, rgba(61, 47, 96, .07) 47%, rgba(61, 47, 96, .07) 53%, transparent 54%)
}

.map-road {
    position: absolute;
    height: 22px;
    background: #f7f4fa;
    border: 1px solid rgba(61, 47, 96, .1);
    box-shadow: 0 3px 0 rgba(61, 47, 96, .06);
    border-radius: 30px
}

.road-one {
    width: 125%;
    left: -12%;
    top: 30%;
    transform: rotate(-12deg)
}

.road-two {
    width: 110%;
    left: -10%;
    top: 68%;
    transform: rotate(20deg)
}

.road-three {
    width: 85%;
    left: 30%;
    top: 48%;
    transform: rotate(78deg)
}

.road-four {
    width: 65%;
    left: -18%;
    top: 54%;
    transform: rotate(64deg)
}

.map-marker {
    position: absolute;
    left: 56%;
    top: 42%;
    width: 58px;
    height: 58px;
    background: var(--plum);
    border: 7px solid white;
    border-radius: 50% 50% 50% 8px;
    transform: rotate(-45deg);
    box-shadow: 0 15px 35px rgba(44, 33, 60, .25)
}

.map-marker i {
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--peach);
    border-radius: 50%;
    left: 15px;
    top: 15px
}

.map-address {
    position: absolute;
    left: 35px;
    bottom: 35px;
    background: rgba(255, 255, 255, .94);
    padding: 20px 24px;
    border-radius: 13px;
    box-shadow: 0 15px 40px rgba(48, 37, 63, .14);
    display: flex;
    flex-direction: column
}

.map-address small {
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--rose);
    font-size: 10px
}

.map-address b {
    font-family: var(--serif);
    font-size: 22px
}

.map-address span {
    font-size: 12px;
    color: #746e79
}

.themed-map>em {
    position: absolute;
    right: 22px;
    top: 22px;
    background: var(--plum);
    color: white;
    border-radius: 100px;
    padding: 10px 15px;
    font-style: normal;
    font-size: 11px;
    font-weight: 700
}

.organizers>.eyebrow,
.organizers>h2,
.organizers-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.organizer-grid {
    margin: 55px auto 0
}

.location-photos button {
    width: 100%;
    aspect-ratio: 4/3
}

.location-photos button img,
.location-photos button:hover img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

.speaker-slider .speaker-card {
    background: #e9e5ed;
    min-height: 560px
}

.speaker-slider .speaker-card img,
.speaker-slider .speaker-card.tall img {
    height: 560px;
    object-fit: cover;
    object-position: center;
    background: #e9e5ed
}

.speaker-slider .speaker-card div {
    min-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.social-follow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px
}

.social-title {
    font-family: var(--serif);
    font-size: 18px;
    color: white
}

.social-links a {
    background: rgba(255, 255, 255, .06);
    transition: .2s
}

.social-links a:hover {
    background: var(--peach);
    color: var(--plum);
    transform: translateY(-2px)
}

@media(max-width:900px) {
    .themed-map {
        min-height: 470px
    }

    .speaker-slider .speaker-card,
    .speaker-slider .speaker-card img,
    .speaker-slider .speaker-card.tall img {
        height: 520px;
        min-height: 520px
    }
}

@media(max-width:600px) {
    .compact-page-hero {
        padding: 52px 20px 56px
    }

    .compact-page-hero h1 {
        font-size: clamp(40px, 12vw, 58px)
    }

    .themed-map {
        min-height: 420px;
        border-radius: 14px
    }

    .map-address {
        left: 16px;
        right: 16px;
        bottom: 16px
    }

    .themed-map>em {
        right: 12px;
        top: 12px
    }

    .speaker-slider .speaker-card,
    .speaker-slider .speaker-card img,
    .speaker-slider .speaker-card.tall img {
        height: 440px;
        min-height: 440px
    }

    .speaker-slider .speaker-card div {
        min-height: 115px
    }

    .location-photos button {
        aspect-ratio: 4/3
    }

    .location-photos button img {
        height: 100% !important
    }

    :where(p, a, button, span, small, figcaption, label, input) {
        font-size: max(14px, 1em) !important
    }

    .file-icon,
    .privacy-badge,
    .course-year,
    .materials-stats span,
    .video-cover small,
    .article-kicker {
        font-size: 14px !important
    }

    .social-title {
        font-size: 20px !important
    }
}

/* Plain interactive Google Maps */
.interactive-map {
    display: block;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(47, 36, 61, .1)
}

.interactive-map:after {
    display: none
}

.interactive-map iframe {
    position: relative;
    display: block;
    width: 100%;
    height: 620px;
    min-height: 620px;
    border: 0;
    border-radius: 20px;
    filter: none
}

.interactive-map .map-location-label {
    z-index: 2
}

@media(max-width:900px) {
    .interactive-map iframe {
        height: 520px;
        min-height: 520px
    }
}

@media(max-width:600px) {
    .interactive-map iframe {
        height: 460px;
        min-height: 460px;
        border-radius: 14px
    }
}