.schedule-block {
  background: url('/schedule-cards-desktop.jpg') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}

.schedule-block-title {
  text-align: center;
  margin-bottom: 8px;
}

.schedule-block-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: #f1c144;
}

.schedule-dates {
  overflow-x: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1px 1px;
  max-width: 636px;
  margin: 0 auto 40px;
  justify-content: center;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: grab;
}

.schedule-dates::-webkit-scrollbar {
  display: none;
}

.schedule-date {
  padding: 8px 16px;
  background: #28282d;
  border-radius: 6px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.schedule-date.selected {
  color: #c8a0f0;
  outline: 1px solid #c8a0f0;
}

.schedule-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.schedule-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 8px;
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1)
    ),
    linear-gradient(
      90deg,
      rgba(196, 157, 251, 0) 0%,
      rgba(196, 157, 251, 0.1) 100%
    );
  max-width: 500px;
}

.schedule-card-time {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: #f1c144;
  padding: 30px 16px;
  background: linear-gradient(
    90deg,
    rgba(196, 157, 251, 0) 0%,
    rgba(196, 157, 251, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  width: 73px;
}

.schedule-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  flex-grow: 1;
  flex-wrap: wrap;
  width: 427px;
}

.schedule-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  margin: 0 0 4px;
  width: 100%;
}

.schedule-card-prices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.schedule-card-bu,
.schedule-card-gtd {
  color: #919196;
  margin: 0;
}

.schedule-card-bu-content,
.schedule-card-gtd-content {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

@media screen and (max-width: 900px) {
  .schedule-block {
    padding: 60px 0;
  }
}

@media screen and (max-width: 700px) {
  .schedule-block {
    padding: 40px 0;
  }

  .schedule-block-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 36.4px;
  }

  .schedule-block-description {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 24px;
  }

  .schedule-dates {
    justify-content: flex-start;
    padding: 1px 1px;
  }
  .schedule-date {
    padding: 8px 12px;
  }

  .schedule-card-time {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding: 34px 24px;
    min-width: 80px;
  }

  .schedule-card-content {
    min-width: 248px;
  }

  .schedule-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
  }

  .schedule-card-bu,
  .schedule-card-gtd {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .schedule-card-gtd-content,
  .schedule-card-bu-content {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
  }
}

@media screen and (max-width: 600px) {
  .schedule-card {
    max-width: 328px;
  }
}
