:root {
    --ccb-ink: #20251f;
    --ccb-muted: #65716a;
    --ccb-line: #e7e4dc;
    --ccb-accent: #b76347;
    --ccb-white: #ffffff;
}

.ccb-booking {
    margin: 0 auto;
    background: #FBF9F4;
    overflow: hidden;
    color: var(--ccb-ink);
    font-family: inherit;
}
.calendly {
    width: 920px;
    border: 0.67px solid #D1D1C1;
    box-shadow: 0px 18px 50px -24px #2D332859;
    border-radius: 24px;
    margin: auto;
    margin-top: 56px;
}
.ccb-header {
    padding: 32px 40px 24px 40px;
    background: #FBFAF7;
    border-bottom: 0.67px solid #ECEAE3;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.ccb-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: #21374B;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.56px;
    font-family: 'Montserrat';
}

.ccb-brand-icon {
    color: var(--ccb-accent);
    font-size: 15px;
}

.ccb-header h2 {
    margin: 0 0 4px;
    font-size: 21.6px;
    line-height: 32.4px;
    font-weight: 600;
    letter-spacing: -0.54px;
    font-family: 'Montserrat';
    color: #1F241B;
}

.ccb-header p {
    margin: 0;
    color: #66726a;
    font-family: Georgia, serif;
    font-size: 16px;
}

.ccb-session-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 24px 40px;
    background: #fff;
    border-bottom: 0.67px solid #ECEAE3;
}

.ccb-session-card {
    position: relative;
    text-align: left;
    padding: 14px 16px;
    min-height: 106px;
    border-radius: 13px;
    background: #fff;
    color: var(--ccb-ink);
    cursor: pointer;
    transition: .18s ease;
    border: 0.67px solid #E4E1D8;
}

.ccb-session-card:hover {
    border-color: #c9b7a9;
    transform: translateY(-1px);
}

.ccb-session-card.is-selected {
    background: #FBF1EC;
    box-shadow: 0px 1px 2px 0px #0000000D;
    border: 0.67px solid #A65D43;
}

.ccb-session-card.is-coming-soon {
    opacity: .7;
}

.ccb-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #21374B;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.32px;
    line-height: 19.2px;
}

.ccb-session-card.is-selected .ccb-card-top {
    color: var(--ccb-accent);
}

.ccb-clock {
    font-size: 20px;
    line-height: 1;
    color: #a9aaa4;
    font-weight: 400;
}

.ccb-session-card strong {
    display: block;
    margin-top: 8px;
    font-family: 'Libre Baskerville';
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.ccb-session-card small {
    display: block;
    margin-top: 5px;
    color: #62717E;
    font-size: 12.48px;
    line-height: 18.72px;
}

.ccb-calendly-wrap {
    min-height: 760px;
    position: relative;
    background: #fff;
}

.ccb-calendly-container {
    width: 100%;
}

.ccb-calendly-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    min-height: 760px;
    background: #fff;
    color: #69736d;
    font-size: 14px;
}

.ccb-calendly-loading[hidden] {
    display: none;
}

.ccb-coming-soon {
    min-height: 430px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 40px;
    text-align: center;
    color: #69736d;
}

.ccb-coming-soon strong {
    color: var(--ccb-ink);
    font-size: 20px;
}

.ccb-coming-soon p {
    margin: 8px 0 0;
    font-family: Georgia, serif;
}

.ccb-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    color: #62717E;
    font-family: 'Libre Baskerville';
    font-size: 13.12px;
    background: #FBFAF7;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    border-top: 0.67px solid #ECEAE3;
}

p.ccb-booking-p.bps {
    margin-top: 32px;
}

.ccb-powered {
    color: #75828D;
    font-family: inherit;
    font-size: 10.88px;
    text-transform: uppercase;
    letter-spacing: .12em;
    line-height: 16.32px;
}


.ccb-booking p span {
    text-align: center;
}

.ccb-booking h2.qfv-h2 {
    text-align: center;
    margin: auto;
    padding-bottom: 24px;
}

p.ccb-booking-p {
    font-family: Arial;
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    letter-spacing: 0.18px;
    text-align: center;
    color: #21374BB2;
    max-width: 672px;
    margin: auto;
}

@media (max-width: 1024px) {
    .calendly {
        width: 100%;
    }
    .ccb-header {
        padding: 25px 22px 21px;
    }

    .ccb-session-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 18px 22px;
    }

    .ccb-summary {
        padding: 15px 22px;
        gap: 12px;
    }

    .ccb-calendly-wrap,
    .ccb-calendly-loading {
        min-height: 760px;
    }
}

@media (max-width: 720px) {
    .qfv-hero::before {
        background: linear-gradient(178deg, rgb(188 209 229 / 29%) 0%, rgb(160 65 13 / 93%) 100%);
    }
    .ccb-session-grid {
        grid-template-columns: 1fr;
    }

    .ccb-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .ccb-header h2 {
        font-size: 22px;
    }
    .colophon-widget.widget-wrapper {
        margin: 0px;
    }
    .qfv-journey {
        padding: 20px 7vw 40px;
    }
}
