/* ============================================
   WeightUpdate — AI Newsletter
   Inspired by editorial news layout
   ============================================ */

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

:root {
  --navy: #0d1b2a;
  --navy-light: #1a2d42;
  --blue: #0e7af4;
  --blue-light: #3b9eff;
  --teal: #00c2cb;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ea;
  --gray-400: #9aa5b1;
  --gray-600: #52616b;
  --gray-800: #2c3e50;
  --text: #1a1a2e;
  --red: #e53935;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --max-width: 1200px;
  --sidebar-width: 320px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
a:hover { color: var(--blue); }

/* ============================================
   TICKER BAR
   ============================================ */

.ticker-bar {
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  height: 36px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
}

.ticker-label {
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  overflow: hidden;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  color: var(--gray-200);
  padding-left: 24px;
}

.ticker-content span {
  padding-right: 4px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
}

.date-line {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0.02em;
  width: 200px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-align: center;
}

.logo-bracket {
  color: var(--blue);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  width: 200px;
}

.btn-subscribe {
  background: var(--navy);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
}

.btn-subscribe:hover { background: var(--blue); }

.main-nav {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--gray-200);
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 10px 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--navy);
  border-bottom-color: var(--blue);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-main {
  background: var(--off-white);
  min-height: 100vh;
  padding: 32px 0 48px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 32px;
  align-items: start;
}

/* ============================================
   CATEGORY TAGS
   ============================================ */

.category-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.tag-research { background: #e8f4fd; color: #0e7af4; }
.tag-models   { background: #f3e8fd; color: #7c3aed; }
.tag-robotics { background: #e8fdf0; color: #059669; }
.tag-policy   { background: #fdf5e8; color: #d97706; }
.tag-industry { background: #fde8e8; color: #dc2626; }

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  margin-bottom: 32px;
}

.hero-article {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.hero-image {
  position: relative;
}

.image-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-placeholder {
  height: 380px;
}

.small-placeholder {
  height: 180px;
}

.img-label {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image .category-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  margin: 0;
}

.hero-text {
  padding: 28px 32px 32px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero-dek {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 400;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

.meta-dot { color: var(--gray-200); }

.author { color: var(--blue); font-weight: 600; }

/* ============================================
   SECTION DIVIDER
   ============================================ */

.section-divider {
  display: flex;
  align-items: center;
  margin: 24px 0 20px;
  gap: 12px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.section-divider span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
}

/* ============================================
   ARTICLE GRID
   ============================================ */

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.article-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.card-image { position: relative; }

.card-body {
  padding: 16px;
}

.card-headline {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-dek {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ============================================
   LIST ARTICLES
   ============================================ */

.list-articles {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.list-article {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
}

.list-article:last-child { border-bottom: none; }
.list-article:hover { background: var(--off-white); }

.list-article h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.list-article p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.widget-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 10px;
  margin-bottom: 14px;
  display: inline-block;
}

/* Briefing */
.briefing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.briefing-list li {
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.briefing-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.briefing-date {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Newsletter */
.newsletter-widget {
  background: var(--navy);
  color: var(--white);
}

.newsletter-widget .widget-title {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.newsletter-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.newsletter-widget p {
  font-size: 13px;
  color: var(--gray-200);
  line-height: 1.6;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--navy-light);
  border-radius: 4px;
  background: var(--navy-light);
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-sans);
  outline: none;
}

.email-input::placeholder { color: var(--gray-400); }
.email-input:focus { border-color: var(--teal); }

.btn-submit {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.btn-submit:hover { opacity: 0.9; }

.newsletter-note {
  font-size: 11px !important;
  color: var(--gray-400) !important;
  margin-bottom: 0 !important;
}

/* Trending */
.trending-list {
  list-style: none;
  counter-reset: trending;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trending-list li {
  counter-increment: trending;
  display: flex;
  gap: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.trending-list li::before {
  content: counter(trending);
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-200);
  font-family: var(--font-serif);
  flex-shrink: 0;
  line-height: 1;
  min-width: 18px;
}

.trending-list a {
  color: var(--gray-800);
  font-weight: 500;
}

.trending-list a:hover { color: var(--blue); }

/* Topics */
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-pill {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  background: var(--gray-100);
  color: var(--gray-600);
}

.topic-pill:hover { opacity: 0.75; }

.topic-pill.tag-research { background: #e8f4fd; color: #0e7af4; }
.topic-pill.tag-models   { background: #f3e8fd; color: #7c3aed; }
.topic-pill.tag-robotics { background: #e8fdf0; color: #059669; }
.topic-pill.tag-policy   { background: #fdf5e8; color: #d97706; }
.topic-pill.tag-industry { background: #fde8e8; color: #dc2626; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy);
  color: var(--gray-200);
  padding: 48px 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--navy-light);
  margin-bottom: 24px;
}

.footer-logo .logo {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-400);
  flex-wrap: wrap;
  gap: 8px;
}

.demo-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gray-400);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
  .header-top {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .date-line, .header-actions {
    width: auto;
  }
  .hero-headline { font-size: 24px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   CATEGORY PAGE HEADER
   ============================================ */

.category-page-header {
  margin-bottom: 28px;
}

.category-page-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.category-page-dek {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article-hero {
  margin-bottom: 24px;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.article-date {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

.article-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.article-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 24px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar-lg {
  width: 56px;
  height: 56px;
  font-size: 16px;
}

.byline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.byline-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.byline-details {
  font-size: 12px;
  color: var(--gray-400);
}

.article-hero-image {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.article-img-placeholder {
  height: 420px;
}

.article-body {
  max-width: 680px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-800);
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 12px;
}

.related-grid {
  margin-bottom: 0;
}

/* ============================================
   NEWSLETTER PAGE
   ============================================ */

.nl-hero {
  background: var(--navy);
  border-radius: 12px;
  padding: 64px 32px;
  text-align: center;
  margin-bottom: 48px;
}

.nl-hero-inner {
  max-width: 560px;
  margin: 0 auto;
}

.nl-hero-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.nl-hero-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.nl-hero-subtitle {
  font-size: 17px;
  color: var(--gray-200);
  line-height: 1.65;
  margin-bottom: 28px;
}

.nl-hero-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 16px;
}

.nl-email-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--navy-light);
  border-radius: 4px;
  background: var(--navy-light);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
}

.nl-email-input::placeholder { color: var(--gray-400); }
.nl-email-input:focus { border-color: var(--teal); }

.nl-submit-btn {
  background: var(--teal);
  color: var(--navy);
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nl-submit-btn:hover { opacity: 0.9; }

.nl-hero-note {
  font-size: 12px;
  color: var(--gray-400);
}

.nl-features {
  margin-bottom: 48px;
}

.nl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.nl-feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.nl-feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.nl-feature-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.nl-feature-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.nl-testimonials {
  margin-bottom: 48px;
}

.nl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.nl-testimonial {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nl-testimonial-text {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.nl-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nl-testimonial-author strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
}

.nl-testimonial-author span {
  font-size: 12px;
  color: var(--gray-400);
}

.nl-faq {
  margin-bottom: 48px;
}

.nl-faq-list {
  max-width: 700px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.nl-faq-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
}

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

.nl-faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.nl-faq-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.nl-bottom-cta {
  text-align: center;
  padding: 48px 0;
}

.nl-bottom-cta h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.nl-bottom-cta p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.nl-bottom-cta .nl-hero-form {
  justify-content: center;
}

.nl-bottom-cta .nl-email-input {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--text);
}

.nl-bottom-cta .nl-email-input::placeholder { color: var(--gray-400); }
.nl-bottom-cta .nl-email-input:focus { border-color: var(--blue); }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  text-align: center;
  padding: 32px 0 40px;
  max-width: 640px;
  margin: 0 auto;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
}

.about-section {
  margin-bottom: 40px;
}

.about-content {
  max-width: 700px;
  margin: 20px auto 0;
}

.about-content p {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.about-coverage-item {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.about-coverage-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-coverage-item p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.about-team-member {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.team-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.about-team-member h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 10px;
}

.about-team-member p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
  padding: 32px 0 48px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-size: 16px;
  color: var(--gray-600);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-input {
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-input:focus {
  border-color: var(--blue);
}

.form-input::placeholder { color: var(--gray-400); }

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  background: var(--navy);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
  align-self: flex-start;
}

.contact-submit:hover { background: var(--blue); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-block h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-info-block p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-info-block a {
  color: var(--blue);
  font-weight: 500;
}

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

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-social a {
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
}

/* ============================================
   LOGO AS LINK
   ============================================ */

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

a.logo:hover {
  color: inherit;
}

/* ============================================
   ARTICLE CARD AS LINK
   ============================================ */

a.article-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.article-card:hover {
  color: inherit;
}

a.article-card:hover .card-headline {
  color: var(--blue);
}

a.hero-article {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.hero-article:hover {
  color: inherit;
}

a.hero-article:hover .hero-headline {
  color: var(--blue);
}

/* ============================================
   RESPONSIVE — NEW PAGES
   ============================================ */

@media (max-width: 1024px) {
  .nl-features-grid,
  .nl-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .article-title { font-size: 26px; }
  .article-subtitle { font-size: 15px; }
  .article-img-placeholder { height: 240px; }
  .nl-hero { padding: 40px 20px; }
  .nl-hero-title { font-size: 28px; }
  .nl-hero-form { flex-direction: column; }
  .nl-bottom-cta .nl-hero-form { flex-direction: column; align-items: center; }
  .nl-bottom-cta .nl-email-input { width: 100%; max-width: 320px; }
  .about-title { font-size: 28px; }
  .about-coverage-grid { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr; }
  .category-page-title { font-size: 28px; }
  .contact-title { font-size: 28px; }
}
