@import url("https://fonts.googleapis.com/css2?family=Grandstander:wght@400;800&display=swap");

.pvp-program,
.pvp-program * {
  box-sizing: border-box;
}

.pvp-program {
  width: min(100%, 42.5rem);
  margin: 0 auto;
  color: #111111;
  background: transparent;
  font-family: "Grandstander", cursive;
}

.pvp-section + .pvp-section {
  margin-top: 4.06rem;
}

.pvp-section-bar {
  --pvp-bar-color: #c55006;
  --pvp-dot-color: #72231f;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.13rem;
  min-height: 3.06rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--pvp-bar-color);
}

.pvp-section--sunday .pvp-section-bar {
  --pvp-bar-color: #3fa535;
  --pvp-dot-color: #1d591a;
}

.pvp-section-dot {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  border-radius: 999px;
  background: var(--pvp-dot-color);
}

.pvp-section-heading {
  position: absolute;
  left: 3rem;
  right: 3rem;
  top: 50%;
  transform: translateY(-42%);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
}

.pvp-section-heading-inner {
  position: static;
  top: auto;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  line-height: 1;
}

.pvp-section-title {
  font-size: 1.29rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.pvp-section-date {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.pvp-rows {
  width: min(100%, 42.5rem);
  margin-top: 2.06rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
}

.pvp-row {
  display: grid;
  grid-template-columns: 7.81rem minmax(0, 1fr);
  align-items: start;
  column-gap: 1.81rem;
}

.pvp-row + .pvp-row {
  margin-top: 0.43rem;
}

.pvp-time {
  text-align: right;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 400;
  color: #111111;
}

.pvp-time-range {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.05;
}

.pvp-time-range span {
  display: block;
  white-space: nowrap;
}

.pvp-content {
  min-width: 0;
}

.pvp-line {
  margin: 0;
  line-height: 1.18;
  font-size: 1.35rem;
}

.pvp-title {
  color: #111111;
  font-weight: 400;
}

.pvp-detail {
  color: #c55006;
  font-size: 0.94rem;
  font-weight: 400;
  white-space: nowrap;
}

.pvp-detail--sunday {
  display: block;
  margin: 0.2rem 0 0;
  max-width: 23.13rem;
  color: #3fa535;
  line-height: 1.2;
}

.pvp-row--highlight .pvp-time,
.pvp-row--highlight .pvp-title,
.pvp-row--sunday .pvp-time,
.pvp-row--sunday .pvp-title {
  font-weight: 800;
}

.pvp-row--sunday .pvp-time,
.pvp-row--sunday .pvp-title {
  color: #000000;
  font-size: 1.35rem;
}

.pvp-row--sunday {
  margin-bottom: 1.8rem;
}

.pvp-row--sunday .pvp-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  min-width: 0;
  max-width: 100%;
}

.pvp-row--sunday .pvp-title {
  margin: 0;
}

.pvp-row--sunday .pvp-detail {
  display: block;
  min-width: 0;
  max-width: 100%;
  color: #3fa535;
  margin: 0;
  padding: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.25;
}

.pvp-row--sunday + .pvp-row--sunday {
  margin-top: 0;
}

.pvp-row--main-concert .pvp-time,
.pvp-row--main-concert .pvp-title {
  color: #c55006;
  font-size: 1.78rem;
  font-weight: 800;
  line-height: 1.08;
}

.pvp-row--main-concert .pvp-detail {
  font-size: 1.03rem;
}

@media (max-width: 640px) {
  .pvp-program {
    width: calc(100vw - 1rem);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-left: 0;
    padding-right: 0;
  }

  .pvp-section {
    width: 100%;
  }

  .pvp-section + .pvp-section {
    margin-top: 3.31rem;
  }

  .pvp-section-heading {
    left: 2.25rem;
    right: 2.25rem;
  }

  .pvp-section-heading-inner {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
  }

  .pvp-section-title {
    font-size: 0.86rem;
    line-height: 1;
  }

  .pvp-section-date {
    font-size: 0.82rem;
    line-height: 1;
  }

  .pvp-section-bar {
    width: 100%;
    max-width: none;
  }

  .pvp-rows {
    width: calc(100vw - 1.25rem);
    max-width: none;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
    margin-top: 2.35rem;
    padding-left: 0;
    padding-right: 0;
  }

  .pvp-row {
    grid-template-columns: 3.85rem minmax(0, 1fr);
    column-gap: 0.55rem;
  }

  .pvp-content {
    min-width: 0;
  }

  .pvp-time {
    text-align: right;
  }

  .pvp-time,
  .pvp-title {
    font-size: 1.12rem;
  }

  .pvp-row--sunday .pvp-time,
  .pvp-row--sunday .pvp-title {
    font-size: 1.12rem;
  }

  .pvp-detail {
    font-size: 0.82rem;
  }

  .pvp-row--main-concert .pvp-time,
  .pvp-row--main-concert .pvp-title {
    font-size: 1.42rem;
  }

  .pvp-row--sunday {
    margin-bottom: 2rem;
  }

  .pvp-row--sunday .pvp-content {
    gap: 0.12rem;
  }
}

@media (max-width: 380px) {
  .pvp-detail {
    white-space: normal;
  }
}
