:root,
.block-listing-ateliers {
--la-primary:      #005AA0;
--la-primary-dark: #013862;
--la-secondary:    #009BDE;
--la-tertiary:     #009BDE;
--la-accent:       #F29BA1;
--la-white:        #ffffff;
--la-border:       #E2E8F0;
--la-text:         #0F1B4D;
--la-text-muted:   #6B7A99;
--la-bg:           #F4F6FB;
--la-font:         inherit;
}
.block-listing-ateliers { font-family: var(--la-font); } .block-listing-ateliers {
--la-line:    #005AA0;
--la-stroke:  2px;
--la-pad-y:   34px; --la-mid-pad: 40px; }
.la-events { display: grid; grid-template-columns: 1fr; } .la-event {
position: relative;
display: flex;
flex-direction: column;
padding: var(--la-pad-y) 0;
} .la-event + .la-event { border-top: var(--la-stroke) solid var(--la-line); } @media (min-width: 861px) {
.la-events {
grid-template-columns: 1fr 1fr;
align-items: stretch; }
.la-event + .la-event { border-top: 0; } .la-event:nth-child(odd)  { padding-right: var(--la-mid-pad); }
.la-event:nth-child(even) { padding-left:  var(--la-mid-pad); } .la-event::after {
content: "";
position: absolute;
top: var(--la-pad-y);
bottom: var(--la-pad-y);
width: 1px;
background: var(--la-line);
pointer-events: none;
}
.la-event:nth-child(odd)::after  { right: 0; }
.la-event:nth-child(even)::after { left:  0; } .la-event:nth-child(n+3)::before {
content: "";
position: absolute;
top: 0;
height: var(--la-stroke);
background: var(--la-line);
pointer-events: none;
}
.la-event:nth-child(n+3):nth-child(odd)::before  { left: 0;              right: var(--la-mid-pad); }
.la-event:nth-child(n+3):nth-child(even)::before { left: var(--la-mid-pad); right: 0; }
}
.la-event__body { flex: 1 1 auto; } .la-event__surtitre {
margin: 0 0 4px;
color: #F29BA1;
font-family: "UniformCondensed", sans-serif;
font-weight: 600;
font-size: 30px;
line-height: 1;
text-transform: uppercase;
} .block-listing-ateliers .la-event__titre {
margin: 0 0 18px;
color: #009BDE !important; font-family: "UniformCondensed", sans-serif;
font-weight: 700;
font-size: 46px;
line-height: 1;
} .la-event__meta {
list-style: none;
margin: 0 0 26px;
padding: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.la-event__meta li {
position: relative;
padding-left: 22px;
color: #000;
font-family: "Roboto", sans-serif;
font-weight: 500;
font-size: 14px;
line-height: 1.55;
}
.la-event__meta li::before {
content: '';
position: absolute;
left: 0;
top: .5em;
width: 8px;
height: 8px;
border-radius: 50%;
background: #F29BA1;
}
.la-event__desc { font-weight: 400; } .la-event__cta { margin-top: auto; }
.la-btn-inscrire {
display: inline-block;
border: none;
cursor: pointer;
background: #009BDE;
color: #fff;
font-family: "UniformCondensed", sans-serif;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .01em;
padding: 13px 40px;
border-radius: 9999px;
transition: background .2s;
}
.la-btn-inscrire:hover { background: #007cb2; }
.la-btn-inscrire--disabled { background: #9fb3c8; cursor: not-allowed; opacity: .85; }
.la-empty { color: var(--la-text-muted); padding: 20px 0; } @media (max-width: 860px) {
.block-listing-ateliers .la-event__titre { font-size: 34px; }
.la-event__surtitre { font-size: 24px; }
}  .atelier-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; }
.atelier-modal[hidden] { display: none; }
.atelier-modal__overlay { position: absolute; inset: 0; background: rgba(7,23,119,.55); backdrop-filter: blur(2px); cursor: pointer; }
.atelier-modal__box { position: relative; background: #fff; width: 100%; max-width: 600px; max-height: 92vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(7,23,119,.2); z-index: 1; animation: modal-in 0.22s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } } .atelier-modal__close {
position: absolute;
top: 20px;
right: 20px;
background: transparent;
border: none;
cursor: pointer;
padding: 4px;
color: var(--la-tertiary);
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
}
.atelier-modal__close svg { fill: var(--la-tertiary); width: 22px; height: 22px; } .atelier-modal__header { padding: 32px 32px 0; }
.atelier-modal__titre {
font-family: var(--la-font);
font-size: 30px;
font-weight: 800;
color: var(--la-primary);
text-transform: uppercase;
margin: 0;
padding-right: 36px;
letter-spacing: 0.02em;
} .atelier-modal__atelier-desc { padding: 12px 0 16px; }
.atelier-modal__atelier-desc .modal-atelier-titre {
font-family: var(--la-font);
font-size: 20px;
font-weight: 700;
color: var(--la-secondary);
text-transform: uppercase;
margin: 0 0 8px;
letter-spacing: 0.01em;
}
.atelier-modal__atelier-desc .modal-atelier-description {
font-family: var(--la-font);
font-size: 16px;
font-weight: 400;
color: var(--la-primary-dark);
line-height: 1.5;
margin: 0;
} #atelier-form { padding: 0 32px 32px; }
.atelier-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; } .atelier-form__row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 0;
}
@media (max-width: 480px) { .atelier-form__row { grid-template-columns: 1fr; margin-bottom: 16px; } } .atelier-form__field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 0; }
.atelier-form__field > label {
font-family: var(--la-font);
font-size: 14px;
font-weight: 600;
color: var(--la-primary-dark);
} .atelier-form__field input[type="text"],
.atelier-form__field input[type="email"],
.atelier-form__field input[type="tel"] {
font-family: var(--la-font);
font-size: 16px;
font-weight: 400;
color: var(--la-secondary);
background: rgba(0, 115, 255, 0.1);
border: none;
border-radius: 0;
padding: 14px 16px;
outline: none;
width: 100%;
box-sizing: border-box;
transition: background 0.2s, box-shadow 0.2s;
}
.atelier-form__field input[type="text"]::placeholder,
.atelier-form__field input[type="email"]::placeholder,
.atelier-form__field input[type="tel"]::placeholder { color: var(--la-secondary); opacity: 0.7; }
.atelier-form__field input[type="text"]:focus,
.atelier-form__field input[type="email"]:focus,
.atelier-form__field input[type="tel"]:focus {
background: rgba(0, 115, 255, 0.15);
box-shadow: 0 0 0 2px rgba(0,115,255,.3);
} .atelier-form__error { 
font-size: 0.75rem; 
color: #c0392b; 
min-height: 14px; 
font-family: 12px; 
line-height: 14px;
margin-bottom: 4px; 
} .atelier-form__dates-fieldset { border: none; padding: 0; margin: 0 0 16px; }
.atelier-form__dates-list { display: flex; flex-direction: column; gap: 12px; }
.atelier-form__date-option span,
.atelier-form__date-option {
display: flex;
align-items: center;
gap: 14px;
cursor: pointer;
font-family: var(--la-font);
font-size: 16px;
font-weight: 700;
color: var(--la-primary-dark);
line-height: 1.3;
user-select: none;
}
.atelier-form__date-option input[type="radio"] {
appearance: none;
-webkit-appearance: none;
width: 22px;
height: 22px;
min-width: 22px;
border: 3px solid var(--la-primary);
border-radius: 50%;
flex-shrink: 0;
cursor: pointer;
position: relative;
transition: border-color 0.2s;
background: #fff;
} .atelier-form__date-option input[type="radio"]:checked { } input[type=radio]:checked::before {
border-radius: 50%;
width: 11px;
height: 11px;
margin: 2.5px;
background: var(--la-accent);
}
.atelier-form__date-option .date-label-date {
font-weight: 800;
text-transform: uppercase;
} .atelier-form__field--checkbox { flex-direction: row; align-items: center; gap: 0; margin-bottom: 12px; }
.atelier-form__checkbox-label {
display: flex;
align-items: center;
gap: 14px;
cursor: pointer;
font-family: var(--la-font);
line-height: 1.4;
user-select: none;
}
.atelier-form__checkbox-label span {
font-size: 14px;
line-height: 20px;
} .atelier-form__field--checkbox:not(.atelier-form__field--rgpd) .atelier-form__checkbox-label {
font-size: 16px;
font-weight: 400;
color: var(--la-primary-dark);
}
.atelier-form__field--checkbox:not(.atelier-form__field--rgpd) .atelier-form__checkbox-label input[type="checkbox"] {
appearance: none;
-webkit-appearance: none;
width: 22px;
height: 22px;
min-width: 22px;
border: 3px solid var(--la-primary);
border-radius: 50%;
flex-shrink: 0;
cursor: pointer;
margin-top: 1px;
background: #fff;
position: relative;
transition: background 0.2s, border-color 0.2s;
}
.atelier-form__field--checkbox:not(.atelier-form__field--rgpd) .atelier-form__checkbox-label input[type="checkbox"]:checked { }
.atelier-form__field--checkbox:not(.atelier-form__field--rgpd) .atelier-form__checkbox-label input[type="checkbox"]:checked::before {
content: '';
position: absolute;
top: 0;
left: 0;
transform: none;
width: 11px;
height: 11px;
background: var(--la-accent);
border-radius: 50%;
margin: 2.5px;
} #atelier-accompagnement-detail-wrap input[type="text"] {
font-family: var(--la-font);
font-size: 16px;
color: var(--la-secondary);
background: rgba(0, 115, 255, 0.1);
border: none;
border-radius: 6px;
padding: 14px 16px;
outline: none;
width: 100%;
box-sizing: border-box;
}
#atelier-accompagnement-detail-wrap input[type="text"]::placeholder { color: var(--la-secondary); opacity: 0.7; } .atelier-form__footer {
display: flex;
align-items: flex-end;
gap: 16px;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid rgba(0,115,255,0.15);
}
@media (max-width: 640px) {
.atelier-form__footer {
flex-flow: column;
}
}
.atelier-form__field--rgpd {
flex: 1;
margin-bottom: 0;
} .atelier-form__field--rgpd .atelier-form__checkbox-label {
font-size: 13px;
font-weight: 400;
color: var(--la-primary-dark);
align-items: flex-start;
}
.atelier-form__field--rgpd .atelier-form__checkbox-label input[type="checkbox"] {
appearance: none;
-webkit-appearance: none;
width: 20px;
height: 20px;
min-width: 20px;
border: 3px solid var(--la-accent);
border-radius: 0;
flex-shrink: 0;
cursor: pointer;
margin-top: 1px;
background: #fff;
position: relative;
transition: background 0.15s;
} .atelier-form__field--rgpd .atelier-form__checkbox-label input[type="checkbox"]:checked { }
.atelier-form__field--rgpd .atelier-form__checkbox-label input[type="checkbox"]:checked::before {
content: '';
position: absolute;
top: 0;
left: 0;
transform: none;
width: 11px;
height: 11px;
background: var(--la-primary);
border-radius: 0;
margin: 1.5px;
} .atelier-form__submit {
flex-shrink: 0;
align-self: flex-end;
white-space: nowrap;
} .atelier-spinner { width: 18px; height: 18px; animation: spin 0.8s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } } .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; } .atelier-form__recaptcha-notice { margin-top: 12px; font-size: 0.72rem; color: var(--la-text-muted); font-family: var(--la-font); text-align: center; line-height: 1.5; }
.atelier-form__recaptcha-notice a { color: var(--la-secondary); text-decoration: none; } .atelier-form__success { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 32px 28px; text-align: center; }
.atelier-form__success svg { width: 48px; height: 48px; fill: #27ae60; }
.atelier-form__success p { font-family: var(--la-font); font-size: 0.95rem; color: var(--la-text); line-height: 1.6; margin: 0; } .atelier-form__error-global { margin: 0 32px 20px; padding: 12px 16px; background: #fdf0f0; border: 1px solid #f5c6cb; border-radius: 7px; }
.atelier-form__error-global p { font-family: var(--la-font); font-size: 0.85rem; color: #721c24; margin: 0; }
#listing-ateliers {
padding-bottom: 40px;
} :root,
.block-listing-ateliers {
--la-primary:      #005AA0;
--la-primary-dark: #013862;
--la-secondary:    #009BDE;
--la-tertiary:     #009BDE;
--la-accent:       #F29BA1;
} #listing-ateliers { padding-bottom: 40px; }
@media (min-width: 640px)  { #listing-ateliers { padding-bottom: 64px; } }
@media (min-width: 1024px) { #listing-ateliers { padding-bottom: 120px; } } .block-listing-ateliers .la-card { background-color: var(--la-primary); }
.block-listing-ateliers .la-card:hover { background-color: var(--la-primary-dark); } .block-listing-ateliers .la-card__titre { color: #fff !important; } .block-listing-ateliers .la-card__date { color: #fff; }
.block-listing-ateliers .la-card:hover .la-card__date { color: var(--la-accent); } .block-listing-ateliers .la-card__description {
display: -webkit-box;
-webkit-line-clamp: 5;
line-clamp: 5;
-webkit-box-orient: vertical;
overflow: hidden;
}  .atelier-modal__titre::before,
.atelier-modal__header h2::before { content: none !important; display: none !important; } .atelier-modal input[type="text"],
.atelier-modal input[type="email"],
.atelier-modal input[type="tel"] {
background: #fff !important;
border: 1px solid #005AA0 !important;
border-radius: 24px !important;
color: #333 !important;
padding: 12px 18px !important;
font-family: "Roboto", ui-sans-serif, system-ui, sans-serif;
font-size: 15px;
font-weight: 500;
box-shadow: none;
transition: border-color .2s, box-shadow .2s;
}
.atelier-modal input[type="text"]::placeholder,
.atelier-modal input[type="email"]::placeholder,
.atelier-modal input[type="tel"]::placeholder { color: #707070; opacity: 1; }
.atelier-modal input[type="text"]:focus,
.atelier-modal input[type="email"]:focus,
.atelier-modal input[type="tel"]:focus {
border-color: #009BDE !important;
box-shadow: 0 0 0 3px rgba(0,155,222,.15);
outline: none;
} .atelier-modal .atelier-form__submit {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
background: #009BDE;
color: #fff;
border: 1px solid #009BDE;
border-radius: 24px;
padding: 12px 40px;
font-family: "UniformCondensed", "UniformExtraCondensed", "Roboto", sans-serif;
font-size: 18px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .01em;
line-height: 1.1;
cursor: pointer;
transition: background .2s, border-color .2s;
}
.atelier-modal .atelier-form__submit:hover { background: #007cb2; border-color: #007cb2; }
.atelier-modal .atelier-form__submit .atelier-form__submit-text { color: #fff; } .atelier-modal .atelier-form__field--checkbox input[type="checkbox"] {
appearance: none;
-webkit-appearance: none;
width: 20px;
height: 20px;
min-width: 20px;
border: 2px solid #005AA0 !important;
border-radius: 4px !important;
background: #fff !important;
cursor: pointer;
position: relative;
flex-shrink: 0;
margin: 0;
transition: background .15s, border-color .15s;
}
.atelier-modal .atelier-form__field--checkbox input[type="checkbox"]:checked {
background: #009BDE !important;
border-color: #009BDE !important;
} .atelier-modal .atelier-form__field--checkbox input[type="checkbox"]:checked::before {
content: '';
position: absolute;
left: 5px;
top: 1px;
width: 5px;
height: 10px;
border: solid #fff;
border-width: 0 2px 2px 0;
border-radius: 0;
transform: rotate(45deg);
background: none !important;
margin: 0 !important;
} .atelier-modal__close, .atelier-modal__close svg { color: #005AA0; fill: #005AA0; } .atelier-modal .modal-atelier-titre { color: #005AA0; } .atelier-modal [hidden] { display: none !important; }