/* ===== BHAUU BLOGS ===== */

.blogs-hero,
.post-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 120px 0 70px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.blogs-hero-inner,
.blogs-list-inner,
.post-hero-inner,
.post-content-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.blogs-hero h1,
.post-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.5px;
  max-width: 860px;
  margin-bottom: 18px;
}

.blogs-hero p,
.post-hero p {
  max-width: 720px;
  color: #666666;
  font-size: 1.02rem;
  line-height: 1.85;
}

.blogs-list {
  background: #f5f5f7;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 26px;
  color: inherit;
  text-decoration: none;
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 24px;
  box-shadow: 0 14px 44px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.42);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.blog-card span,
.post-meta {
  color: #a78bfa;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card h2 {
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.blog-card strong {
  margin-top: auto;
  color: #ffffff;
  font-size: 0.86rem;
}

.post-content {
  background: #ffffff;
}

.post-content-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 60px;
}

.post-body {
  min-width: 0;
}

.post-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin: 34px 0 14px;
}

.post-body p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.post-body ul {
  margin: 0 0 26px 20px;
  color: #555555;
  line-height: 1.9;
}

.post-body li {
  margin-bottom: 8px;
}

.post-figure {
  margin: 34px 0;
  background: #f5f5f7;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  overflow: hidden;
}

.post-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  background: #ffffff;
}

.post-figure.logo-figure img {
  max-height: 220px;
  object-fit: contain;
  padding: 34px;
}

.post-figure.logo-figure {
  background: #1e1e35;
  border-color: rgba(139,92,246,0.28);
}

.post-figure.logo-figure figcaption {
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.post-figure figcaption {
  color: #666666;
  font-size: 0.86rem;
  line-height: 1.7;
  padding: 16px 20px;
}

.post-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 34px 0;
  align-items: start;
}

.post-image-grid .post-figure {
  margin: 0;
}

.post-image-grid .post-figure img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.post-image-grid .post-figure:not(.logo-figure) img {
  height: 280px;
  object-fit: cover;
}

.post-image-grid .post-figure.logo-figure img {
  height: 280px;
  padding: 42px;
}

.post-map-link {
  display: inline-flex;
  margin: 10px 0 24px;
  color: #7c3aed;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(124,58,237,0.35);
}

.post-map-link:hover {
  color: #ec4899;
  border-bottom-color: rgba(236,72,153,0.5);
}

.post-aside {
  align-self: start;
  position: sticky;
  top: 100px;
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 24px;
  padding: 24px;
}

.post-aside h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.post-aside a {
  display: block;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.post-aside a:hover {
  color: #a78bfa;
}

.post-cta {
  margin-top: 44px;
  padding: 34px;
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 24px;
}

.post-cta h2 {
  color: #ffffff;
  margin-top: 0;
}

.post-cta p {
  color: rgba(255,255,255,0.58);
}

@media (max-width: 920px) {
  .blogs-grid { grid-template-columns: 1fr; }
  .post-content-inner { grid-template-columns: 1fr; gap: 34px; }
  .post-aside { position: static; }
  .post-image-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .blogs-hero,
  .post-hero {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .blog-card,
  .post-cta {
    padding: 24px 20px;
  }
}
