/* calendly-embed – c-calendly */

.c-calendly {
    padding: 5rem 1.5rem;
}

.c-calendly__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.c-calendly__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.c-calendly__headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.875rem;
}

.c-calendly__intro {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0 0 2rem;
    max-width: 720px;
}

/* Widget container – single by default, two-col when modifier present */
.c-calendly__widgets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.c-calendly--two-col .c-calendly__widgets {
    grid-template-columns: 1fr 1fr;
}

.c-calendly__widget {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.c-calendly__widget-label {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2563eb;
}

.c-calendly__embed {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* Ensure Calendly iframe fills the container */
.c-calendly__embed .calendly-inline-widget {
    width: 100% !important;
}

@media (max-width: 768px) {
    .c-calendly--two-col .c-calendly__widgets {
        grid-template-columns: 1fr;
    }
}
