/* ── BLOG HERO ── */
.blog-hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
  max-width: 650px;
  margin: 0 auto;
}

.blog-tag {
  display: inline-block;
  background: #0d1f1a;
  color: #1D9E75;
  border: 1px solid #1D9E75;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-hero p {
  font-size: 1rem;
  color: #888888;
  line-height: 1.7;
}

/* ── WRAP ── */
.blog-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}

/* ── FEATURED POST ── */
.featured-post {
  background: #111111;
  border: 1px solid #1D9E75;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.featured-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1D9E75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.featured-post h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-post p {
  font-size: 0.95rem;
  color: #888888;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.post-category {
  background: #0d1f1a;
  color: #1D9E75;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.post-date, .post-read {
  font-size: 0.8rem;
  color: #555555;
}

.featured-btn {
  display: inline-block;
  background: #1D9E75;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}

.featured-btn:hover {
  background: #0F6E56;
}

/* ── POSTS GRID ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.post-card {
  background: #111111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  border-color: #1D9E75;
}

.post-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1D9E75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.post-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.post-card p {
  font-size: 0.85rem;
  color: #888888;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.post-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #555555;
  margin-bottom: 1rem;
}

.post-link {
  font-size: 0.85rem;
  color: #1D9E75;
  text-decoration: none;
  font-weight: 600;
}

.post-link:hover {
  color: #ffffff;
}

/* ── BLOG CTA ── */
.blog-cta {
  background: #0d1f1a;
  border: 1px solid #1D9E75;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.blog-cta h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.blog-cta p {
  font-size: 0.9rem;
  color: #888888;
}

.blog-cta-btn {
  background: #1D9E75;
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.blog-cta-btn:hover {
  background: #0F6E56;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .blog-cta { flex-direction: column; text-align: center; }
  .blog-hero h1 { font-size: 1.7rem; }
}