body {
  font-family: 'Georgia', serif;
  margin: 40px auto;
  max-width: 800px;
  line-height: 1.6;
  background: #fffef5;
  color: #2b2b2b;
}

header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #f4e04d;
}

h1 {
  font-size: 2.5em;
  color: #d4a017;
  margin: 10px 0 5px;
}

.subtitle {
  font-size: 1.2em;
  color: #a58b00;
  margin-bottom: 10px;
}

h2 {
  color: #555;
  border-bottom: 1px solid #e0d77b;
  padding-bottom: 5px;
}

a {
  color: #d4a017;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: square;
}

footer {
  margin-top: 40px;
  font-size: 0.9em;
  text-align: center;
  color: #999;
}

/* 🟡 Everything below this point was inside footer by mistake before */
nav {
  text-align: center;
  margin: 20px 0 40px;
}

nav a {
  color: #a58b00;
  font-weight: bold;
  margin: 0 12px;
  text-decoration: none;
}

.post-preview {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0d77b;
}

.thumb {
  width: 150px;
  height: 100px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 5px;
}

.post-info {
  flex-grow: 1;
}

.meta {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 6px;
}

.tag {
  display: inline-block;
  font-size: 0.75em;
  padding: 2px 6px;
  margin-bottom: 6px;
  border-radius: 4px;
  color: white;
}

.tag.opinion { background-color: #d1495b; }
.tag.report { background-color: #688e26; }
.tag.interview { background-color: #31708e; } /* A distinct blue-ish tone */

h3 {
  margin: 6px 0;
}

.summary {
  color: #444;
}

.article-date {
  color: #888;
  font-size: 0.85em;
  margin-left: 8px;
}

blockquote {
  border-left: 4px solid #f4e04d; /* Soft yellow border */
  padding-left: 15px;
  margin: 20px 0;
  font-style: italic;
  color: #444;
  background-color: #fffdf2; /* Pale background for contrast */
  border-radius: 4px;
}

.section-divider {
  border: none;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    #f4e04d,
    #f4e04d 10px,
    transparent 10px,
    transparent 20px
  );
  margin: 40px 0;
}


