.elementor-32290 .elementor-element.elementor-element-e979d59{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8223c45 *//* ====== Base ====== */
.weekend-agenda {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  color: #0f172a;
}

.agenda-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 18px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
}

.agenda-header h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.agenda-subtitle {
  margin: 6px 0 0;
  color: #475569;
  font-size: 14px;
}

.agenda-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

/* ====== Jours ====== */
.agenda-day {
  margin-top: 18px;
}

.day-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 16px;
  color: #0f172a;
}

.day-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* ====== Liste d'événements ====== */
.agenda-list {
  display: grid;
  gap: 12px;
}

.event {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  overflow: hidden;
}

.event-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  min-height: 110px;
}

.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-body {
  display: grid;
  gap: 10px;
  align-content: start;
}

/* Ligne du haut : heure + badge */
.event-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.event-time {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.time {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* Badge */
.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1d4ed8;
  white-space: nowrap;
}

.badge--training {
  border-color: #dcfce7;
  background: #f0fdf4;
  color: #166534;
}

.badge--event {
  border-color: #fae8ff;
  background: #fdf4ff;
  color: #86198f;
}

/* Titre */
.event-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

/* Infos */
.event-info {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 14px;
}

.info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.icon {
  width: 20px;
  text-align: center;
  opacity: 0.9;
}

/* Footer */
.agenda-footer {
  margin-top: 14px;
  color: #64748b;
  font-size: 12px;
}

/* ====== Responsive ====== */
@media (max-width: 640px) {
  .agenda-header {
    flex-direction: column;
    align-items: stretch;
  }

  .event {
    grid-template-columns: 1fr;
  }

  .event-photo {
    min-height: 160px;
  }

  .event-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}/* End custom CSS */