body {
  background-color: #faf3e0;
  color: #333;
  font-family: 'Cardo', serif;
  font-size: 1.2rem;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Newspaper Style Elements */
.masthead {
  border-bottom: 4px solid #000;
  padding-bottom: 2rem;
  margin-bottom: 0rem;
}

.masthead h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin: 0;
}

.tagline {
  font-style: italic;
  font-size: 1.1rem;
  margin: 1rem 0;
  color: #666;
}

.nav-bar {
  border-top: 2px solid #000;
  border-bottom: 1px solid #000;
  padding: 0.75rem 0;
  margin: 1.5rem 0;
}

.nav-bar a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 0.4em 0.8em;
  display: inline-block;
  border-right: 1px solid #ccc;
}

.nav-bar a:last-child {
  border-right: none;
}

.nav-bar a:hover {
  background-color: #000;
  color: #faf3e0;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
}

/* Main Content Layout */
.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.feature-section {
  border-bottom: 2px solid #000;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.feature-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #000;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.section-secondary h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #000;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

/* Article Listings */
.article-listing {
  margin-bottom: 0rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.article-listing:last-child {
  border-bottom: none;
}

.article-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

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

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

.article-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #D7613C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.article-excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

/* Blog Posts */
.blog-post {
  margin-bottom: 1.5rem;
  padding-bottom: 0rem;
  border-bottom: 1px dotted #ccc;
}

.blog-post:last-child {
  border-bottom: none;
}

.blog-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.blog-title a {
  text-decoration: none;
  color: #000;
}

.blog-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #D7613C;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Fieldnotes Twitter-style */
.fieldnote {
  color: #666;
  background: #eed;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: .8rem;
}

.fieldnote-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

/* Reading List */
.reading-list {
  list-style: none;
  padding: 0;
}

.reading-list li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}

.reading-list li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 0.8rem;
}

.book-title {
  font-weight: 700;
  font-style: italic;
}

.book-author {
  color: #666;
  font-size: 0.9rem;
}

/* Sidebar */
.sidebar {
  padding-left: 2rem;
  border-left: 2px solid #000;
}

/* Footer */
.footer {
  border-top: 2px solid #000;
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.footer small {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  margin-bottom: 1.5rem;
}

.social-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 0 0.75rem;
  border-right: 1px solid #ccc;
  color: #666;
  transition: color 0.3s ease;
}

.social-links a:last-child {
  border-right: none;
}

.social-links a:hover {
  color: #D7613C;
}


/* Responsive Design */
@media (max-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-links a {
    padding: 0 0.5rem;
    font-size: 0.8rem;
  }

  .sidebar {
    border-left: none;
    border-top: 2px solid #000;
    padding-left: 0;
    padding-top: 2rem;
  }

  .masthead h1 {
    font-size: 2.5rem;
  }

  .nav-bar a {
    padding: 0 0.5rem;
    font-size: 0.8rem;
  }
}


/* Hero Image Section */
.hero-section {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-top: -20px;
  margin-bottom: 0;
  border-bottom: 2px solid #000;
  background-color: #000;
  display: flex;
  justify-content: center;
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-image.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 2rem;
}

.hero-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 200px;
  }

  .hero-overlay {
    padding: 1rem;
  }

  .hero-caption {
    font-size: 0.8rem;
  }
}