.zl-live-wrapper {
  max-width: 900px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.zl-live-header {
  margin-bottom: 10px;
}

.zl-live-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.zl-live-tab {
  background: #fff;
  border: 1px solid #cfcfcf;
  color: #222;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
}
.zl-live-tab.is-active {
  background: #1f8c98;
  border-color: #1f8c98;
  color: #fff;
}
.zl-live-cats {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 6px 0 6px;
  margin-bottom: 6px;
  border-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  flex-wrap: wrap;
}
.zl-live-cats .zl-live-tab {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 600;
}
.zl-live-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
.zl-live-pager {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.zl-live-pager-bottom {
  justify-content: flex-end;
  margin-top: 12px;
}
.zl-live-pager-count {
  font-size: 12px;
  color: #666;
}
.zl-live-pager-next {
  width: 32px;
  height: 32px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #222;
  border-radius: 3px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.zl-live-pager-next:hover {
  border-color: #1f8c98;
  color: #1f8c98;
}
.zl-live-event {
  display: none;
}
.zl-live-event.is-active {
  display: block;
}

.zl-live-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.zl-live-day {
  font-weight: 700;
  color: #222;
  border-bottom: 2px solid #1f8c98;
  padding-bottom: 6px;
}

.zl-live-item {
  display: grid;
  grid-template-columns: 90px 1fr;
}

.zl-live-time {
  position: relative;
  font-weight: bold;
  color: #1f8c98;
}

.zl-live-dots {
  position: absolute;
  left: 35px;
  top: 25px;
  bottom: -30px;
  border-left: 2px dotted #ccc;
}

.zl-live-card {
  background: #efefef;
  padding: 12px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 15px;
}
.zl-live-card.has-video {
  grid-template-columns: 1fr;
}

.zl-live-thumb {
  width: 160px;
  height: 90px;
}
.zl-live-thumb.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.zl-live-title {
  font-weight: bold;
  margin-bottom: 8px;
}

.zl-live-link {
  color: #555;
}
.zl-live-body {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.zl-live-player {
  margin: 10px 0 6px;
}
.zl-live-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.zl-live-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  border: 0;
}

@media (max-width: 768px) {
  .zl-live-toolbar {
    align-items: flex-start;
    flex-direction: column;
    overflow: hidden;
  }
  .zl-live-cats {
    width: 100%;
  }
  .zl-live-pager {
    align-self: flex-end;
  }
  .zl-live-card {
    grid-template-columns: 1fr;
  }
  .zl-live-thumb {
    width: 0;
    height: 0;
  }
  .zl-live-thumb.has-image {
    display: block;
    width: 100%;
    height: 200px;
  }
}
