/* =====================================================================
   ChakraHealingMumbai.com — Blog / The Journal
   Editorial magazine layout within "Sanctuary" luxury minimalism.
   All blog-only styles live here. Do not edit main.css / home.css.
   ===================================================================== */

/* ----------  Blog hero (editorial masthead)  ---------- */
.blog-hero {
  position: relative;
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.blog-hero-orbits { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.blog-hero-orbits .b-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.blog-hero-orbits .bg1 { width: 360px; height: 360px; background: rgba(221,214,236,0.55); top: 4%; right: -4%; }
.blog-hero-orbits .bg2 { width: 300px; height: 300px; background: rgba(233,211,207,0.5); bottom: -8%; left: -4%; }
.blog-hero-orbits .b-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,106,0.18); width: 520px; height: 520px; top: -160px; left: 42%; }

.blog-masthead { max-width: 880px; margin-inline: auto; text-align: center; }
.blog-masthead .eyebrow { margin-bottom: 1.4rem; }
.blog-masthead h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.blog-masthead .lead { max-width: 58ch; margin-inline: auto; }
.blog-rule {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2rem; color: var(--champagne);
}
.blog-rule span { height: 1px; width: clamp(40px, 12vw, 120px); background: linear-gradient(90deg, transparent, var(--champagne)); }
.blog-rule span:last-child { background: linear-gradient(90deg, var(--champagne), transparent); }
.blog-rule svg { width: 18px; height: 18px; }

/* ----------  Featured article (asymmetric editorial)  ---------- */
.featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.4rem);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.featured::after {
  content: "Featured";
  position: absolute; top: 1.4rem; left: 1.4rem; z-index: 2;
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
  background: linear-gradient(120deg, var(--champagne), var(--champagne-deep));
  padding: 0.4rem 0.95rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.featured-figure {
  position: relative;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.featured-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.8s var(--ease); }
.featured:hover .featured-figure img { transform: scale(1.04); }
.featured-body { padding: clamp(0.5rem, 2vw, 1.6rem) clamp(0.6rem, 2vw, 1.4rem); }
.featured-body .art-meta { margin-bottom: 1.1rem; }
.featured-body h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.05; margin-bottom: 1rem;
}
.featured-body h2 a { transition: color 0.4s; }
.featured-body h2 a:hover { color: var(--champagne-deep); }
.featured-body p { font-size: 1.05rem; margin-bottom: 1.6rem; max-width: 52ch; }

/* Author byline (shared between featured + cards) */
.byline { display: flex; align-items: center; gap: 0.75rem; }
.byline .av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--soft-lavender), var(--soft-rose));
  color: var(--deep-indigo); font-family: var(--font-display); font-size: 1.1rem;
  border: 2px solid rgba(255,255,255,0.7);
}
.byline .av img { width: 100%; height: 100%; object-fit: cover; }
.byline .bl-name { font-size: 0.92rem; font-weight: 600; color: var(--deep-indigo); display: block; line-height: 1.2; }
.byline .bl-date { font-size: 0.8rem; color: var(--muted); }
.byline.small .av { width: 36px; height: 36px; font-size: 0.95rem; }
.featured-actions { margin-top: 1.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ----------  Category filter chips  ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center;
  margin-bottom: clamp(2.2rem, 4vw, 3rem);
}
.filter-btn {
  padding: 0.62rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--indigo-soft);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--glass-border);
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.filter-btn:hover { transform: translateY(-2px); color: var(--deep-indigo); border-color: rgba(201,168,106,0.5); }
.filter-btn.active {
  background: var(--deep-indigo);
  color: var(--warm-white);
  border-color: var(--deep-indigo);
  box-shadow: 0 12px 28px -14px rgba(32,34,63,0.55);
}

/* ----------  Article grid (editorial masonry-feel)  ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2rem);
}
.post-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.4s;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(201,168,106,0.4); }
.post-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: block; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-thumb .cat-chip {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.34rem 0.8rem; border-radius: var(--radius-pill);
  background: var(--glass); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); color: var(--champagne-deep);
}
.post-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post-readtime {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.65rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.post-readtime svg { width: 13px; height: 13px; color: var(--champagne-deep); }
.post-body h3 { font-size: 1.3rem; line-height: 1.18; margin-bottom: 0.55rem; }
.post-body h3 a { transition: color 0.35s; }
.post-body h3 a:hover { color: var(--champagne-deep); }
.post-body p { font-size: 0.94rem; margin-bottom: 1.3rem; }
.post-foot {
  margin-top: auto; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
}
.post-foot .text-link { font-size: 0.86rem; }

/* ----------  Newsletter strip  ---------- */
.newsletter {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #25274a, var(--deep-indigo));
  border-radius: clamp(24px, 4vw, 44px);
  padding: clamp(2.8rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
}
.newsletter::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(35vw 30vw at 12% 0%, rgba(201,168,106,0.25), transparent 60%),
              radial-gradient(35vw 30vw at 92% 100%, rgba(125,91,166,0.28), transparent 60%);
}
.newsletter-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.newsletter .eyebrow { color: var(--champagne); }
.newsletter .eyebrow::before { background: var(--champagne); }
.newsletter h2 { color: #fff; margin-bottom: 0.9rem; }
.newsletter p { color: rgba(255,255,255,0.72); max-width: 46ch; }
.news-form { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.news-form .field { margin-bottom: 0; flex: 1 1 220px; }
.news-form .field input {
  background: rgba(255,255,255,0.95);
  border-color: transparent;
}
.news-form .btn { flex-shrink: 0; }
.form-note {
  display: block; margin-top: 0.9rem;
  font-size: 0.88rem; color: var(--champagne);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.form-note.show { opacity: 1; transform: none; }
.news-fineprint { margin-top: 0.85rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ----------  Closing CTA band  ---------- */
.blog-cta {
  text-align: center;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.55);
  border-radius: clamp(22px, 4vw, 40px);
  padding: clamp(2.8rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.blog-cta .eyebrow { margin-bottom: 1.1rem; }
.blog-cta h2 { margin-bottom: 1rem; }
.blog-cta p { max-width: 54ch; margin: 0 auto 2rem; }
.blog-cta .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ----------  Responsive  ---------- */
@media (max-width: 980px) {
  .featured { grid-template-columns: 1fr; }
  .featured-figure { order: -1; aspect-ratio: 16/10; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .journal-grid { grid-template-columns: 1fr; }
  .featured-actions { flex-direction: column; align-items: flex-start; }
}
