/* ===============================
   BLOGS OVERRIDES (NO LANDING CHANGES)
   =============================== */

/* --- NAVBAR --- */
.landing-nav {
  padding: 0.5rem 4%;
  min-height: 48px;
}

/* Smaller logo ONLY for blogs */
.landing-nav img {
  height: 22px;
  width: auto;
  max-width: 110px;
  filter: none;
}

/* Remove center branding spacing */
.brand {
  margin: 0;
  line-height: 1;
}

/* --- HERO (BLOG HEADER) --- */
.hero {
  min-height: 40vh !important;
}

.hero-content {
  padding: 1.5rem 4%;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  margin-bottom: 1rem;
  max-width: 600px;
}

/* --- SECTIONS --- */
.premium-section {
  padding: 2.5rem 4%;
}

/* Reduce section header spacing */
.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.75rem;
}

.section-header p {
  font-size: 0.95rem;
}

/* --- BLOG CARDS --- */
.features-grid {
  gap: 1rem;
}

.feature-card,
.premium-card {
  padding: 1.25rem;
  text-align: left;
}

/* Blog title links */
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

/* --- CTA SECTION --- */
.contact .section-header {
  margin-bottom: 1.5rem;
}

/* --- FOOTER --- */
.footer {
  padding: 2rem 4%;
}

.footer p {
  font-size: 0.85rem;
}

/* --- MOBILE BLOG TUNING --- */
@media (max-width: 768px) {
  .landing-nav {
    padding: 0.5rem 3%;
  }

  .landing-nav img {
    height: 20px;
  }

  .hero {
    min-height: auto !important;
  }

  .hero-content {
    padding: 1.25rem 3%;
  }

  .premium-section {
    padding: 2rem 3%;
  }
}
.demo-card {
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

/* subtle glow on hover */
.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* make link more prominent */
.demo-card .premium-link {
  color: #4da3ff;
  font-weight: 500;
}
.demo-card::before {
  content: "LIVE";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4da3ff;
  color: #000;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}