/* ==========================================================================
   Shared planning styles
   Plan a Workshop page/form, selection chips, and the workshop-page context
   strip. (The former map explorer and region page styles were removed when
   Find Your Workshop moved to the discovery experience — see discovery.css.)
   ========================================================================== */

.plan-workshop-page,
.workshop-context-strip {
    color: #434343;
    font-family: "Roboto", sans-serif;
}

.plan-workshop-page *,
.workshop-context-strip * {
    box-sizing: border-box;
}

.selection-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.selection-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 10px;
    border: 1px solid #eadfd6;
    border-radius: 999px;
    background: #fff;
    color: #434343;
    font-size: 13px;
}

.plan-workshop-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 0;
    border-radius: 12px;
    background: #f05f40;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.plan-workshop-page__submit:hover {
    background: #eb3812;
    color: #fff;
    text-decoration: none;
}

.workshop-context-strip {
    max-width: 1100px;
    margin: 16px auto 0;
    padding: 16px 18px;
    border: 1px solid #ece7e1;
    border-radius: 16px;
    background: #fff;
}

.workshop-context-strip[hidden] {
    display: none !important;
}

.workshop-context-strip p {
    margin: 0 0 8px;
}

.workshop-context-strip a {
    color: #1d6fa5;
    font-weight: 600;
    margin-right: 16px;
}

.workshop-audience-note {
    max-width: 1100px;
    margin: 16px auto 0;
    padding: 18px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ece7e1;
}

.plan-workshop-page {
    background: #fafafa;
    padding: 88px 16px 72px;
}

.plan-workshop-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-workshop-page__form {
    padding: 24px;
    border: 1px solid #ece7e1;
    border-radius: 20px;
    background: #fff;
}

.plan-workshop-field {
    display: block;
    margin-bottom: 16px;
}

.plan-workshop-field__label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.plan-workshop-field__control {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #d8d3cd;
    border-radius: 10px;
    background: #fff;
}

.plan-workshop-field__error {
    display: none;
    margin-top: 6px;
    color: #b42318;
    font-size: 13px;
}

.plan-workshop-field.is-invalid .plan-workshop-field__error {
    display: block;
}

.plan-workshop-field.is-invalid .plan-workshop-field__control {
    border-color: #b42318;
}

.plan-workshop-checkboxes {
    display: grid;
    gap: 8px;
}

.plan-workshop-checkboxes label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.plan-workshop-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.plan-workshop-page__privacy {
    margin-top: 12px;
    font-size: 13px;
}

.thank-you-page,
.privacy-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 96px 16px 72px;
}

.site-footer-regions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin: 12px 0 8px;
}

.site-footer-regions a {
    color: #626262;
    font-size: 13px;
}

@media (min-width: 960px) {
    .plan-workshop-page__grid {
        grid-template-columns: 1fr 1.1fr;
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .plan-workshop-page__submit {
        transition: none;
    }
}
