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

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}

body {
  background: #f5f5f5;
  padding: 0;
  margin: 0;
}

/* HEADER SECTION */
header.site-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  margin-bottom: 30px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.header-branding {
  flex: 1;
}

.site-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.5px;
}

.site-title .red {
  color: #c41e3a;
  font-weight: 700;
}

.site-tagline {
  font-size: 14px;
  color: #666;
  margin: 5px 0 0 0;
  font-style: italic;
}

.header-action {
  flex-shrink: 0;
}

.btn-submit {
  background: #c41e3a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #a01830;
}

/* NAVIGATION */
nav.site-nav {
  background: #1a1a1a;
  padding: 0;
  margin-bottom: 30px;
  border-radius: 6px;
  overflow: hidden;
}

.nav-primary {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-primary li {
  flex: 1;
  min-width: 140px;
  border-right: 1px solid #444;
}

.nav-primary li:last-child {
  border-right: none;
}

.nav-primary a {
  display: block;
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s;
}

.nav-primary a:hover {
  background: #c41e3a;
}

.nav-secondary {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-secondary li {
  flex: 1;
  min-width: 100px;
  border-right: 1px solid #444;
}

.nav-secondary li:last-child {
  border-right: none;
}

.nav-secondary a {
  display: block;
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  text-align: center;
  transition: background 0.2s;
}

.nav-secondary a:hover {
  background: #c41e3a;
}

/* MAIN CONTENT */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.container {
  max-width: 100%;
}

/* STORY PAGES */
.story-hero {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 6px;
  border-left: 4px solid #c41e3a;
}

.kicker {
  display: inline-block;
  background: #c41e3a;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  border-radius: 3px;
}

.story-hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
  color: #1a1a1a;
}

.story-lead {
  font-size: 18px;
  color: #555;
  margin: 15px 0 20px;
  font-style: italic;
}

.story-meta {
  font-size: 13px;
  color: #999;
  margin-top: 10px;
}

/* ARTICLE CONTENT */
.article {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.article h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: #1a1a1a;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.article h2:first-child {
  margin-top: 0;
}

.article p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333;
}

.article a {
  color: #c41e3a;
  text-decoration: none;
}

.article a:hover {
  text-decoration: underline;
}

/* DIGEST PAGES */
.digest-hero {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 6px;
}

.digest-hero h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.digest-hero p {
  color: #666;
  margin: 10px 0;
}

.recent-stories {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
}

.recent-stories h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}

.story-item {
  padding: 25px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.story-item .kicker {
  margin-bottom: 10px;
}

.story-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.3;
}

.story-item h3 a {
  color: #1a1a1a;
  text-decoration: none;
}

.story-item h3 a:hover {
  color: #c41e3a;
}

.story-item-date {
  font-size: 13px;
  color: #999;
  margin: 8px 0;
}

.story-item-teaser {
  color: #666;
  margin: 10px 0;
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 30px 0;
  margin-top: 50px;
  font-size: 13px;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

footer p {
  margin: 10px 0;
}

footer a {
  color: #c41e3a;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* UTILITIES */
.text-center {
  text-align: center;
}

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

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 30px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .header-logo {
    justify-content: center;
  }

  .header-branding {
    margin-bottom: 10px;
  }

  .site-title {
    font-size: 24px;
  }

  .nav-primary,
  .nav-secondary {
    font-size: 12px;
  }

  .nav-primary a,
  .nav-secondary a {
    padding: 10px 10px;
  }

  .story-hero h1 {
    font-size: 24px;
  }

  .story-lead {
    font-size: 16px;
  }

  .article,
  .recent-stories {
    padding: 20px;
  }
}
