/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a.story-link { text-decoration: none; color: inherit; display: block; cursor: pointer; }
a.story-link:hover h2, a.story-link:hover h3, a.story-link:hover h4 { color: var(--blue); }

:root {
  --navy:   #013369;
  --navy2:  #001f45;
  --blue:   #0055a5;
  --blue-l: #1a6fd4;
  --red:    #cc0000;
  --ink:    #111111;
  --sub:    #666666;
  --border: #e5e5e5;
  --off:    #f5f5f5;
  --white:  #ffffff;
  --max:    1240px;

  --sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --disp:   'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
}

html, body { background: var(--white); }
body { font-family: var(--sans); font-size: 14px; line-height: 1.5; color: var(--ink); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TOP NAV BAR ===== */
.top-bar {
  background: var(--navy2);
  height: 42px;
  display: flex;
  align-items: stretch;
}

.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 4px;
  flex-shrink: 0;
}

.site-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}

.logo-text em { color: #60A5FA; font-style: normal; }
.logo-text sup { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5); margin-left: 1px; vertical-align: super; }

.top-nav {
  display: flex;
  align-items: stretch;
  flex: 1;
  flex-wrap: nowrap;
  /* overflow must allow the Draft dropdown to escape the nav bar */
  overflow: visible;
}

.top-nav-item {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.1s, border-color 0.1s;
}

.top-nav-item:hover { color: #fff; }
.top-nav-item.active { color: #fff; border-bottom-color: #60A5FA; }

/* Dropdown nav item (Draft, etc.) */
.top-nav-dropdown-wrap { position: relative; padding: 0; }
.top-nav-dropdown-wrap > .top-nav-dropdown-trigger {
  display: flex; align-items: center; height: 100%;
  padding: 0 14px;
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color 0.1s, border-color 0.1s;
}
.top-nav-dropdown-wrap:hover > .top-nav-dropdown-trigger,
.top-nav-dropdown-wrap.active > .top-nav-dropdown-trigger { color: #fff; }
.top-nav-dropdown-wrap.active > .top-nav-dropdown-trigger { border-bottom-color: #60A5FA; }
.top-nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0; z-index: 100;
  min-width: 180px; background: #001f45;
  border: 1px solid rgba(255,255,255,0.08); border-top: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.top-nav-dropdown-wrap:hover .top-nav-dropdown,
.top-nav-dropdown-wrap:focus-within .top-nav-dropdown { display: block; }
.top-nav-dropdown a {
  display: block; padding: 10px 16px;
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  border-left: 3px solid transparent; transition: background 0.1s, border-color 0.1s, color 0.1s;
}
.top-nav-dropdown a:hover { background: #013369; color: #fff; border-left-color: #60A5FA; }

.top-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 16px;
  flex-shrink: 0;
}

.top-alert-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: 5px 12px;
  border-radius: 3px;
  transition: background 0.1s;
}

.top-alert-btn:hover { background: var(--blue-l); }
.top-alert-btn.alerts-active { background: #16a34a; }
.top-alert-btn.alerts-active:hover { background: #15803d; }

/* ===== TEAM LOGO BAR ===== */
.team-bar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.team-bar::-webkit-scrollbar { display: none; }

.team-bar-inner {
  display: flex;
  align-items: stretch;
  min-width: max-content;
  max-width: var(--max);
  margin: 0 auto;
}

/* Conference block (AFC / NFC) */
.conf-block {
  display: flex;
  align-items: stretch;
  flex: 1;
}

.conf-label {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 22px;
}

.conf-label.afc { background: var(--navy); }
.conf-label.nfc { background: #8B0000; }

/* Division group */
.div-group {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.div-group:last-child { border-right: none; }

.div-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub);
  padding: 5px 6px 3px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--off);
  line-height: 1;
}

.div-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 4px 4px;
}

/* Conference separator */
.conf-sep {
  width: 2px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}

.team-logo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: background 0.1s, border-color 0.1s, transform 0.1s;
  flex-shrink: 0;
  background: none;
  padding: 3px;
  text-decoration: none;
}

.team-logo-btn:hover {
  background: #e8f0fe;
  transform: translateY(-1px);
}

.team-logo-btn.active {
  background: #dbeafe;
  border-color: var(--navy);
}

.team-logo-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  transition: transform 0.1s;
}

.team-logo-btn:hover img { transform: scale(1.1); }
.team-logo-btn .team-abbr-label { display: none; }

/* ===== TEAM PAGE ===== */
.team-page-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0 20px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 24px;
}

.team-page-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.team-page-info { flex: 1; }

.team-page-name {
  font-family: var(--disp);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.team-page-meta { font-size: 13px; color: var(--sub); }

.back-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.1s;
  flex-shrink: 0;
}

.back-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.team-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.team-stat {
  background: var(--white);
  padding: 14px 16px;
  text-align: center;
}

.team-stat-val {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.team-stat-lbl { font-size: 11px; color: var(--sub); margin-top: 3px; }

.team-content-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.team-section-title {
  font-family: var(--disp);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
}

.team-news-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.team-news-item:last-child { border-bottom: none; }

.team-news-item h4 {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 5px;
  transition: color 0.1s;
}

.team-news-item:hover h4 { color: var(--blue); }

.team-news-item p { font-size: 13px; color: var(--sub); line-height: 1.55; }

.draft-need-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.draft-need-item:last-child { border-bottom: none; }

.need-pos {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 2px;
}

.need-label { font-size: 13px; font-weight: 500; color: var(--ink); }

.need-priority {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sub);
}

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--navy);
  height: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-label {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 6px;
  animation: pip 1.6s ease infinite;
  flex-shrink: 0;
}
@keyframes pip { 0%,100%{opacity:1} 50%{opacity:.25} }

.ticker-track {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
  mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: tick 120s linear infinite;
}

.ticker-inner:hover { animation-play-state: paused; }

.ticker-item {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  padding-right: 40px;
  text-decoration: none;
  cursor: default;
}
a.ticker-item {
  cursor: pointer;
}
a.ticker-item:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ticker-item::before { content: "▸ "; color: #60A5FA; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTION HEADER ===== */
.section-bar {
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  padding: 0 0 0 0;
  margin-bottom: 20px;
}

.section-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 16px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.section-label {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 3px solid var(--navy);
  margin-bottom: -2px;
}

.section-date {
  font-size: 11px;
  color: var(--sub);
  padding-bottom: 12px;
}

/* ===== PAGE ===== */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* ===== VIEWS ===== */
.view { display: none; }
.view.active { display: block; }

/* ===== NEWS LAYOUT ===== */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* ===== FEATURED STORY ===== */
.featured-story {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.story-cat {
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}

.story-cat.hot   { color: var(--red); }
.story-cat.draft { color: var(--navy); }
.story-cat.analysis { color: #2d7a2d; }
.story-cat.contract { color: #a06000; }
.story-cat.roster   { color: #6b21a8; }

.featured-story h2 {
  font-family: var(--disp);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.1s;
}

.featured-story h2:hover { color: var(--blue); }

.featured-story p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.story-time { font-size: 12px; color: var(--sub); }
.story-date { font-size: 12px; color: var(--sub); font-style: italic; }

.stories-pagination {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  transition: background .15s, color .15s;
}
.page-btn:hover { background: var(--off); }
.page-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.topic-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--sub);
  background: var(--off);
  padding: 2px 8px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.1s;
}

.topic-tag:hover { background: var(--border); color: var(--ink); }

/* ===== STORY LIST (sub stories) ===== */
.story-list { display: flex; flex-direction: column; gap: 0; }

.story-item {
  display: grid;
  grid-template-columns: 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.story-item:first-child { padding-top: 0; }
.story-item:last-child { border-bottom: none; }

.story-item h3 {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 5px;
  transition: color 0.1s;
}

.story-item:hover h3 { color: var(--blue); }

.story-item p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== MORE HEADLINES GRID ===== */
.more-header {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  padding: 16px 0 12px;
  border-top: 2px solid var(--navy);
  margin-top: 24px;
}

.headlines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 4px;
}

.headline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 16px 18px 18px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}

.headline-card:hover {
  border-color: #b0c8e8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.headline-card .story-cat { margin-bottom: 8px; }

.headline-card h4 {
  font-family: var(--disp);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.1s;
  flex: 1;
}

.headline-card:hover h4 { color: var(--blue); }

.headline-card .story-foot { margin-top: 14px; padding-top: 10px; border-top: 1px solid var(--border); }

.headline-card .story-time { display: block; }

/* ===== SIDEBAR ===== */
.sidebar {
  border-left: 1px solid var(--border);
  padding-left: 20px;
  position: sticky;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-module { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.sidebar-module:last-child { border-bottom: none; margin-bottom: 0; }

.sidebar-title {
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--navy);
}

/* Heat Index */
.heat-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.heat-item:last-child { border-bottom: none; }

.heat-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 3px; }

.heat-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3; }

.heat-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hb-hot  { background: #fde8e8; color: #c00; }
.hb-warm { background: #fef3dc; color: #944f00; }
.hb-cool { background: #e8f0fe; color: #1a56db; }

.heat-desc { font-size: 11px; color: var(--sub); line-height: 1.4; }

/* Draft Clock */
.draft-clock-num {
  font-family: var(--disp);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.draft-clock-label { font-size: 11px; color: var(--sub); margin-top: 4px; }

/* Ad slot */
.ad-slot {
  background: var(--off);
  border: 1px dashed var(--border);
  padding: 28px 16px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
}

/* ===== DRAFT VIEW ===== */
.draft-header {
  background: var(--navy2);
  color: #fff;
  padding: 28px 16px;
  margin: 0 -16px 0;
}

.draft-header h1 {
  font-family: var(--disp);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1;
}

.draft-header h1 em { color: #60A5FA; font-style: normal; }

.draft-stats { display: flex; gap: 28px; flex-wrap: wrap; }

.dstat strong {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.dstat span { font-size: 11px; color: #94A3B8; }

.draft-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.fbtn {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--sub);
  background: var(--white);
  transition: all 0.1s;
}

.fbtn:hover { border-color: var(--navy); color: var(--navy); }
.fbtn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.draft-search {
  margin-left: auto;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  padding: 6px 12px;
  width: 200px;
  font-family: var(--sans);
  transition: border-color 0.1s;
}

.draft-search:focus { outline: none; border-color: var(--blue); }
.draft-search::placeholder { color: #bbb; }

/* ===== DRAFT TABLE ===== */
.dtable-wrap { overflow-x: auto; margin-top: 16px; }

.dtable { width: 100%; border-collapse: collapse; min-width: 900px; }

.dtable thead th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sub);
  padding: 8px 12px;
  text-align: left;
  border-bottom: 2px solid var(--navy);
  white-space: nowrap;
  background: var(--white);
}

.dtable thead th.tc { text-align: center; }

.src-head { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.src-head-name { font-size: 12px; font-weight: 700; color: var(--ink); letter-spacing: 0; text-transform: none; }
.src-head-date { font-size: 10px; color: #bbb; letter-spacing: 0; text-transform: none; font-weight: 400; }

.dtable tbody tr { border-bottom: 1px solid var(--border); transition: background 0.07s; }
.dtable tbody tr:hover { background: var(--off); }
.dtable tbody tr.hidden { display: none; }
.dtable td { padding: 11px 12px; vertical-align: middle; }

.pick-no {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 800;
  color: #ddd;
  line-height: 1;
}

.dtable tbody tr:hover .pick-no { color: #bbb; }

.team-cell { display: flex; align-items: center; gap: 8px; }
.team-cell-logo { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.team-name { font-size: 13px; font-weight: 600; color: var(--ink); }

.pcell { text-align: center; }
.pname { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.ppos {
  display: inline-block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 2px;
}

.QB   { background: #fde8e8; color: #991B1B; }
.WR   { background: #dcfce7; color: #166534; }
.OT   { background: #dbeafe; color: #1E40AF; }
.EDGE { background: #ffedd5; color: #9A3412; }
.CB   { background: #f3e8ff; color: #6b21a8; }
.TE   { background: #d1fae5; color: #065F46; }
.DT   { background: #ffe4e6; color: #9F1239; }
.LB   { background: #dcfce7; color: #166534; }
.S    { background: #fef9c3; color: #854D0E; }
.RB   { background: #ffedd5; color: #9A3412; }

/* ===== ROUND DIVIDER ===== */
.round-divider td { padding: 0; }

.round-divider-inner {
  background: var(--navy);
  color: #fff;
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-top: 8px;
}

.concell { text-align: center; }
.con-player { font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.con-bar { display: flex; justify-content: center; gap: 2px; margin-bottom: 4px; }
.cbar-seg { height: 4px; width: 14px; border-radius: 100px; }
.con-label { font-size: 10px; font-weight: 600; }
.c-strong { color: #166534; }
.c-split  { color: #92400E; }
.c-none   { color: #B91C1C; }

/* ===== WRITER BADGE ===== */
.writer-badge {
  display: flex;
  align-items: center;
  gap: 7px;
}

.writer-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.writer-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.writer-role {
  font-size: 10px;
  color: var(--sub);
  line-height: 1.2;
}

.story-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

/* ===== COMING SOON ===== */
.empty-state { padding: 60px 0; text-align: center; }
.empty-state h2 { font-family: var(--disp); font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--sub); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy2);
  color: rgba(255,255,255,0.5);
  padding: 20px 16px;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.footer-logo em { color: #60A5FA; font-style: normal; }

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 11px;
  transition: color .15s;
}
.footer-links a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .news-layout { grid-template-columns: 1fr; }
  .sidebar { border-left: none; padding-left: 0; position: static; border-top: 2px solid var(--navy); padding-top: 20px; }
  .headlines-grid { grid-template-columns: repeat(2, 1fr); }

  /* Team page: collapse to single column, sidebar floats above stories */
  .team-content-grid { grid-template-columns: 1fr; gap: 0; }
  .team-sidebar-col { order: -1; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 2px solid var(--border); }
  .team-stories-col { order: 1; }
}

@media (max-width: 680px) {
  /* Team page header */
  .team-page-header { flex-wrap: wrap; gap: 10px; padding: 14px 0 12px; }
  .team-page-logo { width: 50px; height: 50px; }
  .team-page-name { font-size: 24px; }
  .team-page-meta { font-size: 12px; }
  .back-btn { margin-left: auto; font-size: 11px; padding: 5px 10px; }

  /* Stats row: 2x2 */
  .team-stats-row { grid-template-columns: repeat(2, 1fr); }
  .team-stat-val { font-size: 20px; }
  .team-stat { padding: 12px; }

  /* Sidebar: show as 2-col grid for Draft Needs + Quick Facts side by side */
  .team-sidebar-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-sidebar-col > div { margin-top: 0 !important; }

  /* Draft picks rows */
  .draft-need-item { padding: 7px 0; }
  .need-label { font-size: 12px; }
  .need-priority { font-size: 9px; }

  /* Pagination buttons — bigger touch targets */
  .page-btn { min-width: 38px; height: 38px; font-size: 14px; }
  .stories-pagination { gap: 8px; margin-top: 16px; }
}

/* ===== HAMBURGER BUTTON (hidden on desktop) ===== */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: background 0.15s;
}
.nav-hamburger:hover span { background: #fff; }

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a,
.mobile-nav-drawer button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.mobile-nav-drawer a:hover,
.mobile-nav-drawer button:hover,
.mobile-nav-drawer a.active,
.mobile-nav-drawer button.active { color: #fff; background: rgba(255,255,255,0.06); }

@media (max-width: 600px) {
  .top-bar { height: auto; }
  .top-bar-inner { padding: 0 12px 0 16px; height: 46px; }
  .site-logo { border-right: none; padding-right: 0; }
  .top-nav { display: none; }
  .top-nav-right { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .featured-story h2 { font-size: 22px; }
  .headlines-grid { grid-template-columns: 1fr; }
  .draft-header h1 { font-size: 28px; }
}

/* ===== ARTICLE MODAL ===== */
#articleModal { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.modal-panel {
  position: relative;
  background: #fff;
  border-radius: 4px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 40px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--sub);
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-headline {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin: 10px 0 16px;
}
.modal-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 24px;
  white-space: pre-line;
}
.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 16px;
}
.modal-source-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--navy);
  padding: 7px 16px;
  border-radius: 3px;
  transition: all 0.1s;
}
.modal-source-link:hover { background: var(--navy); color: #fff; }
