body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #111624;
  background: linear-gradient(180deg, #f4f8ff 0%, #eef3fb 100%);
}

.blog-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.1rem 3rem;
}

.blog-hero {
  border: 1px solid #d0dced;
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 8%, rgba(20, 211, 193, 0.17), transparent 55%),
    #ffffff;
  box-shadow: 0 18px 44px rgba(19, 34, 63, 0.1);
  padding: 1.5rem;
}

.brand-link {
  color: #0a5f57;
  font-weight: 800;
  text-decoration: none;
}

.brand-link:hover {
  text-decoration: underline;
}

.eyebrow {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #456084;
  font-weight: 800;
}

h1 {
  margin: 0.6rem 0 0;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  line-height: 1.12;
  font-family: "Sora", sans-serif;
}

.blog-hero p {
  max-width: 66ch;
  color: #586076;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.78rem 1rem;
}

.primary-link {
  color: #051a18;
  background: linear-gradient(115deg, #14d3c1 0%, #66f4cf 100%);
}

.secondary-link {
  border: 1px solid #a8b7d3;
  color: #2d4662;
  background: #f7fbff;
}

.blog-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  border: 1px solid #d0dced;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(19, 34, 63, 0.08);
  padding: 1rem;
}

.post-meta {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4e6485;
  font-weight: 800;
}

.post-card h2 {
  margin: 0.62rem 0 0;
  font-size: 1.16rem;
  line-height: 1.32;
  font-family: "Sora", sans-serif;
}

.post-card p {
  margin: 0.7rem 0 0;
  color: #586076;
  line-height: 1.55;
}

.post-link {
  margin-top: 0.9rem;
  display: inline-flex;
  color: #0a5f57;
  font-weight: 800;
}

.blog-footer {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.blog-footer a {
  color: #4b5f80;
  text-decoration: none;
}

.blog-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
