
/* post-style.css - Optimized for long-form blog content */

body {
  font-family: Georgia, serif;
  background: #fefefe;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 18px;
}

.section-wrapper {
  max-width: 750px;
  margin: 40px auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: 'Helvetica Neue', sans-serif;
  color: #222;
  line-height: 1.3;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 1.8em;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.3em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
  font-weight: bold;
}

p {
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 1em 0 1.5em 2em;
}

blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background: #f9f9f9;
  border-left: 4px solid #ccc;
  font-style: italic;
  color: #555;
}

img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  background: #f4f4f4;
  padding: 0.2em 0.4em;
  font-size: 90%;
  border-radius: 4px;
}

pre {
  background: #f4f4f4;
  padding: 1em;
  overflow-x: auto;
  border-radius: 6px;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2em 0;
}

footer {
  margin-top: 4em;
  padding-top: 2em;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #eee;
  text-align: center;
}
/* Navigation - Consistent with review template */
.nav {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 20px;
    background: white;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
  }
  .nav-links.show {
    display: flex;
  }
}

