.agenda-home {
  padding: 95px 0;
  background: #fff;
}

.agenda-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.section-heading span {
  display: block;
  color: var(--fisel-orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.section-heading h2 {
  color: var(--fisel-teal-dark);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  margin: 0;
}

.section-link {
  color: var(--fisel-teal-dark);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.section-link::after {
  content: " →";
  color: var(--fisel-orange);
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.agenda-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0,0,0,.09);
  transition: transform .25s ease, box-shadow .25s ease;
}

.agenda-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,.14);
}

.agenda-card-main {
  display: block;
  color: inherit;
  text-decoration: none;
}

.agenda-media {
  position: relative;
  height: 220px;
  background: var(--fisel-teal-dark);
  overflow: hidden;
}

.agenda-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agenda-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 34px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--fisel-teal), var(--fisel-orange));
}

.agenda-date-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--fisel-orange);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.agenda-content {
  padding: 26px;
}

.agenda-type {
  color: var(--fisel-teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
}

.agenda-card h3 {
  color: var(--fisel-teal-dark);
  font-size: 28px;
  line-height: 1.1;
  margin: 10px 0 18px;
}

.agenda-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #555;
  font-size: 15px;
}

.agenda-tarif {
  margin-top: 18px;
  color: var(--fisel-orange);
  font-weight: 900;
  font-size: 18px;
}

.agenda-actions {
  padding: 0 26px 26px;
}

.agenda-button {
  display: inline-block;
  background: var(--fisel-orange);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.agenda-button:hover {
  color: #fff;
  background: var(--fisel-teal);
}