.yt-grid-wrapper {
  padding: 20px;
  background: #fafafa;
}

.yt-video-grid {
  display: grid;
  gap: 20px;
}

.yt-cols-2 .yt-video-grid { grid-template-columns: repeat(2, 1fr); }
.yt-cols-3 .yt-video-grid { grid-template-columns: repeat(3, 1fr); }
.yt-cols-4 .yt-video-grid { grid-template-columns: repeat(4, 1fr); }

.yt-video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.yt-video-card:hover {
  transform: translateY(-4px);
}

.yt-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.yt-embed-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-video-title {
  padding: 10px 15px;
  font-weight: bold;
  font-size: 15px;
  color: #333;
}

.yt-load-more-wrap {
  text-align: center;
  margin-top: 30px;
}
.yt-load-btn {
  background: #ff003e;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.yt-load-btn:hover {
  background: #c7002d;
}


.yt-channel-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.yt-channel-thumb {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

.yt-channel-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}


@media screen and (max-width:767px) {
  .yt-cols-3 .yt-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width:660px) {
  .yt-cols-3 .yt-video-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  #live-info-panel div{
    flex:0 0 auto;
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 15px;
    column-gap: 15px;
  }

  #live-info-panel div a { margin-bottom: 0 !important;}

  #live-info-panel div:nth-child(2){
    display: flex;
    justify-content: flex-start;
  }

}