#schedule-block .schedule__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  box-sizing: border-box;
}
#schedule-block .schedule__item {
  padding: 20px;
  background: var(--bgSecondary);
  border-radius: 10px;
  overflow: hidden;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
#schedule-block .schedule__item-img {
  margin-bottom: 20px;
  overflow: hidden;
  max-height: 150px;
  height: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}
#schedule-block .schedule__item-time {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 1;
  background: var(--primary);
  border-radius: 10px;
  color: var(--bg);
}
#schedule-block .schedule__item-title {
  margin-bottom: 15px;
}
#schedule-block .schedule__item-descr {
  color: var(--mainTextPrimary);
}

@media screen and (max-width: 1500px) {
  #schedule-block .schedule__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #schedule-block .schedule__item-descr {
    max-width: 400px;
  }
}
@media screen and (max-width: 700px) {
  #schedule-block .schedule__item {
    width: 100%;
  }
  #schedule-block .schedule__item-descr {
    max-width: unset;
  }
  #schedule-block .schedule__item-img {
    max-height: 240px;
  }
}
@media screen and (max-width: 600px) {
  #schedule-block .schedule__list {
    display: block;
  }
  #schedule-block .schedule__item {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=block.css.map */