.schedule {
  position: relative;
  font-family: "Fira Sans", sans-serif;
  color: white;
  line-height: 1.2;
  width: 100%;
  max-width: 962px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
}

/* .schedule::after {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 10%;
} */

.schedule *,
.schedule *::before,
.schedule *::after {
  box-sizing: inherit;
}

.schedule-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule-block:not(:last-child) {
  margin-bottom: 40px;
}

.schedule__title {
  text-align: center;
  font-size: clamp(30px, 5.5vw, 40px);
  font-weight: 700;
  margin: 0;
  margin-bottom: 36px;
}

.schedule__date {
  position: relative;
  width: 137px;
  height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 30px;
  border-radius: 50%;
  border: 2px solid rgb(151, 29, 217);
  font-weight: 600;
  margin-bottom: 20px;
}

.schedule__date::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: 0;
  bottom: 0;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  //border: 6px solid rgb(78, 14, 113);
  border-radius: 50%;
  z-index: -1;
}

.schedule__date::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: 0;
  bottom: 0;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  //border: 10px solid rgb(31, 5, 46);
  border-radius: 50%;
  z-index: -2;
}

.schedule__date span:not(:last-child) {
  margin-bottom: 8px;
}

.schedule-accordion {
  width: 100%;
  padding: 0 20px;
}

.schedule-accordion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 40px;
}

.schedule-accordion-item--active .schedule-accordion-item__content {
  display: block;
}

.schedule-accordion-item__top {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 450px;
}

.schedule-accordion-item__icon {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.schedule-accordion-item__lead {
  text-align: center;
  font-size: clamp(20px, 4vw, 25px);
  margin: 0;
}

.schedule-accordion-item__trigger {
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  padding: 0;
  transform: rotate(90deg);
  transition: all 300ms;
}

.schedule-accordion-item__trigger:hover {
  opacity: 0.8;
}

.schedule-accordion-item--active .schedule-accordion-item__trigger {
  transform: rotate(-90deg);
}

.schedule-accordion-item__trigger img {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.schedule-accordion-item__content {
  font-size: 23px;
  padding-top: 16px;
  display: none;
  animation: showContent 300ms ease forwards;
}

.schedule-accordion-item__content p {
  margin: 0;
}

.schedule-accordion-item__content img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes showContent {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 576px) {
  .schedule-accordion-item__trigger img {
    width: 30px;
    height: 30px;
  }

  .schedule-accordion-item__top {
    grid-template-columns: 40px 1fr 40px;
    gap: 20px;
  }
}

@media (min-width: 576px) {
  .schedule-accordion-item__trigger img {
    width: 30px;
    height: 30px;
  }

  .schedule-accordion-item__top {
    grid-template-columns: 40px 1fr 40px;
  }
}

@media (min-width: 576px) {
  .schedule-accordion-item__top {
    grid-template-columns: 50px 1fr 50px;
  }
}
