/* Drudge-ish minimal layout */
:root {
  --bg: #ffffff;
  --text: #000;
  --link: #000;
  --visited: #000;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.25;
}

.site-header {
  max-width: var(--maxw);
  margin: 0 auto;
  /* Push title down ~2/6 of first viewport */
  padding: 22vh 16px 8px;
}

.site-header-compact {
  padding: 24px 16px 8px;
}

.masthead {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 18px;
}

/* Nudge the left masthead link up so it doesn't crowd the title */
.masthead-left { position: relative; top: -115px; }

.masthead-left { text-align: left; }

/* Force the title to be centered on the PAGE (not just its column) */
.masthead-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: max-content;
}

.masthead-right { text-align: right; }

.masthead-link,
.masthead-link:visited {
  display: inline-block;
  width: auto;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-title {
  margin: 0;
  /* Drudge-ish: big, simple, bold */
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  /* drop shadow for depth */
  text-shadow: -5px 5px 0 rgba(0,0,0,0.25);
}

.site-title-small {
  font-size: 28px;
  text-shadow: none;
}

@media (max-width: 900px) {
  .site-title { font-size: 44px; }
  .masthead {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .masthead-left, .masthead-center, .masthead-right { text-align: center; }
}

.featured {
  max-width: var(--maxw);
  margin: 0 auto;
  /* move it down a bit */
  padding: 30px 16px 6px;
  text-align: center;
}

.featured-link,
.featured-link:visited {
  display: inline-block;
  width: auto;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}

/* Publisher content block (AdSense policy: provide real on-page content) */
.publisher {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 16px 8px;
}

.publisher-inner {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 18px 14px;
}

.publisher h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.publisher h3 {
  margin: 16px 0 8px 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.publisher p {
  margin: 0 0 10px 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.publisher ul {
  margin: 0 0 8px 18px;
  padding: 0;
  font-size: 13px;
  line-height: 1.4;
}

.publisher li { margin: 0 0 6px 0; }

.publisher-note {
  color: #333;
  font-size: 12px;
}

.signup {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dotted #000;
}

.signup-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.signup-button,
.signup-button:visited {
  display: inline-block;
  width: auto;
  padding: 10px 12px;
  border: 1px solid #000;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.signup-button:hover { text-decoration: underline; }

.signup-alt {
  font-size: 12px;
  color: #333;
}

.disclosure {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dotted #000;
}

.columns {
  max-width: var(--maxw);
  margin: 0 auto;
  /* add breathing room below the featured headline and publisher block */
  padding: 32px 16px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 16px 40px;
}

.page h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  text-transform: uppercase;
}

.page h3 {
  margin: 16px 0 8px 0;
  font-size: 14px;
  text-transform: uppercase;
}

.page p, .page li {
  font-size: 13px;
  line-height: 1.45;
}

/* 2pt vertical rules framing the center column (Drudge-ish) */
.col-middle {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 0 14px;
}

.links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links li {
  margin: 0 0 16px 0;
}

/* Make the headline itself the clickable target (full row) */
a, a:visited {
  display: block;
  width: 100%;
  /* closer to Drudge: tight, boldish, classic sans */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}

a { color: var(--link); }

a:visited { color: var(--visited); }

.after-columns {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 16px 0;
}

.after-columns-inner {
  max-width: 100%;
}

.sources {
  max-width: var(--maxw);
  margin: 0 auto;
  /* spacing below disclosure section */
  padding: 18px 16px 12px;
  font-size: 12px;
  color: #444;
}

.sources-title {
  font-weight: 700;
  margin: 0 0 6px 0;
}

.sources-meta {
  margin: 0 0 6px 0;
}

.sources-links {
  line-height: 1.4;
}

.sources a,
.sources a:visited {
  display: inline;
  width: auto;
  text-decoration: underline;
}

.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px 20px;
  font-size: 12px;
  color: #444;
}

.footer-small {
  margin: 6px 0 0 0;
  font-size: 12px;
  color: #444;
}

.site-footer a,
.site-footer a:visited {
  display: inline;
  width: auto;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .columns { grid-template-columns: 1fr; }
  .col-middle {
    border-left: none;
    border-right: none;
    padding: 0;
  }
}


/* Daily images strip */
.daily-strip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 16px 6px;
}

.daily-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.daily-strip img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 1px solid #000;
}

/* Column images */
.col-image {
  margin: 0 0 10px 0;
}

.col-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border: 1px solid #000;
}

@media (max-width: 900px) {
  .daily-strip-inner { grid-template-columns: 1fr; }
  .daily-strip img { height: 120px; }
  .col-image img { height: 140px; }
}


/* Sources grouping */
.sources-group { margin-top: 10px; }
.sources-subtitle {
  font-weight: 700;
  letter-spacing: .02em;
  margin: 8px 0 6px;
}
.source-list { margin: 0 0 6px 18px; padding: 0; }
.source-list li { margin: 4px 0; }
