/* Times News Digital — Regional Press Archetype */
/* Deep navy, gold accents, structured grid, authoritative feel */

:root {
  --bg: #f2f4f7;
  --surface: #fff;
  --ink: #111827;
  --muted: #6b7280;
  --accent: #1e3a5f;
  --gold: #c9a227;
  --red: #c0392b;
  --border: #dde1e8;
  --header-bg: #1e3a5f;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Arial', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { background: var(--bg); color: var(--ink); font-family: var(--font-sans); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--gold);
  padding: 4px 0;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1e3a5f;
}

/* ── HEADER ── */
.site-header {
  background: var(--header-bg);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-block img[data-campaign-logo] {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}
.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.header-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.header-nav a:hover, .header-nav a.active {
  background: var(--gold);
  color: var(--accent);
  text-decoration: none;
}

/* ── HERO IMAGE ── */
.hero-image-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #0d1f35;
}
.hero-image-section .hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 56px;
  background: linear-gradient(to top, rgba(10,25,50,0.92) 0%, rgba(10,25,50,0.3) 55%, transparent 100%);
}
.hero-overlay .hero-kicker {
  display: inline-block;
  background: var(--gold);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
  width: fit-content;
}
.hero-overlay h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-overlay p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
}

/* ── CAMPAIGN ── */
.campaign-strip {
  background: #fff;
  border-bottom: 2px solid var(--border);
}
.campaign-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#campaign-block {
  display: none;
  padding: 20px 0;
}
.camp-img { width: 100%; max-height: 360px; object-fit: cover; margin-bottom: 14px; }
.camp-row { display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.camp-logo-img { max-height: 48px; max-width: 140px; object-fit: contain; flex-shrink: 0; }
.camp-body { flex: 1; min-width: 200px; }
.camp-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-bottom: 6px;
}
.camp-hl { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.camp-dsc { font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; }
.camp-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 22px;
  transition: background 0.2s;
}
.camp-btn:hover { background: #152d4a; color: #fff; text-decoration: none; }

/* ── LAYOUT ── */
.page-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── SECTION DIVIDER ── */
.sec-div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 18px;
}
.sec-div .sd-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  background: var(--bg);
  padding-right: 10px;
}
.sec-div::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gold);
}

/* ── NEWS GRID ── */
.news-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2px;
  background: var(--border);
  margin-bottom: 2px;
}
.news-lead {
  background: var(--surface);
  padding: 24px;
}
.news-lead .nl-cat {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-bottom: 10px;
}
.news-lead h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}
.news-lead h2 a { color: var(--ink); }
.news-lead h2 a:hover { color: var(--accent); text-decoration: none; }
.news-lead .nl-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 10px; }
.news-lead p { font-size: 0.92rem; color: #444; line-height: 1.65; }

.news-sidebar-stack {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}
.nss-item {
  background: var(--surface);
  padding: 16px;
  flex: 1;
}
.nss-item .nss-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.nss-item h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.nss-item h3 a { color: var(--ink); }
.nss-item h3 a:hover { color: var(--accent); text-decoration: none; }
.nss-item .nss-meta { font-size: 0.7rem; color: var(--muted); margin-top: 4px; }

/* ── ROW OF 3 ── */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 32px;
}
.tc-item {
  background: var(--surface);
  padding: 18px;
}
.tc-item .tc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.tc-item h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--ink);
}
.tc-item h3 a { color: var(--ink); }
.tc-item h3 a:hover { color: var(--accent); text-decoration: none; }
.tc-item .tc-meta { font-size: 0.7rem; color: var(--muted); margin-bottom: 8px; }
.tc-item p { font-size: 0.88rem; color: #555; line-height: 1.55; }

/* ── ARTICLE ── */
.article-wrap { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.article-wrap .aw-cat {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 14px;
}
.article-wrap h1 { font-family: var(--font-serif); font-size: 2.3rem; font-weight: 700; line-height: 1.15; color: var(--ink); margin-bottom: 16px; }
.article-wrap .aw-meta { font-size: 0.8rem; color: var(--muted); padding: 10px 0; border-top: 1px solid var(--border); border-bottom: 3px solid var(--gold); margin-bottom: 28px; }
.article-body { font-size: 1rem; line-height: 1.8; font-family: var(--font-serif); }
.article-body p { margin-bottom: 1.2em; }
.article-body h2 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; margin: 2em 0 0.6em; color: var(--accent); border-left: 4px solid var(--gold); padding-left: 12px; }
.article-body blockquote { border-left: 4px solid var(--gold); padding: 12px 20px; margin: 1.5em 0; background: #f8f6f0; font-style: italic; color: #555; }
.author-box { background: #eef2f8; border-top: 3px solid var(--gold); padding: 16px 20px; margin-top: 32px; }
.author-box .ab-name { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 4px; }
.author-box p { font-size: 0.88rem; color: #555; line-height: 1.55; }

/* ── LEGAL ── */
.legal-page { padding: 40px 0; max-width: 860px; margin: 0 auto; }
.legal-page h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.legal-page .lp-date { font-size: 0.8rem; color: var(--muted); margin-bottom: 28px; padding-bottom: 14px; border-bottom: 3px solid var(--gold); }
.legal-page h2 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin: 2em 0 0.6em; color: var(--accent); }
.legal-page h3 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; margin: 1.4em 0 0.4em; }
.legal-page p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 1em; color: #333; }
.legal-page ul { margin: 0.6em 0 1em 1.4em; }
.legal-page ul li { font-size: 0.95rem; line-height: 1.7; color: #333; margin-bottom: 4px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 1em 0 1.5em; font-size: 0.88rem; }
.legal-page table th { background: #e8eef5; padding: 8px 12px; text-align: left; font-weight: 700; border: 1px solid var(--border); }
.legal-page table td { padding: 8px 12px; border: 1px solid var(--border); color: #333; }

/* ── FOOTER ── */
.site-footer { background: #0d1f35; color: #9ca3af; margin-top: 48px; border-top: 3px solid var(--gold); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 36px 20px 16px; display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 32px; border-bottom: 1px solid #1e3a5f; }
.footer-brand .brand-name { color: #fff; font-size: 1.2rem; }
.footer-brand .brand-sub { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }
.footer-brand p { font-size: 0.82rem; color: #6b7280; margin-top: 10px; line-height: 1.55; }
.footer-brand img[data-campaign-logo] { max-height: 36px; width: auto; object-fit: contain; margin-bottom: 8px; filter: brightness(0.5); }
.footer-col h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 0.82rem; color: #6b7280; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 12px 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.75rem; color: #4b5563; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 40px 0; }
.contact-layout h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.contact-form label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; margin-top: 16px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 9px 12px; border: 1px solid var(--border); font-size: 0.95rem; outline: none; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { margin-top: 18px; background: var(--accent); color: #fff; border: none; padding: 11px 28px; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.contact-form button:hover { background: #152d4a; }
.contact-info h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; margin-top: 20px; color: var(--gold); }
.contact-info p { font-size: 0.88rem; color: #555; line-height: 1.6; margin-bottom: 8px; }

/* ── ABOUT ── */
.about-page { padding: 40px 0; max-width: 860px; margin: 0 auto; }
.about-page h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.about-page p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.1em; color: #333; }
.about-page h2 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin: 2em 0 0.6em; color: var(--accent); }

/* ── ARTICLES LIST ── */
.articles-page { padding: 40px 0; }
.articles-page h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 3px solid var(--gold); }
.art-row { padding: 20px 0; border-bottom: 1px solid var(--border); }
.art-row .ar-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 4px; }
.art-row h2 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.art-row h2 a { color: var(--ink); }
.art-row h2 a:hover { color: var(--accent); text-decoration: none; }
.art-row .ar-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 8px; }
.art-row p { font-size: 0.9rem; color: #444; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .news-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-overlay h1 { font-size: 2rem; }
  .hero-overlay { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .header-nav { flex-wrap: wrap; }
  .three-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-image-section .hero-img { height: 300px; }
  .hero-overlay h1 { font-size: 1.5rem; }
}
