/* Latest News Ticker (Lightweight) v1.4.4 */

/* ===== Horizontal SINGLE LINE (no duplicate rows) ===== */
.ntm-ticker{
  width:100%;
  background:var(--ntm-bg,#111827);
  color:var(--ntm-color,#fff);
  font-size:var(--ntm-font,14px);
  height:42px;
  line-height:42px;
  position:relative;
  overflow:hidden;
}

.ntm-h-viewport{
  position:relative;
  width:100%;
  height:42px;
  overflow:hidden;
}

.ntm-h-track{
  position:absolute;        /* KEY FIX */
  top:0;
  left:0;
  display:flex;
  align-items:center;
  gap:var(--ntm-gap,40px);
  white-space:nowrap;
  will-change:transform;
  padding:0 16px;
}

.ntm-h-track[aria-hidden="true"]{
  left:100%;                /* start after first track */
}

.ntm-item{
  white-space:nowrap;
  text-decoration:none;
  color:var(--ntm-color,#fff);
  display:inline-flex;
  align-items:center;
}
.ntm-item:hover{color:var(--ntm-hover,#facc15);}

/* ===== Vertical unchanged ===== */
.ntm-vertical{width:100%;}
.ntm-v-viewport{height:var(--v-height,210px);overflow:hidden;}
.ntm-v-track{display:flex;flex-direction:column;gap:var(--v-gap,10px);}
.ntm-v-card{display:block;background:var(--v-bg,#fff);border:1px solid var(--v-border,#e5e7eb);padding:var(--v-pad,14px);text-decoration:none;}
.ntm-v-title{font-size:var(--v-title,16px);font-weight:600;}
.ntm-v-date{font-size:var(--v-date,13px);color:var(--v-muted,#6b7280);}

/* Single page */
.ntm-single-wrap{max-width:1200px;margin:auto;padding:24px 16px;}
.ntm-single-grid{display:grid;grid-template-columns:1fr 400px;gap:24px;}
@media(max-width:960px){.ntm-single-grid{grid-template-columns:1fr;}}
