@charset "UTF-8";

:root {
  --paper: #f2e8d4;
  --paper-deep: #e8dcc4;
  --ink: #1f1a17;
  --muted: #665c52;
  --accent: #8e2e24;
  --accent-hover: #a23a2e;
  --rule: rgba(31, 26, 23, 0.18);
  --panel: rgba(255, 252, 245, 0.72);
  --shadow: 0 16px 35px rgba(64, 44, 21, 0.12);
  --max-width: 1320px;
  --radius: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top, rgba(142, 46, 36, 0.06), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, #f6eddd 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: white;
  color: black;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.paper-header {
  padding: 1.25rem 0 2rem;
  border-bottom: 3px double var(--rule);
}

.paper-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.paper-kicker {
  margin: 0 0 0.4rem;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
}

.masthead {
  margin: 0;
  text-align: center;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.paper-subtitle {
  margin: 0.6rem 0 0;
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
}

.banner-strip {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.banner-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.12);
  pointer-events: none;
}

.front-intro {
  padding: 2rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.front-intro-inner {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
}

.front-intro h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.front-intro p {
  max-width: 900px;
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.front-intro p:last-child {
  margin-bottom: 0;
}

.intro-aside .notice-box {
  margin-top: 0;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.story {
  background: transparent;
}

.story-image {
  margin-bottom: 0.85rem;
  border: 1px solid var(--rule);
  background: #ddd;
}

.story-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-content {
  border-top: 1px solid var(--rule);
  padding-top: 0.8rem;
}

.story-section {
  margin: 0 0 0.35rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.story-headline {
  margin: 0 0 0.45rem;
  line-height: 1.05;
}

.story-subhead {
  margin: 0 0 0.8rem;
  font-style: italic;
  color: var(--muted);
}

.story-content p {
  color: var(--muted);
}

.story-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

.story-link:hover {
  text-decoration: underline;
}

.front-page {
  padding: 1rem 0 2.5rem;
}

.newspaper-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.main-stories {
  display: block;
}

.lead-story .story-headline {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.briefs-column {
  border-left: 1px solid var(--rule);
  padding-left: 1.25rem;
}

.briefs-column h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.brief-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

.brief-thumb {
  width: 130px;
  height: 130px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #ddd;
}

.brief-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brief-content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  line-height: 1.1;
}

.brief-content p {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.notice-box {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--rule);
}

.notice-box h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.notice-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.middle-feature-section {
  padding: 0 0 3rem;
}

.middle-stories {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.middle-stack {
  display: grid;
  gap: 1.5rem;
}

.featured-middle-story .story-image {
  margin-bottom: 0.75rem;
}

.featured-middle-story .story-image img {
  aspect-ratio: 3 / 3.2;
  object-fit: cover;
}

.featured-middle-story .story-headline {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.95;
}

.stacked-story {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.stacked-story .story-image {
  margin-bottom: 0;
}

.stacked-story .story-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stacked-story .story-content {
  border-top: 0;
  padding-top: 0;
}

.stacked-story .story-headline {
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stacked-story .story-subhead {
  margin-bottom: 0.45rem;
}

.stacked-story .story-content p {
  margin-bottom: 0.5rem;
}

.more-stories {
  padding: 0 0 3rem;
}

.section-rule {
  border-top: 3px double var(--rule);
  margin-bottom: 1rem;
}

.more-stories h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compact-story .story-headline {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.compact-story .story-content {
  padding-top: 0.75rem;
}

.final-cta {
  padding: 0 0 4rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 3px double var(--rule);
  border-bottom: 3px double var(--rule);
}

.cta-left,
.cta-right {
  text-align: center;
}

.cta-grid h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.cta-grid p {
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8f3;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.contact-section {
  padding: 0 0 4rem;
  text-align: center;
}

.contact-section h2 {
  margin: 1rem 0 1rem;
  font-size: 1.7rem;
}

.contact-copy {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.contact-email a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.contact-email a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0 2rem;
  text-align: center;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}



/* Support popup — highlighted version */

/* ===== SUPPORT POPUP (force override version) ===== */

#support-popup {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 260px !important;
  background: #8e2e24 !important;
  color: #ffffff !important;
  padding: 16px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25) !important;
  z-index: 9999 !important;

  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#support-popup.show {
  display: block !important;
  opacity: 1;
}

.support-text {
  margin: 0 0 10px;
  font-size: 14px;
  color: #ffffff;
}

.support-button {
  display: inline-block;
  background: #ffffff;
  color: #8e2e24;
  padding: 8px 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
}

.support-button:hover {
  background: #f2f2f2;
}

.support-close {
  position: absolute;
  top: 5px;
  right: 8px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 1050px) {
  .newspaper-grid,
  .intro-grid,
  .middle-stories {
    grid-template-columns: 1fr;
  }

  .briefs-column {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 1.25rem;
  }

  .stacked-story {
    grid-template-columns: 140px 1fr;
  }

  .story-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .paper-meta {
    justify-content: center;
  }

  .stacked-story {
    grid-template-columns: 1fr;
  }

  .stacked-story .story-image {
    margin-bottom: 0.55rem;
  }

  .stacked-story .story-content {
    border-top: 1px solid var(--rule);
    padding-top: 0.55rem;
  }

  .brief-item {
    grid-template-columns: 90px 1fr;
  }

  .brief-thumb {
    width: 90px;
    height: 90px;
  }

  .story-row,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    gap: 2rem;
  }

  .support-popup {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .front-intro {
    padding: 1.5rem 0;
  }

  .banner-strip {
    height: 150px;
  }
}