.dsa-programma {
  width: 100%;
}

.dsa-programma__day {
  border-top: 2px solid #191919;
}

.dsa-programma__day:first-child {
  border-top: none;
}

.dsa-programma__day.is-open > .dsa-programma__header {
  border-top-color: #191919;
}

.dsa-programma__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.dsa-programma__day-label {
  font-weight: 500;
  font-size: 68px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: #e54b48;
}

.dsa-programma__arrow {
  width: 32px;
  height: auto;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.dsa-programma__day.is-open .dsa-programma__arrow {
  transform: rotate(180deg);
}

.dsa-programma__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  padding: 0 0;
}

.dsa-programma__day.is-open > .dsa-programma__body {
  padding-bottom: 0;
}

.dsa-programma__event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0 24px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 2px solid #e54b48;
}

.dsa-programma__event:first-child {
  border-top: 2px solid #e54b48;
}

.dsa-programma__event-time {
  font-weight: 500;
  font-size: 24px;
  line-height: 30.5px;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: #E54B48;
}

.dsa-programma__event-desc {
  /* font-family: "ABC Diatype Unlicensed Trial", sans-serif; */
  font-weight: 500;
  font-size: 24px;
  line-height: 30.5px;
  letter-spacing: -0.05em;
  color: #191919;
}

.dsa-programma__event-desc p {
  margin: 0;
}

.dsa-programma__event-desc a {
  color: inherit;
  text-decoration: underline;
}

.dsa-programma__event-location {
  font-weight: 500;
  font-size: 24px;
  line-height: 30.5px;
  letter-spacing: -0.05em;
  text-align: right;
  white-space: nowrap;
  color: #191919;
}

@media (max-width: 767px) {
  .dsa-programma__day-label {
    font-size: 36px;
  }

  .dsa-programma__event {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .dsa-programma__event-time {
    /* font-size: 18px; */
    /* line-height: 24px; */
  }

  .dsa-programma__event-desc {
    /* font-size: 18px; */
    /* line-height: 24px; */
  }

  .dsa-programma__event-location {
    /* font-size: 18px; */
    /* line-height: 24px; */
    text-align: left;
  }

  .dsa-programma__arrow {
    width: 22px;
  }
}
