/* News Updates Shortcode — clean professional style */
.nus-news-wrapper {
  border: 1px solid #e9e9e9;
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.nus-news-track {
  /* will be animated by JS */
  display: block;
  will-change: transform;
}

.nus-news-item {
  box-sizing: border-box;
  padding: 12px 8px;
  border-bottom: 1px solid #f3f3f3;
  display: block;
  background: transparent;
}

.nus-news-date {
  display: block;
  color: #888;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 500;
}

.nus-news-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #111;
  font-weight: 600;
  line-height: 1.2;
}

.nus-news-title a {
  color: inherit;
  text-decoration: none;
}

.nus-news-title a:hover {
  text-decoration: underline;
}

.nus-news-excerpt {
  margin: 0 0 10px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.nus-news-btn {
  display: inline-block;
  padding: 6px 12px;
  background: #0073e6;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.18s ease;
}

.nus-news-btn:hover,
.nus-news-btn:focus {
  background: #005bb5;
  outline: none;
}

/* support focus for keyboard users */
.nus-news-wrapper:focus {
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .nus-news-title {
    font-size: 15px;
  }
  .nus-news-excerpt {
    font-size: 13px;
  }
}
