/* ── Blog pages — UnifiedBharatECharge ── */

*,*::before,*::after{box-sizing:border-box}

body{background:#0a1228;color:#fff}

/* ── Blog index page ── */
.blog-page{
  max-width:960px;margin:0 auto;padding:120px 24px 80px;
}

.blog-header{text-align:center;margin-bottom:56px}
.blog-header__title{
  font-size:clamp(2.5rem,6vw,3.5rem);
  font-weight:700;letter-spacing:-.03em;
  color:#fff;margin-bottom:12px;
}
.blog-header__sub{
  font-size:1.1rem;font-weight:400;color:rgba(255,255,255,.6);
  max-width:560px;margin:0 auto 32px;line-height:1.6;
}

/* search box */
.blog-search{position:relative;max-width:420px;margin:0 auto}
.blog-search__input{
  width:100%;padding:14px 20px 14px 48px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;color:#fff;font-size:1rem;
  font-family:inherit;outline:none;
  transition:border-color .2s,background .2s;
}
.blog-search__input:focus{
  border-color:#F5A300;background:rgba(255,255,255,.12);
}
.blog-search__input::placeholder{color:rgba(255,255,255,.4)}
.blog-search__icon{
  position:absolute;left:18px;top:50%;transform:translateY(-50%);
  font-size:1.2rem;color:rgba(255,255,255,.4);pointer-events:none;
}

/* blog card grid */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:28px;
}

.blog-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;overflow:hidden;
  transition:transform .25s,box-shadow .25s,border-color .25s;
}
.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,.3);
  border-color:rgba(245,163,0,.4);
}
.blog-card__link{text-decoration:none;color:inherit;display:block}
.blog-card__img{
  width:100%;height:200px;object-fit:cover;display:block;
}
.blog-card__body{padding:20px 22px 24px}
.blog-card__meta{
  display:flex;align-items:center;gap:12px;
  font-size:.75rem;color:rgba(255,255,255,.45);
  margin-bottom:10px;font-family:"Geist Mono",monospace;
}
.blog-card__author{color:#F5A300}
.blog-card__title{
  font-size:1.15rem;font-weight:600;color:#fff;
  line-height:1.35;margin-bottom:8px;letter-spacing:-.01em;
}
.blog-card__excerpt{
  font-size:.9rem;color:rgba(255,255,255,.55);
  line-height:1.5;margin-bottom:14px;
}
.blog-card__tags{display:flex;flex-wrap:wrap;gap:6px}

.blog-tag{
  display:inline-block;font-size:.68rem;font-weight:500;
  padding:4px 10px;border-radius:999px;
  background:rgba(245,163,0,.12);color:#F5A300;
  border:1px solid rgba(245,163,0,.2);
}

.blog-empty{
  text-align:center;color:rgba(255,255,255,.4);
  font-size:1.1rem;padding:40px 0;
}

/* ── Blog post page ── */
.blog-post{
  max-width:720px;margin:0 auto;padding:120px 24px 80px;
}
.blog-post__img{
  width:100%;border-radius:16px;margin-bottom:32px;
  max-height:420px;object-fit:cover;
}
.blog-post__content{line-height:1.7}
.blog-post__meta{
  display:flex;align-items:center;gap:16px;
  font-size:.8rem;color:rgba(255,255,255,.5);
  font-family:"Geist Mono",monospace;margin-bottom:16px;
}
.blog-post__title{
  font-size:clamp(1.8rem,4vw,2.6rem);font-weight:700;
  color:#fff;letter-spacing:-.02em;line-height:1.15;
  margin-bottom:28px;
}
.blog-post__content p{
  font-size:1.05rem;color:rgba(255,255,255,.78);
  margin-bottom:18px;line-height:1.75;
}
.blog-post__tags{
  display:flex;flex-wrap:wrap;gap:8px;
  margin-top:32px;padding-top:24px;
  border-top:1px solid rgba(255,255,255,.1);
}
.blog-post__back{
  display:inline-block;margin-top:32px;
  color:#F5A300;text-decoration:none;font-size:.9rem;font-weight:500;
  transition:opacity .2s;
}
.blog-post__back:hover{opacity:.7}

/* ── Mobile ── */
@media(max-width:768px){
  .blog-page{padding:100px 16px 60px}
  .blog-grid{grid-template-columns:1fr;gap:20px}
  .blog-post{padding:100px 16px 60px}
  .blog-header__sub{font-size:1rem}
}
