/* Vikings Report — Drudge-style wire, Vikings identity used sparingly */
:root {
  --ink: #111111;
  --muted: #444444;
  --visited: #3a3a3a;
  --rule: #111111;
  --lead: #cc0000;
  --paper: #f7f5ef;
  --paper-edge: #efeae0;
  --purple: #4F2683;
  --gold: #FFC62F;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Times New Roman", Times, Georgia, serif;
}

body {
  min-height: 100vh;
}

a {
  color: var(--ink);
  text-decoration: none;
}
a:visited { color: var(--visited); }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 14px 36px;
}

/* Masthead */
.top-accent {
  height: 7px;
  background: linear-gradient(90deg, var(--purple) 0 62%, var(--gold) 62% 100%);
}

header.masthead {
  text-align: center;
  padding: 14px 8px 8px;
}

header.masthead h1 {
  margin: 0;
  font-size: 54px;
  line-height: 0.92;
  letter-spacing: 1px;
  font-weight: 800;
  color: #000;
}

header.masthead h1 span.accent {
  color: var(--purple);
}

.tagline {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.gold-rule {
  width: 220px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 8px;
}

.dateline {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.updated {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.next-game {
  margin: 8px 0 4px;
  font-size: 14px;
  font-weight: 700;
}

.next-game em {
  font-style: normal;
  color: var(--purple);
}

hr.rule {
  border: 0;
  border-top: 1px solid #000;
  margin: 10px 0;
}

hr.rule.thick { border-top-width: 2px; }

/* Lead */
.lead {
  text-align: center;
  padding: 10px 8px 14px;
}

.lead-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.lead-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
}

.lead-title a,
.lead-title a:visited {
  color: var(--lead);
}

.lead-meta {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.lead-image {
  margin: 12px auto 0;
  max-width: 420px;
}

.lead-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #000;
}

/* Rows / columns — newspaper, not cards */
.row {
  margin: 6px 0 18px;
}

.row-label {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
}

.cols {
  display: grid;
  gap: 0 22px;
}

.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.col h3 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
}

.hl {
  margin: 0 0 9px;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 700;
}

.hl a { font-weight: 700; }

.hl .src {
  display: block;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.3px;
}

.empty {
  font-size: 13px;
  font-style: italic;
  color: #777;
  margin: 0;
}

footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid #000;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

footer strong { color: var(--ink); }

footer .sources {
  margin: 0 0 6px;
}

@media (max-width: 820px) {
  header.masthead h1 { font-size: 38px; }
  .lead-title { font-size: 26px; }
  .cols-3, .cols-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  header.masthead h1 { font-size: 30px; }
  .lead-title { font-size: 22px; }
  .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .hl { font-size: 17px; }
}


/* —— Layout v2b: chips + chronolist + publisher icons —— */
.cat-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 4px 0 8px;
  padding: 8px 0;
}

.nav-pill {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 999px;
  padding: 6px 11px;
}

.nav-pill.is-active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.nav-pill:hover { background: var(--paper-edge); }
.nav-pill.is-active:hover { background: var(--purple); color: #fff; }

.nav-hint {
  text-align: center;
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.latest-section { margin: 0 0 22px; }

.latest-list {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.latest-list .hl {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 10px 10px;
  border-bottom: 1px solid #e4dfd4;
  border-left: 3px solid transparent;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  transition: opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.latest-list .hl:hover {
  background: rgba(79, 38, 131, 0.04);
}

.latest-list .hl .when {
  flex: 0 0 56px;
  width: 56px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.3px;
  color: #777;
  text-align: right;
  white-space: nowrap;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.latest-list .hl .when-empty { color: #bbb; }

.latest-list .hl .pub-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  border-radius: 2px;
  object-fit: contain;
  background: #fff;
}
.latest-list .hl .pub-icon-empty {
  display: inline-block;
  background: #ddd;
  border-radius: 2px;
}

.latest-list .hl .hl-body {
  flex: 1 1 auto;
  min-width: 0;
}

.latest-list .hl .hl-title {
  display: inline;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.015em;
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  color: var(--ink);
}
.latest-list .hl .hl-title:visited { color: var(--visited); }
.latest-list .hl .hl-title:hover {
  text-decoration: underline;
  color: var(--purple);
}

.latest-list .hl .hl-meta {
  display: block;
  margin-top: 3px;
  line-height: 1.35;
}

.latest-list .hl .cat-tag {
  display: inline-block;
  margin-right: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--purple);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.latest-list .hl .src {
  display: inline;
  font-size: 11px;
  font-weight: 400;
  color: #777;
  letter-spacing: 0.2px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}





/* Lead breathing room */
.lead-title {
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.lead-title a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

@media (max-width: 560px) {
  header.masthead h1 { font-size: 28px; letter-spacing: 0.5px; }
  .lead-title { font-size: 22px; }
  .nav-pill { font-size: 11px; padding: 8px 10px; min-height: 36px; }
  .latest-list .hl { font-size: 16px; padding: 10px 6px; gap: 7px; }
  .latest-list .hl .when { flex-basis: 48px; width: 48px; font-size: 10px; }
  .nav-hint { font-size: 11px; padding: 0 8px; }
}


/* Brand lockup masthead — stacked: mark then wordmark */
header.masthead {
  text-align: center;
  padding: 18px 8px 12px;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}
.brand-lockup:hover { text-decoration: none; opacity: 0.96; }
.brand-mark {
  display: block;
  height: 140px;
  width: auto;
  background: transparent;
}
.brand-wordmark {
  display: block;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", "Franklin Gothic Condensed", Impact, sans-serif;
  font-weight: 800;
  font-size: 72px;
  letter-spacing: 2px;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
}
.bw-vikings { color: var(--purple); }
.bw-daily { color: var(--gold); }
@media (max-width: 560px) {
  .brand-mark { height: 88px; }
  .brand-wordmark { font-size: 40px; letter-spacing: 1px; }
  .brand-lockup { gap: 8px; }
}




/* Category chip highlight — ultra-visible */
#latest-list .hl.is-highlight {
  background: #ffe566 !important;
  border-left: 5px solid #4F2683 !important;
  box-shadow: 0 0 0 2px rgba(255, 198, 47, 0.55);
}
#latest-list .hl.is-dimmed {
  opacity: 0.22 !important;
  filter: grayscale(0.35);
}
#latest-list .hl.is-dimmed:hover { opacity: 0.55 !important; }
.nav-pill.is-active {
  background: var(--purple) !important;
  color: #fff !important;
}

/* Desktop type scale — modest bump only; phone unchanged below 900px */
@media (min-width: 900px) {
  .wrap { max-width: 1100px; }
  .latest-list .hl {
    padding: 12px 4px 13px;
    gap: 14px;
  }
  .latest-list .hl .hl-title {
    font-size: 19px;
    line-height: 1.4;
  }
  .latest-list .hl .when {
    flex-basis: 58px;
    width: 58px;
    font-size: 12px;
    margin-top: 4px;
  }
  .latest-list .hl .hl-meta { margin-top: 6px; gap: 7px; }
  .latest-list .hl .src { font-size: 12px; }
  .latest-list .hl .cat-tag { font-size: 10px; }
  .latest-list .hl .pub-icon,
  .latest-list .hl .pub-icon-empty {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }
  .lead-title { font-size: 36px; line-height: 1.16; }
  .lead-meta { font-size: 14px; }
  .nav-pill { font-size: 12px; padding: 7px 12px; }
}



/* Day sections + unread (success upgrade on layout A) */
.day-section { margin: 0 0 8px; }
.day-label {
  margin: 18px 0 8px;
  padding: 0 4px 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--purple);
  border-bottom: 2px solid var(--gold);
}
.day-section:first-child .day-label { margin-top: 4px; }
.unread-bar {
  text-align: center;
  margin: 0 0 10px;
  font-size: 12px;
  color: #555;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.latest-list .hl.is-unread .hl-title { font-weight: 800; }
.latest-list .hl.is-unread .hl-title::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--purple);
  vertical-align: middle;
}
.latest-list .hl.is-read .hl-title { font-weight: 600; color: #333; }
.latest-list .hl.is-read .hl-title:visited { color: #555; }
@media (min-width: 900px) {
  .day-label { font-size: 13px; margin-top: 22px; }
}
