/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rockwell', 'Courier New', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #1d3557;
  background: #f8f9fa;
  padding: 0;
  margin: 0;
}

/* Masthead - Newspaper Header */
.masthead {
  background: #f4a261;
  border-bottom: 4px solid #1d3557;
  padding: 30px 20px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.newspaper-title {
  font-family: 'Rockwell', serif;
  font-size: 3rem;
  font-weight: bold;
  color: #1d3557;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1rem;
  color: #1d3557;
  font-style: italic;
  margin-bottom: 15px;
  border-top: 1px solid #1d3557;
  border-bottom: 1px solid #1d3557;
  padding: 8px 0;
  display: inline-block;
}

.byline {
  font-size: 0.875rem;
  color: #1d3557;
  margin-top: 10px;
}

.byline .divider {
  margin: 0 10px;
}

/* Article Container */
article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* Article Title */
h1 {
  font-family: 'Rockwell', serif;
  font-size: 2.5rem;
  line-height: 1.3;
  color: #1d3557;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid #e63946;
  padding-bottom: 20px;
}

/* Section Headings */
h2 {
  font-family: 'Rockwell', serif;
  font-size: 1.75rem;
  color: #1d3557;
  margin: 40px 0 20px;
  border-left: 6px solid #f4a261;
  padding-left: 15px;
  font-weight: bold;
}

h3 {
  font-family: 'Rockwell', serif;
  font-size: 1.35rem;
  color: #1d3557;
  margin: 25px 0 15px;
  font-weight: bold;
}

/* Article Body - Multi-column newspaper layout */
.article-body {
  column-count: 1;
  column-gap: 40px;
  text-align: justify;
}

@media (min-width: 768px) {
  .article-body {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .article-body {
    column-count: 2;
  }
}

/* Paragraphs */
p {
  margin-bottom: 1.2rem;
  text-indent: 1.5em;
}

p:first-of-type {
  text-indent: 0;
}

h2 + p {
  text-indent: 0;
}

/* Links */
a {
  color: #e63946;
  text-decoration: underline;
  font-weight: bold;
}

a:hover {
  color: #1d3557;
}

.inline-link {
  color: #e63946;
  text-decoration: underline;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: #f4a261;
  border: 3px solid #1d3557;
  padding: 25px;
  margin: 30px 0;
  break-inside: avoid;
  column-span: all;
}

.cta-section h3 {
  margin-top: 0;
  border-left: none;
  padding-left: 0;
  color: #1d3557;
}

.cta-section p {
  text-indent: 0;
  margin-bottom: 1rem;
}

.cta-section p:last-child {
  margin-bottom: 0;
}

/* Key Points List with Circle Numbers */
.key-points {
  list-style: none;
  margin: 25px 0;
  padding: 0;
  break-inside: avoid;
  column-span: all;
}

.key-points li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 20px;
  text-indent: 0;
}

.number-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #e63946;
  color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  border: 3px solid #1d3557;
}

/* Footer */
footer {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px;
  text-align: center;
}

.footer-rule {
  border-top: 3px double #1d3557;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 0.875rem;
  color: #1d3557;
  font-style: italic;
  text-indent: 0;
}

/* Prevent column breaks in inappropriate places */
h2, h3 {
  break-after: avoid;
}

p {
  orphans: 3;
  widows: 3;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .masthead {
    padding: 20px 15px 15px;
  }

  .newspaper-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .article-body {
    text-align: left;
  }

  p {
    text-indent: 0;
  }

  .key-points li {
    padding-left: 55px;
  }

  .number-circle {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
