body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  background: #fafaf9;
  line-height: 1.7;
}
.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.blog-header {
  padding: 2rem 0;
  background: #fff;
  border-bottom: 1px solid #e7e5e4;
}
.blog-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.blog-logo span {
  color: #e11d48;
}
.blog-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #78716c;
  font-weight: 600;
  transition: color 0.15s;
}
.blog-nav a:hover, .blog-nav a.active {
  color: #e11d48;
}
.main-content {
  padding: 4rem 0;
}
.hero-post {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}
.hero-post h2 {
  font-size: 2.25rem;
  margin: 0.5rem 0 1.5rem 0;
  font-weight: 800;
  line-height: 1.3;
}
.hero-post h2 a {
  color: inherit;
  text-decoration: none;
}
.hero-post h2 a:hover {
  color: #e11d48;
}
.meta {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #a8a29e;
  font-weight: 600;
  letter-spacing: 1px;
}
.hero-post p {
  font-size: 1.15rem;
  color: #57534e;
  margin: 0;
}
.recent-posts h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.post-item {
  background: #fff;
  border: 1px solid #e7e5e4;
  padding: 2rem;
  border-radius: 8px;
}
.post-item h4 {
  font-size: 1.35rem;
  margin: 0.5rem 0 1rem 0;
}
.post-item h4 a {
  color: inherit;
  text-decoration: none;
}
.post-item h4 a:hover {
  color: #e11d48;
}
footer {
  background: #1c1917;
  color: #a8a29e;
  text-align: center;
  padding: 3rem 0;
  margin-top: 6rem;
}
.article-container {
  max-width: 750px;
}
.full-post h1 {
  font-size: 2.5rem;
  line-height: 1.25;
  margin: 0.5rem 0 2rem 0;
}
pre {
  background: #1c1917;
  color: #f5f5f4;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
}
