:root {
  --post-dark: #0f1c2e;
  --post-accent: #6b93b7;
  --post-soft: #f5f7fb;
}

body {
  background: var(--post-soft);
}

.post-hero {
  padding: 70px 24px 30px;
  text-align: center;
}

.post-hero .post-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(30,136,229,0.12);
  color: var(--post-accent);
  font-weight: 600;
  font-size: 0.75rem;
}

.post-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--post-dark);
}

.post-meta {
  color: #718096;
  font-size: 0.95rem;
}

.post-image {
  width: min(1000px, 92vw);
  margin: 20px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15,28,46,0.14);
}

.post-image img {
  width: 100%;
  display: block;
}

.post-content {
  width: min(900px, 92vw);
  margin: 40px auto 60px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15,28,46,0.12);
  line-height: 1.75;
  color: #2d3748;
}

.post-content h2 {
  margin-top: 28px;
  color: var(--post-dark);
}

.post-content a {
  color: var(--post-accent);
}

.post-cta {
  width: min(900px, 92vw);
  margin: 0 auto 80px;
  padding: 32px;
  background: var(--post-dark);
  color: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.post-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.post-cta .btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

@media (max-width: 720px) {
  .post-content {
    padding: 26px;
  }
}
