.lcc-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  align-items: start;
  justify-items: center;
}

.lcc-panel {
  /* panel is just a column container */
  background: transparent;
}

.lcc-cards-wrap {
  display: grid;
  gap: 14px;
}

.live-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 3px solid rgba(0, 0, 0, 0.04);
  width: 360px;
}

.live-card img {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 0 18px 18px;
}

.card-inner{
  background-color: transparent;
}

.lcc-card__bar {
  margin-top: -1px;
  height: 40px;
  background: #8f8f8f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lcc-card__bar-text {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 8px;
  text-indent: 8px; /* keep optical centering with letter-spacing */
}

.lcc-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d12b2b;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(209, 43, 43, 0.7);
  animation: lcc-pulse 1.2s ease-out infinite;
}

.lcc-card__name {
  margin: 18px 0 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.btn-live {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 14px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

@keyframes lcc-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(209, 43, 43, 0.7);
  }
  70% {
    transform: scale(1.3);
    opacity: 0.6;
    box-shadow: 0 0 0 8px rgba(209, 43, 43, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(209, 43, 43, 0);
  }
}

.btn-live.is-disabled {
  pointer-events: none;
  opacity: .55;
}

@media (max-width: 768px) {
  /* Turn the 3 panels into swipeable slides */
  .lcc-board {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 16px; /* slide width controls the peek */
    scroll-padding-left: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .lcc-panel {
    flex: 0 0 86%; /* narrower than viewport => shows next card */
    scroll-snap-align: start;
  }

  .live-card {
    width: 100%;
  }
}

