.actualites-wrapper {
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 1.5rem;
}

.actualites-wrapper h1 {
  color: #0C5B94;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
}

/* GRID */
.actualites-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 960px) {
  .actualites-grid {
    grid-template-columns: 1fr;
  }
}

/* CALENDRIER */
.calendar-column {
  background: linear-gradient(135deg, #0C5B94, #ffffff);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(12, 91, 148, 0.08);
}

.calendar-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.calendar-header h2 {
  font-size: 1.25rem;
  color: #0C5B94;
}

.calendar-header span {
  font-size: 0.85rem;
  color: #64748b;
  background: #e2edff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  align-self: flex-start;
}

/* DATE PICKER */
.date-picker {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  background: white;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

/* ACTUALITES */
.actualites-column {
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(12, 91, 148, 0.08);
  background: linear-gradient(135deg, #D12517, #ffffff);
}

.actu-card {
  background-color: white;
  padding: 1.25rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}

.actu-card h2 {
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-size: 1.1rem;
}

.actu-card p {
  margin: 0.15rem 0;
  font-size: 0.95rem;
  color: #475569;
}

/* EVENTS */
.events-column {
  background: linear-gradient(135deg, #FFCC00, #ffffff);
  padding: 1.25rem;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(251, 191, 36, 0.15);
  border: 1px solid #fde68a;
}

.events-column h3 {
  color: #92400e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
}

.events-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-item {
  background-color: white;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border-left: 4px solid #FBBF24;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  font-size: 0.9rem;
}

.event-item strong {
  color: #92400e;
}

.event-item span {
  color: #1f2933;
}

.event-item small {
  color: #6b7280;
}

/* TEXT */
.no-actu {
  font-style: italic;
  color: #64748b;
}

.status-error {
  color: #b01f13;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}