/* Full-width bar */
.pds-news-ticker{
  width:100%;
  background:#fff;
  border:1px solid #e6e6e6;
  font-family: Arial, Helvetica, sans-serif;
}

/* inner row */
.pds-nt-wrap{
  margin: 0 auto;
  padding: 10px 14px;
  display:flex;
  align-items:center;
  gap:14px;
  overflow:hidden;
}

/* date */
.pds-nt-date{
  font-size:14px;
  color:#333;
  white-space:nowrap;
}

/* TOP POSTS tag */
.pds-nt-tag{
  position:relative;
  background:#c20017;
  color:#fff;
  font-weight:700;
  font-size:13px;
  letter-spacing:.3px;
  padding:10px 14px;
  text-transform:uppercase;
  white-space:nowrap;
  line-height:1;
}
.pds-nt-tag-notch{
  position:absolute;
  right:-14px;
  top:0;
  width:0;height:0;
  border-top:17px solid transparent;
  border-bottom:17px solid transparent;
  border-left:14px solid #c20017;
}

/* arrows */
.pds-nt-controls{ display:flex; gap:8px; align-items:center; }
.pds-nt-btn{
  width:26px;height:26px;
  border:1px solid #dcdcdc;
  background:#fff;
  border-radius:3px;
  display:grid; place-items:center;
  cursor:pointer; color:#666; padding:0;
}
.pds-nt-btn svg{ width:16px;height:16px; }
.pds-nt-btn:hover{ background:#f7f7f7; }
.pds-nt-btn:active{ transform: translateY(1px); }

/* headline area */
.pds-nt-headline{
  flex:1;
  min-width:0;
  border-left:1px solid #e6e6e6;
  padding-left:14px;
}
.pds-nt-link{ text-decoration:none; display:block; }
.pds-nt-text{
  display:block;
  font-size:15px;
  color:#003366;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* responsive */
@media (max-width: 768px){
  .pds-nt-wrap{ flex-wrap:wrap; row-gap:10px; }
  .pds-nt-headline{ border-left:none; padding-left:0; width:100%; }
}
