.schedule-hero {
  background: var(--color-navy);
  min-height: 800px;
  padding: 190px var(--container-x) 0;
  position: relative;
}

.schedule-hero > .circle {
  background: radial-gradient(50% 50% at 50% 50%, #d7b56a73 0, #d7b56a00);
  top: 360px;
  height: 829px;
  pointer-events: none;
  position: absolute;
  right: -171px;
  width: 829px;
  z-index: 12;
}

.schedule-hero:before {
  background-image: url("../images/schedule/hero.webp");
  background-position: center -220px;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  content: "";
  height: 683px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  z-index: 0;
}

.schedule-hero:after {
  background: linear-gradient(
    357.2deg,
    #00031c 17.72%,
    rgba(4, 28, 56, 0) 58.67%
  );
  content: "";
  height: 683px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  z-index: 0;
}

.schedule-breadcrumbs {
  align-items: flex-start;
  color: var(--color-gold);
  display: flex;
  font-size: 16px;
  gap: 8px;
  left: var(--container-x);
  letter-spacing: 0.03em;
  line-height: 140%;
  position: absolute;
  right: var(--container-x);
  top: 80px;
  z-index: 2;
}

.schedule-breadcrumbs__home {
  display: block;
  flex: 0 0 20px;
  height: 20px;
  transition: opacity 0.26s ease;
  width: 20px;
  opacity: 0.6;
}

.schedule-breadcrumbs__home:focus-visible,
.schedule-breadcrumbs__home:hover {
  opacity: 1;
}

.schedule-breadcrumbs__home img {
  height: 20px;
  width: 20px;
}

.schedule-breadcrumbs__separator,
.schedule-breadcrumbs__current {
  flex: 0 0 auto;
  opacity: 0.6;
}

.schedule-breadcrumbs[data-animate] {
  --animate-y: -16px;
}

.schedule-hero__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.schedule-hero__title {
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: clamp(44px, 7.8125vw, 92px);
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
}

.schedule-hero__title[data-animate] {
  --animate-blur: 1px;
  --animate-y: 36px;
}

.schedule-hero__subtitle {
  color: var(--color-gold);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 120%;
  text-transform: uppercase;
  width: 100%;
}

.schedule-hero__lead {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 140%;
  width: 100%;
}

.schedule-hero__subtitle[data-animate],
.schedule-hero__lead[data-animate] {
  --animate-y: 20px;
}

.schedule-summary {
  align-items: center;
  background: rgba(1, 3, 28, 0.4);
  border: 1px solid var(--color-border-gold);
  border-radius: 2px;
  display: flex;
  gap: 40px;
  min-height: 238px;
  padding: 34px 70px;
  width: 100%;
}

.schedule-summary[data-animate] {
  --animate-blur: 1px;
  --animate-scale: 0.985;
  --animate-y: 24px;
  transition-duration: 1.05s;
}

.schedule-summary[data-animate] .schedule-summary__stat,
.schedule-summary[data-animate] .schedule-summary__text {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--delay, 0s) + 120ms);
}

.schedule-summary[data-animate] .schedule-summary__text {
  transition-delay: calc(var(--delay, 0s) + 130ms);
}

.schedule-summary[data-animate].is-visible .schedule-summary__stat,
.schedule-summary[data-animate].is-visible .schedule-summary__text {
  opacity: 1;
  transform: translateY(0);
}

.schedule-summary__stat {
  align-items: center;
  display: flex;
  flex: 0 0 420px;
  gap: 40px;
}

.schedule-summary__number {
  color: #d5b584;
  flex: 0 0 170px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  line-height: 130px;
  text-align: center;
}

.schedule-summary__label {
  color: var(--color-gold);
  flex: 0 0 210px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 120%;
  text-align: left;
  text-transform: uppercase;
}

.schedule-summary__text {
  color: #fff;
  flex: 1 1 0;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 140%;
  max-width: 560px;
  text-align: left;
}

.schedule-program {
  background: var(--color-navy);
  padding: 0 var(--container-x) 340px;
  position: relative;
}

.schedule-program > .circle {
  background: radial-gradient(50% 50% at 50% 50%, #d7b56a73 0, #d7b56a00);
  height: 829px;
  pointer-events: none;
  position: absolute;
  left: -325px;
  width: 829px;
  z-index: 12;
  left: -325px;
  bottom: 290px;
}

.schedule-program:before,
.schedule-program:after {
  bottom: 0;
  content: "";
  height: 962px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.schedule-program:before {
  background-image: url("../images/schedule/hero.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-position-y: -700px;
}

.schedule-program:after {
  background: linear-gradient(
    177.2deg,
    #00031c 2.67%,
    rgba(4, 28, 56, 0) 41.33%
  );
}

@media (max-width: 1439px) {
  .schedule-program:before,
  .schedule-program:after {
    height: calc(758px + (100vw - 1024px) * 0.490384);
  }

  .schedule-program:before {
    background-size: calc(1512px + (100vw - 1024px) * 0.980769) auto;
    background-position-y: calc(-510px - (100vw - 1024px) * 0.456731);
  }
}

@media (max-width: 1023px) {
  .schedule-program:before,
  .schedule-program:after {
    height: clamp(350px, calc(350px + (100vw - 375px) * 0.628659), 758px);
  }

  .schedule-program:before {
    background-size: clamp(
        700px,
        calc(700px + (100vw - 375px) * 1.251156),
        1512px
      )
      auto;
    background-position-y: clamp(
      -510px,
      calc(-250px - (100vw - 375px) * 0.400616),
      -250px
    );
  }
}

.schedule-program__inner {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.schedule-week + .schedule-week {
  margin-top: 82px;
}

.schedule-week__heading {
  align-items: center;
  display: flex;
  max-width: 880px;
  min-height: 72px;
  width: 100%;
}

.schedule-week__heading[data-animate] {
  --animate-x: -34px;
}

.schedule-week__title {
  color: #fff;
  flex: 0 0 520px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 52px;
  text-transform: uppercase;
}

.schedule-week__dates {
  color: var(--color-gold);
  flex: 0 0 360px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 120%;
  text-transform: uppercase;
}

.schedule-week__divider {
  background: #d5b584;
  display: block;
  height: 1px;
  margin-top: 36px;
  opacity: 0.8;
  width: 100%;
}

.schedule-week__divider[data-animate] {
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--delay, 0s) + 120ms);
}

.schedule-week__divider[data-animate].is-visible {
  opacity: 0.8;
  transform: scaleX(1);
}

.schedule-week__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.schedule-card {
  background: #01071c;
  border: 1px solid var(--color-border-gold);
  border-radius: 2px;
  box-shadow: 0 2px 36px rgba(2, 44, 95, 0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 381px;
  padding: 26px 28px;
}

.schedule-card[data-animate] {
  --animate-blur: 1px;
  --animate-scale: 0.985;
  --animate-y: 38px;
  transition-duration: 1.05s;
}

.schedule-card[data-animate] .schedule-card__header,
.schedule-card[data-animate] .schedule-card__divider,
.schedule-card[data-animate] .schedule-card__event {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--delay, 0s) + 130ms);
}

.schedule-card[data-animate] .schedule-card__divider {
  transform: scaleX(0);
  transform-origin: left center;
  transition-delay: calc(var(--delay, 0s) + 90ms);
}

.schedule-card[data-animate] .schedule-card__event:nth-child(1) {
  transition-delay: calc(var(--delay, 0s) + 90ms);
}

.schedule-card[data-animate] .schedule-card__event:nth-child(2) {
  transition-delay: calc(var(--delay, 0s) + 105ms);
}

.schedule-card[data-animate] .schedule-card__event:nth-child(3) {
  transition-delay: calc(var(--delay, 0s) + 120ms);
}

.schedule-card[data-animate] .schedule-card__event:nth-child(4) {
  transition-delay: calc(var(--delay, 0s) + 110ms);
}

.schedule-card[data-animate] .schedule-card__event:nth-child(5) {
  transition-delay: calc(var(--delay, 0s) + 120ms);
}

.schedule-card[data-animate] .schedule-card__event:nth-child(6) {
  transition-delay: calc(var(--delay, 0s) + 130ms);
}

.schedule-card[data-animate].is-visible .schedule-card__header,
.schedule-card[data-animate].is-visible .schedule-card__divider,
.schedule-card[data-animate].is-visible .schedule-card__event {
  opacity: 1;
  transform: translateY(0);
}

.schedule-card[data-animate].is-visible .schedule-card__divider {
  transform: scaleX(1);
}

.schedule-card__header {
  align-items: center;
  display: flex;
  gap: 24px;
  height: 42px;
}

.schedule-card__header--tall {
  height: 58px;
}

.schedule-card__date {
  align-items: center;
  background: #d5b584;
  border-radius: 2px;
  color: #04061b;
  display: flex;
  flex: 0 0 154px;
  font-size: 14px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 16px;
  position: relative;
  text-align: center;
}

.schedule-card__header--tall .schedule-card__date {
  top: 0;
}

.schedule-card__day {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  min-width: 0;
}

.schedule-card__day span {
  color: #d5b584;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 18px;
  text-transform: uppercase;
}

.schedule-card__day small {
  color: #b9c0d1;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
}

.schedule-card__divider {
  background: #d5b584;
  display: block;
  height: 1px;
  opacity: 0.7;
  width: 100%;
}

.schedule-card__events {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
}

.schedule-card__event {
  display: grid;
  gap: 18px;
  grid-template-columns: 68px minmax(0, 1fr);
  min-height: 38px;
}

.schedule-card__event dt {
  color: var(--color-gold-light);
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
}

.schedule-card__event dd {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.schedule-card__event .schedule-card__event-note {
  color: #d5b584;
}

.schedule-card__event .schedule-card__event-end {
  font-weight: 500;
}

.schedule-note {
  align-items: center;
  background: #01031c;
  border: 1px solid var(--color-border-gold);
  border-radius: 2px;
  display: flex;
  gap: 40px;
  margin-top: 82px;
  min-height: 166px;
  padding: 36px 40px;
  position: relative;
  z-index: 1;
}

.schedule-note[data-animate] {
  --animate-scale: 0.985;
  --animate-y: 28px;
}

.schedule-note[data-animate] strong,
.schedule-note[data-animate] p {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--delay, 0s) + 120ms);
}

.schedule-note[data-animate] p {
  transition-delay: calc(var(--delay, 0s) + 30ms);
}

.schedule-note[data-animate].is-visible strong,
.schedule-note[data-animate].is-visible p {
  opacity: 1;
  transform: translateY(0);
}

.schedule-note strong {
  color: #d5b584;
  flex: 0 0 220px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}

.schedule-note p {
  color: #fff;
  flex: 1 1 0;
  font-size: 22px;
  line-height: 34px;
}

@media (max-width: 1439px) and (min-width: 768px) {
  .schedule-hero {
    min-height: 794px;
    padding-top: 182px;
  }

  .schedule-hero__inner {
    max-width: calc(100vw - var(--container-x) * 2);
  }

  .schedule-hero__title {
    color: #f5eede;
  }
}

@media (max-width: 1180px) {
  .schedule-hero > .circle {
    top: 400px;
    right: -587px;
  }
  .schedule-program > .circle {
    bottom: 195px;
  }
}

@media (max-width: 900px) and (min-width: 768px) {
  .schedule-summary {
    padding-left: 36px;
    padding-right: 36px;
  }

  .schedule-summary__stat {
    flex-basis: 330px;
    gap: 28px;
  }

  .schedule-summary__number {
    flex-basis: 140px;
    font-size: 104px;
  }

  .schedule-summary__label {
    flex-basis: 162px;
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .schedule-hero {
    min-height: unset;
    padding: 182px 15px 40px;
  }

  .schedule-hero > .circle,
  .schedule-program > .circle {
    display: none;
  }

  .schedule-breadcrumbs {
    left: 15px;
    right: 15px;
  }

  .schedule-hero__inner {
    max-width: unset;
  }

  .schedule-hero__title {
    color: #f5eede;
    text-wrap: balance;
  }

  .schedule-hero__subtitle {
    font-size: clamp(20px, 4vw, 30px);
  }

  .schedule-summary {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    min-height: 378px;
    padding: 29px 30px;
  }

  .schedule-summary__stat {
    align-items: center;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0;
    width: 210px;
  }

  .schedule-summary__number {
    flex: 0 0 auto;
    width: 170px;
  }

  .schedule-summary__label {
    flex: 0 0 auto;
    text-align: center;
    width: 210px;
  }

  .schedule-summary__text {
    flex: 0 0 auto;
    max-width: unset;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 374px) {
  .schedule-hero {
    padding-left: 15px;
    padding-right: 15px;
  }

  .schedule-summary {
    padding-left: 20px;
    padding-right: 20px;
  }

  .schedule-summary__text {
    max-width: none;
  }
}

@media (max-width: 1180px) and (min-width: 768px) {
  .schedule-week__heading {
    gap: 24px;
    max-width: 100%;
  }

  .schedule-week__title {
    flex: 1 1 auto;
  }

  .schedule-week__dates {
    flex: 0 1 360px;
  }
}

@media (max-width: 900px) and (min-width: 768px) {
  .schedule-week__title {
    font-size: 38px;
    line-height: 46px;
  }

  .schedule-week__dates {
    font-size: 24px;
  }

  .schedule-card {
    min-height: 416px;
  }

  .schedule-card__date {
    flex-basis: 120px;
  }

  .schedule-card__event {
    gap: 5px;
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 25px;
  }
}

@media (max-width: 767px) {
  .schedule-program {
    padding: 0 15px 340px;
  }

  .schedule-week + .schedule-week {
    margin-top: 40px;
  }

  .schedule-week__heading {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    min-height: 86px;
    text-align: center;
  }

  .schedule-week__title {
    flex: 0 0 auto;
    font-size: 34px;
    line-height: 52px;
    width: 100%;
  }

  .schedule-week__dates {
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 24px;
    width: 100%;
  }

  .schedule-week__divider {
    margin-top: 36px;
  }

  .schedule-week__grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .schedule-card {
    min-height: auto;
    padding: 26px 28px;
  }

  .schedule-card__header {
    align-items: flex-start;
    height: 42px;
  }

  .schedule-card__header--tall {
    height: auto;
    min-height: 85px;
  }

  .schedule-card__date {
    flex-basis: 120px;
  }

  .schedule-card__day {
    flex-basis: 145px;
  }

  .schedule-card__event {
    gap: 5px;
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 25px;
  }

  .schedule-note {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    min-height: 270px;
    padding: 20px;
    text-align: center;
  }

  .schedule-note strong {
    flex: 0 0 auto;
    text-align: center;
    width: 100%;
  }

  .schedule-note p {
    flex: 0 0 auto;
    line-height: 34px;
    width: 100%;
  }
}

@media (max-width: 374px) {
  .schedule-program {
    padding-left: 15px;
    padding-right: 15px;
  }

  .schedule-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .schedule-card__header {
    gap: 14px;
  }

  .schedule-card__date {
    flex-basis: 116px;
    font-size: 13px;
  }

  .schedule-card__day {
    flex-basis: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .schedule-week__divider[data-animate],
  .schedule-summary[data-animate] .schedule-summary__stat,
  .schedule-summary[data-animate] .schedule-summary__text,
  .schedule-card[data-animate] .schedule-card__header,
  .schedule-card[data-animate] .schedule-card__divider,
  .schedule-card[data-animate] .schedule-card__event,
  .schedule-note[data-animate] strong,
  .schedule-note[data-animate] p {
    opacity: 1;
    transform: none;
    transition-duration: 1ms !important;
  }
}
