/* Blog premium (no rompe tu home): todo va con clases blog-* y post-* */

.blog-wrap, .post-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
}

.blog-hero {
  padding: 22px 18px;
  border: 1px solid var(--border-soft, rgba(255,255,255,0.08));
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(0,224,255,0.10), transparent 55%);
}

.blog-hero h1 { margin: 10px 0 8px 0; font-size: 70px; }
.blog-hero p { margin: 0 0 14px 0; color: var(--text-muted, #b9c0d0); }

.hero-pill {font-size: 10px;}
.hero-h1 {font-size: 20px; display: block;}
.hero-h1master {font-size: 35px; display: block;}

.blog-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.post-card {
  border: 1px solid var(--border-soft, rgba(255,255,255,0.08));
  border-radius: 16px;
  padding: 14px;
  background: rgba(10, 14, 30, 0.75);
}

.post-card.featured {
  background: radial-gradient(circle at top, rgba(255, 0, 200, 0.12), rgba(10, 14, 30, 0.75));
}

.post-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted, #b9c0d0);
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft, rgba(255,255,255,0.08));
  color: var(--text-soft, #e7ecff);
}

.dot { opacity: 0.7; }

.post-title {
  margin: 10px 0 8px 0;
  line-height: 1.2;
  font-size: 18px;
}

.post-title a {
  color: var(--text-soft, #e7ecff);
  text-decoration: none;
}

.post-title a:hover { color: var(--accent-cyan, #00e0ff); }

.post-excerpt {
  color: var(--text-muted, #b9c0d0);
  margin: 0 0 10px 0;
}

.post-link {
  color: var(--accent-cyan, #00e0ff);
  text-decoration: none;
}

.blog-bottom-cta {
  margin-top: 18px;
}

.cta-box {
  border: 1px solid var(--border-soft, rgba(255,255,255,0.08));
  border-radius: 16px;
  padding: 49px;
  background: rgba(10, 14, 30, 0.75);
}

/* Post page */
.post {
  border: 1px solid var(--border-soft, rgba(255,255,255,0.08));
  border-radius: 16px;
  padding: 18px;
  background: rgba(10 14 30  / 20%);
}

.post h1 { margin: 10px 0 10px 0; }
.post h2 { margin: 18px 0 10px 0; }
.post p { color: var(--text-soft, #e7ecff); }

.post-lead {
  color: var(--text-muted, #b9c0d0);
  font-size: 1.02rem;
  line-height: 1.6;
}

.post-list, .post-links {
  padding-left: 18px;
  color: var(--text-soft, #e7ecff);
}

.post-links a { color: var(--accent-cyan, #00e0ff); text-decoration: none; }
.post-links a:hover { text-decoration: underline; }

.post-callout {
  margin: 18px 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border-soft, rgba(255,255,255,0.08));
  background: radial-gradient(circle at top, rgba(0,224,255,0.12), rgba(10, 14, 30, 0.70));
}

.post-callout.strong {
  background: radial-gradient(circle at top, rgba(0,224,255,0.18), rgba(255, 0, 200, 0.08));
}

.callout-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted, #b9c0d0);
}

.post-mini-cta {
  margin: 14px 0 0 0;
}

.post-end {
  margin-top: 18px;
  color: var(--text-muted, #b9c0d0);
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-title { font-size: 17px; }
}
