#video-achives {
  padding: 0;
}
#video-achives .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}
#video-achives .section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: #22c55e;
  border-radius: 2px;
}
#video-achives .carousel-container {
  position: relative;
}
#video-achives .carousel-wrapper {
  overflow: hidden;
}
#video-achives .carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.8s ease-in-out;
}
#video-achives .video-card {
  flex-shrink: 0;
  width: 200px;
  user-select: none;
}
#video-achives .video-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
#video-achives .video-card:hover .play-button {
  opacity: 1;
}
#video-achives .video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.9), rgba(31, 41, 55, 0.95));
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-achives .video-thumbnail-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
#video-achives .video-thumbnail-logo {
  color: #4ade80;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
#video-achives .video-thumbnail-sub {
  font-size: 10px;
  opacity: 0.7;
}
#video-achives .play-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
#video-achives .play-button-circle {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-achives .play-icon {
  width: 0;
  height: 0;
  border-left: 14px solid #22c55e;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}
#video-achives .video-info {
  margin-top: 8px;
}
#video-achives .video-date {
  font-size: 12px;
  color: #6b7280;
}
#video-achives .video-title {
  font-size: 14px;
  color: #1f2937;
  line-height: 1.4;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#video-achives .view-all {
  text-align: right;
  margin-top: 16px;
}
#video-achives .view-all a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}
#video-achives .view-all a:hover {
  color: #22c55e;
}
#video-achives .view-all svg {
  width: 16px;
  height: 16px;
}
#video-achives .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#video-achives .carousel-nav:hover {
  background: #22c55e;
  border-color: #22c55e;
}
#video-achives .carousel-nav:hover svg {
  stroke: #fff;
}
#video-achives .carousel-nav svg {
  width: 20px;
  height: 20px;
  stroke: #4b5563;
  transition: stroke 0.2s ease;
}
#video-achives .carousel-nav--prev {
  left: -20px;
}
#video-achives .carousel-nav--next {
  right: -20px;
}
@media (max-width: 768px) {
  #video-achives .carousel-container {
    margin: 0 -16px;
    padding: 0 16px;
  }
  #video-achives .video-card {
    width: calc((100vw - 32px - 16px) / 2);
  }
  #video-achives .carousel-nav {
    width: 32px;
    height: 32px;
  }
  #video-achives .carousel-nav--prev {
    left: 4px;
  }
  #video-achives .carousel-nav--next {
    right: 4px;
  }
  #video-achives .carousel-nav svg {
    width: 16px;
    height: 16px;
  }
  #video-achives .play-button-circle {
    width: 40px;
    height: 40px;
  }
  #video-achives .play-icon {
    border-left-width: 10px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    margin-left: 3px;
  }
  #video-achives .video-title {
    font-size: 13px;
  }
}
