﻿.news-ticker-bar {width:100%;height:56px;background:var(--navy);overflow:hidden;position:relative;display:flex;align-items:center;}.news-ticker-bar .ticker-inner {max-width:var(--max-width);width:100%;margin:0 auto;padding:0 20px;display:flex;align-items:center;height:100%;}.news-ticker-bar .ticker-label {display:inline-flex;align-items:center;justify-content:center;min-width:120px;height:38px;background:var(--gold);color:var(--navy);font-weight:700;font-size:12px;text-transform:uppercase;letter-spacing:1px;border-radius:4px;flex-shrink:0;z-index:2;}.news-ticker-bar .ticker-scroll-wrap {flex:1;overflow:hidden;position:relative;margin-left:16px;height:100%;display:flex;align-items:center;}.news-ticker-bar .ticker-scroll-wrap::after {content:"";position:absolute;right:0;top:0;width:60px;height:100%;background:linear-gradient(to right,transparent,var(--navy));z-index:1;pointer-events:none;}.news-ticker-bar .ticker-track {display:inline-flex;white-space:nowrap;align-items:center;animation:tickerScroll 30s linear infinite;}.news-ticker-bar .ticker-item {display:inline-flex;align-items:center;color:rgba(255,255,255,0.9);font-size:14px;padding:0 28px;white-space:nowrap;}.news-ticker-bar .ticker-link {color:var(--gold);text-decoration:none;font-weight:500;}.news-ticker-bar .ticker-link:hover {text-decoration:underline;color:var(--gold-light);}@keyframes tickerScroll {0% {transform:translateX(0);} 100% {transform:translateX(-50%);}}