/*------------------------------------------
 *  Reponsive
 * -----------------------------------------*/
/*------------------------------------------
 *  BUTTON
 * -----------------------------------------*/
/*------------------------------------------
 *  Before/After
 * -----------------------------------------*/
.programs {
  border: 1px solid var(--wp--preset--color--sixth);
  background: var(--wp--preset--color--white);
}
.programs .program__heading {
  background: var(--wp--preset--color--sixth);
  color: white;
  padding: 12px;
  font-size: var(--pl);
  text-align: center;
  font-weight: 700;
  margin: 0;
}
.programs .program__container {
  position: relative;
  padding: 0 30px 30px;
}
.programs .program__container > p {
  text-align: center;
  margin: 20px 0;
}
.programs ul.program-list {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 460px;
  overflow: auto;
  padding-bottom: 60px;
}
.programs ul.program-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.programs li.program-item {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}
.programs li.program-item:hover {
  background: var(--wp--preset--color--lightgray);
}
.programs li.program-item:first-child .program-item__content {
  padding-top: 0;
}
.programs li.program-item--live {
  padding-top: 30px;
}
.programs li.program-item--live .program-item__date__live {
  color: var(--wp--preset--color--fourth);
  font-weight: 900;
}

.program {
  display: flex;
}
.program .timeline {
  position: relative;
  width: 16px;
  margin-right: 16px;
}
.program .timeline__line {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 1px;
  background: var(--wp--preset--color--third);
}
.program .timeline__line--live {
  background: var(--wp--preset--color--first);
  width: 2px;
}
.program .timeline__line--live::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wp--preset--color--white);
  border: var(--wp--preset--color--first) 2px solid;
}

.program-item__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 0;
  border-bottom: 1px solid var(--wp--preset--color--third);
}
.program-item__content .program-item__date__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program-item__content .program-item__date {
  color: var(--wp--preset--color--first);
  font-weight: 900;
}
.program-item__content .program-item__date__live {
  font-size: 11px;
  text-transform: uppercase;
}
.program-item__content .program-item__date__live::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--wp--preset--color--fourth);
}
.program-item__content .program-item__title {
  color: var(--wp--preset--color--second);
}
.program-item__content .program-item__title > a {
  text-decoration: none;
  color: var(--wp--preset--color--second);
  font-weight: 600;
}
.program-item__content .program-item__title > a:hover {
  text-decoration: underline;
}

.program-btn {
  color: var(--wp--preset--color--white) !important;
  background: var(--wp--preset--color--first);
  text-transform: uppercase;
  border: solid 2px var(--wp--preset--color--first);
  padding: 10px 25px;
  display: block;
  width: fit-content;
  font-size: var(--pbt);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  text-align: center;
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  transition: all ease 0.3s;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  font-weight: 900;
}
.program-btn:hover, .program-btn:active, .program-btn:focus {
  color: var(--wp--preset--color--white) !important;
  background: var(--wp--preset--color--second) !important;
  border-color: var(--wp--preset--color--second) !important;
}
.program-btn:hover {
  background: var(--wp--preset--color--second);
}

@media (max-width: 1400px) {
  .program-btn {
    font-size: var(--psm);
  }
}
@media (max-width: 1024px) {
  .programs {
    margin: 12px;
  }
  .program-item__date {
    font-size: 16px;
  }
  .program-item__title a {
    font-size: 16px;
  }
}/*# sourceMappingURL=block.css.map */