/* NEWS PAGE */
body { padding-top: 64px; }

/* ── ACTIVE NAV LINK ── */
.nav-list li a.active {
  color: var(--white);
  background: rgba(218,41,28,0.12);
}
.nav-list li a.active::after {
  left: 0; right: 0;
}

/* ── TICKER ── */
.news-ticker {
  background: var(--red);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.ticker-label {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.25);
  color: var(--white);
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  border-right: 1px solid rgba(0,0,0,0.15);
}

.ticker-track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  padding-left: 2rem;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ── */
.news-hero {
  background: var(--dark2);
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.news-hero::before {
  content: 'NEWS';
  position: absolute;
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.news-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.5rem 0 0.75rem;
  position: relative;
}

.news-hero h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  margin: 0 auto;
  max-width: 600px;
  position: relative;
}

/* ── FEATURED ARTICLE ── */
.featured-article-section {
  background: var(--dark);
  padding: 4rem 2rem 0;
  max-width: 1300px;
  margin: 0 auto;
}

.featured-label-row {
  margin-bottom: 1rem;
}

.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  border-top: 3px solid var(--red);
  min-height: 420px;
}

.featured-article.skeleton-box {
  min-height: 420px;
}

.featured-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--dark3);
  min-height: 300px;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.featured-article:hover .featured-img-wrap img {
  transform: scale(1.04);
}

.skeleton-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--dark3) 25%, var(--mid) 50%, var(--dark3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.featured-tag {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(218,41,28,0.1);
  border: 1px solid rgba(218,41,28,0.25);
  border-radius: 2px;
  padding: 4px 10px;
  display: inline-block;
  align-self: flex-start;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0;
}

.featured-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(232,228,223,0.6);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.featured-source {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.featured-time {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.08em;
}

.featured-read-btn {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 3px;
  padding: 12px 28px;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.featured-read-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ── FILTERS BAR ── */
.filters-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 64px;
  z-index: 900;
  backdrop-filter: blur(10px);
}

.filters-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.pill:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.pill.active { background: var(--red); border-color: var(--red); color: var(--white); }

.search-wrap {
  position: relative;
}

.search-wrap input {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light);
  padding: 8px 14px 8px 36px;
  border-radius: 3px;
  width: 220px;
  transition: border-color 0.2s;
  outline: none;
}

.search-wrap input:focus { border-color: rgba(218,41,28,0.5); }
.search-wrap input::placeholder { color: var(--muted); }

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.1rem;
  pointer-events: none;
}

/* ── MAIN LAYOUT ── */
.news-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  align-items: flex-start;
  background: var(--dark);
}

.news-grid-wrap {
  min-width: 0;
  padding-right: 3rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

/* ── NEWS CARD ── */
.news-card {
  background: var(--dark);
  overflow: hidden;
  animation: cardFadeIn 0.5s ease both;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.news-card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  position: relative;
}

.nc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--dark3);
}

.nc-img-wrap.no-img {
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-card:hover .nc-img-wrap img {
  transform: scale(1.06);
}

.nc-source {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 2px;
}

.nc-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.25s;
}

.news-card:hover .nc-body {
  background: var(--dark2);
}

.nc-title {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin: 0;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nc-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(232,228,223,0.5);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.nc-time {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nc-read {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: letter-spacing 0.2s;
}

.news-card:hover .nc-read {
  letter-spacing: 0.15em;
}

/* SKELETON CARDS */
.news-skeleton-card {
  height: 380px;
  background: linear-gradient(90deg, var(--dark2) 25%, var(--dark3) 50%, var(--dark2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── NO RESULTS ── */
.no-results {
  grid-column: 1 / -1;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
}

.error-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  color: var(--muted);
  font-style: italic;
}

/* ── SIDEBAR ── */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 120px;
}

.sidebar-block {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(218,41,28,0.3);
}

.sidebar-headlines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-hl a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  background: var(--dark);
  border-left: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.sidebar-hl a:hover {
  border-left-color: var(--red);
  background: var(--dark3);
}

.hl-source {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}

.hl-title {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(232,228,223,0.8);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hl-time {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.sidebar-hl-skeleton {
  height: 80px;
  background: linear-gradient(90deg, var(--dark) 25%, var(--dark3) 50%, var(--dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 2px;
}

/* NEXT MATCH WIDGET */
.sidebar-next-match { border-top: 3px solid var(--red); }

.nm-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.nm-team {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  flex: 1;
}

.nm-vs {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.nm-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.nm-date {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--light);
  letter-spacing: 0.08em;
}

.nm-venue, .nm-comp {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
}

.nm-none {
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
}

.next-match-loading {
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-link {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark);
  color: rgba(232,228,223,0.7);
  transition: background 0.2s, color 0.2s;
}

.social-link:hover { background: var(--dark3); color: var(--white); }

.social-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* ── LOAD MORE ── */
.load-more-wrap {
  justify-content: center;
  padding: 2rem;
  background: var(--dark);
}

.load-more-btn {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 36px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s;
}

.load-more-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--red);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.2);
}

.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-lbl {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 0.4rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .news-main { grid-template-columns: 1fr; }
  .news-grid-wrap { padding-right: 0; }
  .news-sidebar { position: static; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-img-wrap { height: 250px; }
}

@media (max-width: 600px) {
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .filters-inner { flex-direction: column; align-items: stretch; }
  .search-wrap input { width: 100%; }
  .news-grid { grid-template-columns: 1fr; }
}


::-webkit-scrollbar{
  display: none;
}