.agenda-section {
  padding: 8px 32px;
  border-radius: 8px;
}

.agenda-section h3 {
  color: var(--color-text);
}

.agenda-event {
  margin: 4px 0;
  font-size: 1.33rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 160px;
  row-gap: 2px;
}

.agenda-ligne svg {
  height: 2px;
}
.agenda-ligne path {
  fill: var(--color-text) !important;
}

.agenda-event-action {
  grid-column: 5;
}

.agenda-today {
  background-color: var(--color-beige);
}

.agenda-event-titre {
  text-transform: uppercase;
}
.agenda-event-sous-titre {
  font-weight: normal;
}

.agenda-event-lien {
  width: 97%;
  font-family: var(--font-family-sans) !important;
  font-size: 1.11rem !important;
  text-align: right;
  cursor: pointer;
  text-decoration: dotted underline;
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}

.agenda-event-description {
  font-family: var(--font-family-text);
  font-size: 1.11rem;
  line-height: 1.4;
  font-weight: 200;
  color: var(--color-text-grey);
  grid-column: 1 / -1;
}

.agenda-year-toggle {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
  width: 100%;
}

.agenda-year-content[hidden] {
  display: none;
}

.agenda-year-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

@media screen and (max-width: 1020px) {
  .composition {
    gap: 24px;
  }
  .agenda-section {
    padding: 2px 16px 0;
  }
  .agenda-event {
    row-gap: 1px;
    font-size: 1.11rem;
    margin: 16px 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .agenda-event-action {
    margin-top: 2px;
    grid-column: unset;
  }
  .agenda-event-lien {
    font-size: 0.89rem !important;
    text-align: unset;
  }
  .agenda-archive .agenda-event-lien {
    text-align: right;
  }
  .agenda-event-description {
    font-size: 0.89rem;
  }
}