/* Sky News Click — Minimal Editorial Archetype */
/* Clean white, black ink, sky-blue accent, maximum readability */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --muted: #767676;
  --accent: #0077cc;
  --accent-dark: #005fa3;
  --sky: #e8f4fd;
  --border: #e5e7eb;
  --header-bg: #fff;
  --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; }

/* ── HEADER ── */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-block img[data-campaign-logo] {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.brand-name span {
  color: var(--accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.header-nav a:hover, .header-nav a.active {
  color: var(--accent);
  background: var(--sky);
  text-decoration: none;
}

/* ── HERO IMAGE ── */
.hero-image-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #001a33;
  border-bottom: 3px solid var(--accent);
}

.hero-image-section .hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  opacity: 0.6;
}

.hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px 36px;
  background: linear-gradient(transparent, rgba(0,15,35,0.95) 80%);
}

.hero-text .ht-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.hero-text h1 {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
}

/* ── CAMPAIGN BLOCK ── */
.campaign-zone {
  background: var(--sky);
  border-bottom: 1px solid #c8dff0;
}

.campaign-zone-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

#campaign-block {
  display: none;
  padding: 20px 0;
}

.cb-creative img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  margin-bottom: 14px;
}

.cb-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.cb-logo img {
  max-height: 44px;
  max-width: 130px;
  object-fit: contain;
  flex-shrink: 0;
}

.cb-copy { flex: 1; min-width: 200px; }

.cb-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-bottom: 6px;
}

.cb-hl {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.cb-dsc { font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; }

.cb-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 3px;
  transition: background 0.15s;
}

.cb-btn:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }

/* ── LAYOUT ── */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION LABEL ── */
.sec-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 28px 0 14px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 0;
}

/* ── MINIMAL STORY LIST ── */
.story-list {
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.story-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

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

.si-body {}

.si-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.si-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
  color: var(--ink);
}

.si-title a { color: var(--ink); }
.si-title a:hover { color: var(--accent); text-decoration: none; }

.si-meta { font-size: 0.72rem; color: var(--muted); margin-bottom: 6px; }
.si-excerpt { font-size: 0.88rem; color: #444; line-height: 1.6; }

.si-num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
  min-width: 40px;
  text-align: right;
}

/* ── SECONDARY GRID ── */
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

.sg-item {
  background: var(--surface);
  padding: 20px;
}

.sg-item .sg-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.sg-item h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--ink);
}

.sg-item h3 a { color: var(--ink); }
.sg-item h3 a:hover { color: var(--accent); text-decoration: none; }
.sg-item .sg-meta { font-size: 0.7rem; color: var(--muted); margin-bottom: 8px; }
.sg-item p { font-size: 0.88rem; color: #555; line-height: 1.55; }

/* ── ARTICLE ── */
.article-page { max-width: 740px; margin: 48px auto; padding: 0 24px; }

.article-page .ap-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.article-page h1 {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.article-page .ap-meta {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 10px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.article-body { font-size: 1.02rem; line-height: 1.8; font-family: var(--font-serif); }
.article-body p { margin-bottom: 1.3em; }
.article-body h2 { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 800; margin: 2em 0 0.6em; color: var(--ink); letter-spacing: -0.01em; }
.article-body blockquote { border-left: 3px solid var(--accent); padding: 12px 20px; margin: 1.5em 0; background: var(--sky); font-style: italic; color: #444; }

.author-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.author-strip .as-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.author-strip .as-info .as-name { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.author-strip .as-info .as-role { font-size: 0.75rem; color: var(--muted); }

/* ── LEGAL ── */
.legal-page { max-width: 860px; margin: 48px auto; padding: 0 24px; }
.legal-page h1 { font-family: var(--font-sans); font-size: 2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.legal-page .lp-date { font-size: 0.8rem; color: var(--muted); margin-bottom: 28px; padding-bottom: 14px; border-bottom: 2px solid var(--ink); }
.legal-page h2 { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 800; margin: 2em 0 0.6em; color: var(--ink); letter-spacing: -0.01em; }
.legal-page h3 { font-family: var(--font-sans); font-size: 0.95rem; 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: var(--sky); 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: var(--ink);
  color: #9ca3af;
  margin-top: 64px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 20px;
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid #1f2937;
}

.footer-brand .brand-name { color: #fff; font-size: 1.1rem; }
.footer-brand .brand-name span { color: var(--accent); }
.footer-brand p { font-size: 0.82rem; color: #6b7280; margin-top: 10px; line-height: 1.55; }
.footer-brand img[data-campaign-logo] { max-height: 32px; width: auto; object-fit: contain; margin-bottom: 8px; filter: brightness(0.5); }

.footer-col h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; 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.15s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  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 300px; gap: 48px; padding: 48px 0; }
.contact-layout h1 { font-family: var(--font-sans); font-size: 2rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.contact-form label { display: block; font-size: 0.8rem; 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.15s; border-radius: 3px; }
.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.04em; cursor: pointer; border-radius: 3px; transition: background 0.15s; }
.contact-form button:hover { background: var(--accent-dark); }
.contact-info h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; margin-bottom: 6px; margin-top: 20px; }
.contact-info p { font-size: 0.88rem; color: #555; line-height: 1.6; margin-bottom: 8px; }

/* ── ABOUT ── */
.about-page { max-width: 860px; margin: 48px auto; padding: 0 24px; }
.about-page h1 { font-family: var(--font-sans); font-size: 2rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.about-page p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.1em; color: #333; }
.about-page h2 { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 800; margin: 2em 0 0.6em; color: var(--ink); }

/* ── ARTICLES LIST ── */
.articles-page { padding: 48px 0; }
.articles-page h1 { font-family: var(--font-sans); font-size: 2rem; font-weight: 800; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); letter-spacing: -0.02em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .secondary-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-text { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .header-inner { height: auto; padding: 12px 16px; flex-direction: column; gap: 10px; }
  .header-nav { flex-wrap: wrap; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-image-section .hero-img { height: 300px; }
  .hero-text h1 { font-size: 1.4rem; }
  .story-item { grid-template-columns: 1fr; }
  .si-num { display: none; }
}
