.video-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.video-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.video-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #759739;
  border-radius: 3px;
}

.video-scroll-wrapper::-webkit-scrollbar-track {
  background: #eee;
}

.video-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.5rem 0 1rem 0.5rem;
}

.video-box {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.video-box:hover {
  transform: scale(1.02);
}

.video-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}
.video-box:hover .video-img {
  filter: brightness(0.65);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon::before {
  content: '';
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.video-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0.6rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.9rem;
  font-family: "Helvetica", sans-serif;
}

.video-footer-link {
  text-align: right;
  margin-top: 1rem;
}

.video-simple-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #759739;
  text-decoration: none;
  transition: color 0.3s ease;
}

.video-simple-link:hover {
  color: #5f7d2e;
}

.video-simple-link .arrow {
  margin-left: 4px;
  font-weight: bold;
}

@media (max-width: 480px) {
  .video-box {
    width: 220px;
  }
  .play-icon {
    width: 40px;
    height: 40px;
  }
  .play-icon::before {
    border-width: 10px 0 10px 16px;
  }
}
