/* ==========================================================================
   Shared/CalendlyEmbed — Calendly booking widget (dark band + light widget)
   Promoted from CalendlyEmbed.css — cross-template utility
   ========================================================================== */

/* Edge-to-edge band */
.full-width-breakout-calendlyembed {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: var(--primary-color);
    padding: 0;
    font-family: var(--font-heading);
    z-index: 50;
}

/* Inner block */
.calendly-full-section {
    background-color: inherit;
    padding: 6rem 2rem 5rem;
    font-family: var(--font-heading);
    margin-top: 0;
}

/* Color + typography scoped to section */
.full-width-breakout-calendlyembed {
    color: var(--accent-color);
}

    .full-width-breakout-calendlyembed .calendly-title,
    .full-width-breakout-calendlyembed .calendly-subtitle,
    .full-width-breakout-calendlyembed .calendly-paragraph,
    .full-width-breakout-calendlyembed p,
    .full-width-breakout-calendlyembed h1,
    .full-width-breakout-calendlyembed h2,
    .full-width-breakout-calendlyembed h3,
    .full-width-breakout-calendlyembed h4,
    .full-width-breakout-calendlyembed h5,
    .full-width-breakout-calendlyembed h6,
    .full-width-breakout-calendlyembed span {
        color: var(--accent-color);
    }

    .full-width-breakout-calendlyembed .calendly-title {
        font-size: 3rem;
        line-height: 1.2;
        font-weight: 700;
        margin: 2.5rem 0 1.25rem;
        text-align: center;
    }

    .full-width-breakout-calendlyembed .calendly-subtitle {
        font-size: 1.35rem;
        line-height: 1.5;
        font-weight: 600;
        margin: 0 0 1rem 0;
        text-align: center;
    }

    .full-width-breakout-calendlyembed .calendly-paragraph {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        text-align: left;
        width: 100%;
        max-width: 600px;
    }

    .full-width-breakout-calendlyembed a {
        color: var(--accent-color);
        text-decoration: underline;
    }

        .full-width-breakout-calendlyembed a:hover {
            opacity: 0.9;
            text-decoration: none;
        }

/* Layout */
.calendly-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2.25rem;
}

.calendly-content {
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.calendly-widget-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* White card around the iframe for contrast on dark band */
.calendly-inline-widget {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: var(--section-bg-canvas);
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    overflow: hidden;
}

@media (max-width: 768px) {
    .full-width-breakout-calendlyembed .calendly-title {
        font-size: 2.25rem;
        margin-top: 1.75rem;
    }

    .full-width-breakout-calendlyembed .calendly-subtitle {
        font-size: 1.15rem;
    }

    .calendly-full-section {
        padding: 4rem 1.25rem 3rem;
    }

    .calendly-inner {
        gap: 1.75rem;
    }
}
