.video-widget-container {
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Video Widget Styles */
.video-widget {
  position: relative;
  z-index: 1;
}

.video-widget-container .section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  position: relative;
  left: -10px;
}

/* Featured Video */
.video-container {
  border-radius: 8px;
  overflow: hidden;
  background-color: #000;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  transition: all 0.3s;
}

.video-container:hover .video-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s;
  border: 4px solid #fff;
  z-index: 2;
  opacity: 0;
  transition: all 350ms ease;
}

.video-container:hover .play-button {
  opacity: 1;
}

.play-button svg {
  stroke-width: 4px;
}

.video-duration {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--neutral-600);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.video-widget-container .video-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.3;
  transition: color 0.2s;
}

.video-widget-container .video-title a {
  color: #fff;
  text-decoration: none;
}

.video-subtitle {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Video Suggestions */
.video-suggestions {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: -10px;
}

.video-widget-container .suggestion-item {
  padding: 10px;
  margin-bottom: 0;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}

.suggestion-item:hover {
  background-color: #121314;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(29, 73, 203, 0.1);
}

.suggestion-item:last-child {
  margin-bottom: 0;
}

.sponsored-item {
  background: linear-gradient(
    to right,
    rgba(29, 73, 203, 0.02) 0%,
    rgba(29, 73, 203, 0.08) 100%
  );
  border: 1px solid rgba(29, 73, 203, 0.15);
}

.sponsored-label {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #1d49cb 0%, #1539a3 100%);
  color: white;
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 0 8px 0 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sponsor-title {
  font-weight: bold;
  text-transform: uppercase;
}

.sponsor-logo img {
  width: 22px;
  height: 22px;
  border-radius: 10px;
}

.suggestion-thumbnail {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.suggestion-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.video-duration-sm {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--neutral-600);
  color: white;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 500;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.video-widget-container .suggestion-content {
  padding-left: 15px;
}

.video-widget-container .suggestion-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.3;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.suggestion-title a {
  color: #fff;
  text-decoration: none;
}

.video-widget-container .suggestion-meta {
  font-size: 13px;
  color: #888989;
}

.suggestion-meta {
  font-size: 0.7rem;
}

.sponsored-item .suggestion-meta {
  font-weight: 500;
}

@media (max-width: 991px) {
  .featured-video {
    margin-bottom: 2rem;
  }

  .suggestion-item {
    margin-bottom: 1rem;
  }

  .video-widget-container {
    padding: 1.5rem 0;
  }
}

@media (max-width: 576px) {
  .video-title {
    font-size: 1.1rem;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
