.blog-page { margin-top: 5rem; }
.blog-hero {
  padding-top: 5.5rem;
  padding-bottom: 4.2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #faf5ff, #fdf2f8 50%, #fff7ed);
}
.blog-hero .section-title { margin: 1rem 0 1.2rem; }
.blog-hero p:not(.badge):not(.pill) { max-width: 44rem; font-size: 1.1rem; }
.hero-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #db2777;
  font-size: 0.92rem;
  font-weight: 800;
}
.hero-link:hover { color: #be185d; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.orb-a { width: 230px; height: 230px; top: 40px; left: -40px; background: rgba(196, 181, 253, 0.65); }
.orb-b { width: 250px; height: 250px; right: -30px; bottom: 20px; background: rgba(253, 186, 116, 0.65); }
.orb-c { width: 230px; height: 230px; top: -80px; left: -70px; background: rgba(255, 255, 255, 0.16); }
.orb-d { width: 230px; height: 230px; right: -80px; bottom: -90px; background: rgba(255, 255, 255, 0.16); }

.nav-links .is-active { color: #db2777; font-weight: 800; }

.blog-filter-wrap {
  position: sticky;
  top: 5rem;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.blog-filters {
  padding: 0.8rem 0;
  display: flex;
  gap: 0.55rem;
  overflow: auto;
}
.filter-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  background: #f3f4f6;
  color: #4b5563;
}
.filter-btn.active {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-sm);
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  font-weight: 800;
  margin-bottom: 1rem;
}

.featured-wrap { padding-top: 3.2rem; padding-bottom: 1.5rem; }
.featured-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.featured-card:hover { box-shadow: var(--shadow-md); }
.featured-cover {
  min-height: 280px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.featured-cover.has-image,
.blog-thumb.has-image {
  overflow: hidden;
  background: #f3f4f6;
}
.featured-cover__image,
.blog-thumb__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-cover__image { min-height: 280px; }
.featured-content { padding: 2rem; }
.featured-content .cat {
  display: inline-block;
  border-radius: 999px;
  background: #f3e8ff;
  color: #6d28d9;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.featured-content h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); margin-bottom: 0.7rem; }
.featured-content p { font-size: 0.98rem; margin-bottom: 1rem; }
.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.read-link {
  color: #db2777;
  font-weight: 800;
  font-size: 0.9rem;
}
.read-link:hover { color: #be185d; }

.blog-grid-wrap { padding-top: 2.2rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.6rem;
  row-gap: 1.2rem;
}
.blog-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-thumb { height: 170px; }
.blog-content { padding: 1rem; }
.blog-tag {
  display: inline-block;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.tag-purple { background: #f3e8ff; color: #6d28d9; }
.tag-pink { background: #fce7f3; color: #be185d; }
.tag-orange { background: #ffedd5; color: #c2410c; }
.tag-teal { background: #ccfbf1; color: #0f766e; }
.tag-indigo { background: #e0e7ff; color: #4338ca; }
.tag-fuchsia { background: #fae8ff; color: #a21caf; }
.blog-card h3 { font-size: 1.04rem; margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 0.85rem; }
.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.74rem;
  color: #9ca3af;
  font-weight: 700;
}

.blog-load-wrap { margin-top: 2rem; text-align: center; }

.newsletter {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #7c3aed, #ec4899 52%, #fb923c);
}
.newsletter-inner { text-align: center; position: relative; z-index: 2; }
.newsletter .section-title,
.newsletter p { color: #fff; }
.newsletter p { color: rgba(255, 255, 255, 0.84); margin: 1rem auto; max-width: 40rem; }
.newsletter-form {
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  gap: 0.7rem;
}
.newsletter-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
  padding: 0 1rem;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.65); }
.newsletter-form button {
  background: #fff;
  color: #7c3aed;
  box-shadow: none;
  border: 0;
}
.newsletter-note {
  min-height: 1.2rem;
  color: #fde68a;
  font-size: 0.85rem;
  margin-top: 0.8rem;
}

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

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { height: 3.3rem; }
}
