/* Fenêtre d'informations des concours */
.contest-info-modal[hidden]{display:none!important}
.contest-info-modal{position:fixed;inset:0;z-index:10000;display:grid;place-items:center;padding:18px}
.contest-info-backdrop{position:absolute;inset:0;background:rgba(2,20,43,.72);backdrop-filter:blur(4px)}
.contest-info-dialog{position:relative;width:min(680px,100%);max-height:min(82vh,760px);overflow:auto;border-radius:20px;background:#fff;box-shadow:0 28px 80px rgba(0,0,0,.35);border:1px solid rgba(255,255,255,.65)}
.contest-info-header{padding:22px 64px 18px 24px;background:linear-gradient(135deg,#07386e,#0d68bd);color:#fff}
.contest-info-kicker{display:block;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:#d8ecff}
.contest-info-header h2{margin:5px 0 0;color:#fff;font-size:clamp(1.7rem,4vw,2.45rem)}
.contest-info-close{position:absolute;right:16px;top:15px;width:38px;height:38px;border:0;border-radius:50%;background:rgba(255,255,255,.16);color:#fff;font-size:1.45rem;cursor:pointer}
.contest-info-close:hover{background:#fff;color:#07386e}
.contest-info-body{padding:22px 24px 25px}
.contest-info-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:18px}
.contest-info-fact{padding:12px 14px;border-radius:12px;background:#f2f6fb;border:1px solid #dce6f1}
.contest-info-fact span{display:block;margin-bottom:4px;font-size:.68rem;font-weight:900;text-transform:uppercase;color:#59708d}
.contest-info-fact strong{color:#082f60;font-size:.98rem}
.contest-info-section{padding-top:17px;border-top:1px solid #e0e7ef}
.contest-info-section h3{margin:0 0 10px;color:#082f60;font-size:1.05rem}
.contest-info-text{line-height:1.65;color:#263b57;white-space:normal}
.contest-info-empty{padding:12px 14px;border-radius:10px;background:#fff8e8;color:#8a5700}
.contest-info-docs{display:grid;gap:8px}
.contest-info-doc{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 12px;border-radius:10px;background:#f4f8fc;color:#0756a4;font-weight:800}
body.contest-modal-open{overflow:hidden}
@media(max-width:600px){.contest-info-modal{padding:8px}.contest-info-dialog{max-height:92vh;border-radius:15px}.contest-info-header{padding:18px 56px 15px 17px}.contest-info-body{padding:16px}.contest-info-facts{grid-template-columns:1fr}.contest-info-close{right:10px;top:10px}}

/* État de l'heure sur la page d'accueil */
.contest-release-state{font-weight:900;text-decoration:none;white-space:nowrap}
.contest-release-state.is-waiting{color:#d97706}
.contest-release-state.is-released{color:#15803d}
.contest-release-state.is-pulsing{animation:contestReleasePulse 1.7s ease-in-out infinite}
@keyframes contestReleasePulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.55;transform:scale(1.035)}}
@media(prefers-reduced-motion:reduce){.contest-release-state.is-pulsing{animation:none}}
button.contest-action-info{font:inherit;cursor:pointer}
