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

body {
  font-family: "Georgia", serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.7;
  padding: 1rem;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}

h1 {
  font-size: 3rem;
  font-family: "Times New Roman", serif;
  color: #111;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

header p {
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

/* Homepage Layout */
#post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1200px;
}

article {
  background-color: #fff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 2rem;
}

article h2 {
  font-family: "Georgia", serif;
  font-size: 1.75rem;
  color: #222;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

article .date {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin-bottom: 1rem;
}

article .excerpt {
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

a {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Post Page Layout */
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.post-content h2 {
  font-size: 2.5rem;
  font-family: "Times New Roman", serif;
  color: #111;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: normal;
}

.post-content .date {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.post-content p {
  font-family: "Arial", sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Pull Quote Styling for Magazine Feel */
.post-content blockquote {
  font-size: 1.25rem;
  font-family: "Georgia", serif;
  color: #444;
  border-left: 3px solid #bbb;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  background-color: #f5f5f5;
}

/* Footer and Additional Details */
footer, .additional-details {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

footer p, .additional-details p {
  margin-bottom: 0.5rem;
}

/* Subtle Dividers */
header::after,
#post-list article::after,
.post-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 1rem 0;
}

/* Dark Mode Styling */
body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

body.dark-mode a {
  color: #bb86fc;
}

body.dark-mode .date {
  color: #a0a0a0;
}