/* The Voting Minute - Show Styles */


#sidebar-right {
  display: none;
}
#submenu {
  display: none;
}
h1 {
  display: block !important;
}
#show-content {
  max-width: 100%;
  margin: 0 auto;
}

/* Featured Episode */
#featured-episode {
  margin-bottom: 40px;
  background: #f9f9f9;
  border-radius: 8px;
}

#show-feature {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

#show-feature .video-embed {
  flex: 1;
  min-width: 300px;
}

#show-feature .video-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

#show-feature .feature-info {
  flex: 1;
}

#show-feature h2 {
  color: #044467;
  margin-bottom: 15px;
  font-size: 24px;
}

#show-feature p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

#show-feature .button {
  margin-top: 10px;
}

/* More Episodes */
#video-list {
  margin-top: 40px;
}

#video-list h2 {
  color: #044467;
  margin-bottom: 20px;
  font-size: 20px;
}

body #video-list {
  margin: 0;
  padding: 0;
}

#video-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

#video-list li {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

#video-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#video-list a {
  text-decoration: none;
  color: inherit;
}

#video-list img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

#video-list .info {
  padding: 15px;
}

#video-list h3 {
  color: #044467;
  font-size: 16px;
  margin: 0 0 10px 0;
  line-height: 1.4;
}


#video-list .button {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  margin-top: 10px;
}

.video-btn {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-top: 10px;
  background-color: #b1f6d7;
  color: #333;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  box-sizing: border-box;
}

.video-btn:hover {
  background-color: #95ebc4;
}

/* Episode Detail */
#episode-detail {
  margin: 0 auto;
}

#episode-detail h1 {
  color: #044467;
  margin-bottom: 20px;
  font-size: 28px;
}

.video-player {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.video-player iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
}

.episode-description {
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  font-size: 16px;
}

.back-btn {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  #show-feature {
    flex-direction: column;
  }

  #video-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  #show-feature h2 {
    font-size: 20px;
  }

  #episode-detail h1 {
    font-size: 22px;
  }
}
