/* Smooth Vertical News - Styles */
.svn-container {
  --svn-height: 220px;
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.svn-viewport {
  height: var(--svn-height);
  overflow: hidden;
  position: relative;
}
.svn-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  animation-name: svn-scroll-up;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.svn-container[data-pause="true"] .svn-viewport:hover .svn-track {
  animation-play-state: paused;
}

/* Card UI */
.svn-item {
  background: #f9f9f9;
  border-radius: 0px;
  padding: 15px 0px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.svn-item h5 {
  color: #f7931e;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.svn-item h3 {
  margin: 0 0 6px;
  font-weight: 600;
}
.svn-item p {
  margin: 0 0 10px;
}
.svn-read-more {
  display: inline-block;
  border: 2px solid #f7931e;
  color: #f7931e;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
.svn-read-more:hover {
  background: #f7931e;
  color: #fff;
}

@keyframes svn-scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
