:root{
  --bl-text: rgba(15,23,42,.92);
  --bl-muted: rgba(15,23,42,.62);
  --bl-line: rgba(15,23,42,.10);
  --bl-card: rgba(255,255,255,.94);
  --bl-shadow: 0 22px 60px rgba(15,23,42,.12);
  --bl-shadow2: 0 12px 28px rgba(15,23,42,.08);
  --bl-brand: #2563eb;
  --bl-green: #16a34a;
  --bl-ease: cubic-bezier(.2,.8,.2,1);
    --brand: #48addb;
  --brand-soft: rgba(72,173,219,.15);
  --brand-soft-2: rgba(72,173,219,.25);
  --brand-glow: rgba(72,173,219,.35);
  --brand-dark: #2b8bb8;
}

.bl-muted{color: var(--bl-muted)}

.bl-hero{
  position:relative;
  min-height: 230px;
  padding: 40px 0;
  background-image: var(--bg);
  background-size: cover;
  background-position:center;
  border-bottom:1px solid var(--bl-line);
}
.bl-hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.70) 55%, rgba(255,255,255,.30) 100%),
    radial-gradient(900px 520px at 10% 10%, rgba(37,99,235,.14), transparent 60%),
    radial-gradient(900px 520px at 90% 18%, rgba(34,197,94,.10), transparent 55%);
}
.bl-hero__inner{
  position:relative; z-index:2;
  display:flex; justify-content:space-between; gap:18px; align-items:flex-start;
}
@media(max-width: 992px){ .bl-hero__inner{flex-direction:column} }

.bl-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.18);
  color:#1d4ed8;
  font-weight:950;
}
.bl-title{
  margin: 12px 0 6px;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing:-.6px;
  color: var(--bl-text);
}
.bl-bc{
  display:flex; flex-wrap:wrap; align-items:center; gap:10px;
  color: rgba(15,23,42,.70);
  font-weight:800;
}
.bl-bc a{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  box-shadow: var(--bl-shadow2);
}
.bl-dot{width:6px; height:6px; border-radius:99px; background: rgba(15,23,42,.28)}

.bl-hero__right{display:grid; gap:10px; min-width: 280px}
@media(max-width: 992px){ .bl-hero__right{min-width:unset; width:100%} }
.bl-mini{
  display:flex; gap:12px; align-items:center;
  padding:12px 14px;
  border-radius:18px;
  background: rgba(255,255,255,.90);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--bl-shadow2);
}
.bl-mini i{color: var(--bl-brand); font-size: 18px}
.bl-mini b{display:block}
.bl-mini small{display:block; color: var(--bl-muted)}

.bl-section{padding: 44px 0 70px}
.bl-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
@media(max-width: 992px){ .bl-grid{grid-template-columns:1fr} }

.bl-main{display:grid; gap:16px}

.bl-card{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius:24px;
  background: var(--bl-card);
  border:1px solid var(--bl-line);
  box-shadow: var(--bl-shadow);
  overflow:hidden;
  transition: transform .22s var(--bl-ease), box-shadow .22s var(--bl-ease);
}
.bl-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(37,99,235,.14);
}
@media(max-width: 992px){
  .bl-card{grid-template-columns:1fr}
}

.bl-thumb{position:relative; display:block; min-height: 220px}
.bl-thumb img{width:100%; height:100%; object-fit:cover}
.bl-date{
  position:absolute; left:14px; top:14px;
  width:64px;
  padding:10px 10px;
  border-radius:18px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--bl-shadow2);
  text-align:center;
}
.bl-date b{display:block; font-size:18px; color: var(--bl-text)}
.bl-date span{display:block; font-size:12px; color: var(--bl-muted); font-weight:900}

.bl-body{padding:16px 18px}
.bl-meta{
  display:flex; align-items:center; flex-wrap:wrap; gap:10px;
  color: rgba(15,23,42,.62);
  font-weight:800;
  font-size: 13px;
}
.bl-meta i{color: rgba(37,99,235,.85)}
.bl-sep{width:6px; height:6px; border-radius:99px; background: rgba(15,23,42,.24)}

.bl-h2{margin: 10px 0 8px; font-size: 20px; letter-spacing:-.3px}
.bl-h2 a{color: var(--bl-text)}
.bl-text{margin:0; color: rgba(15,23,42,.70); line-height:1.75}

.bl-actions{margin-top: 12px}
.bl-btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(37,99,235,.28);
  background: rgba(37,99,235,.10);
  color:#1d4ed8;
  font-weight:950;
  transition: transform .22s var(--bl-ease), background .22s var(--bl-ease);
}
.bl-btn:hover{transform: translateY(-2px); background: rgba(37,99,235,.14)}

.bl-side{display:grid; gap:14px}

.bl-box{
  border-radius:24px;
  background: var(--bl-card);
  border:1px solid var(--bl-line);
  box-shadow: var(--bl-shadow2);
  padding: 14px;
}
.bl-boxHead{
  display:flex; align-items:center; gap:10px;
  margin-bottom: 12px;
}
.bl-boxHead i{color: rgba(37,99,235,.90)}
.bl-boxHead h4{margin:0; font-size: 15px; letter-spacing:-.2px}

.bl-search{display:flex; gap:10px}
.bl-search input{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  outline:none;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}
.bl-search button{
  width:46px; flex: 0 0 46px;
  border-radius:16px;
  border:1px solid rgba(37,99,235,.25);
  background: rgba(37,99,235,.12);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}
.bl-search button:hover{background: rgba(37,99,235,.18)}

.bl-recent{display:grid; gap:10px}
.bl-recentItem{
  display:flex; gap:12px; align-items:center;
  padding:10px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transition: transform .22s var(--bl-ease);
}
.bl-recentItem:hover{transform: translateY(-2px)}
.bl-recentItem img{
  width:76px; height:58px;
  border-radius:14px;
  object-fit:cover;
}
.bl-recentItem b{display:block; color: var(--bl-text); font-weight:950; line-height:1.25}
.bl-recentItem small{display:block; margin-top:4px}

.bl-list{display:grid; gap:8px}
.bl-li{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  font-weight:900;
  color: rgba(15,23,42,.86);
}
.bl-li em{
  font-style:normal;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.18);
  color:#1d4ed8;
}
.bl-li.is-active{
  border-color: rgba(37,99,235,.22);
  background: rgba(37,99,235,.06);
}

.bl-tags{display:flex; flex-wrap:wrap; gap:10px}
.bl-tag{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  font-weight:900;
  color: rgba(15,23,42,.80);
  transition: transform .22s var(--bl-ease), background .22s var(--bl-ease), border-color .22s var(--bl-ease);
}
.bl-tag:hover{
  transform: translateY(-2px);
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.18);
}
.bl-tag.is-active{
  background: rgba(37,99,235,.12);
  border-color: rgba(37,99,235,.22);
  color:#1d4ed8;
}

.bl-empty{
  border-radius:24px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--bl-shadow2);
  padding: 28px;
  text-align:center;
}
.bl-empty i{font-size: 30px; color: rgba(37,99,235,.85)}
.bl-empty h3{margin:10px 0 6px}
.bl-pager{margin-top: 10px}


/* ===== Modern no-sidebar layout ===== */
.bl-hero__inner{display:flex;gap:24px;align-items:flex-end;justify-content:space-between}
.bl-hero__left{max-width:760px}
.bl-heroSearch{
  margin-top:16px;
  display:flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  padding:10px 10px 10px 12px;
  backdrop-filter: blur(10px);
}
.bl-heroSearch i{opacity:.9}
.bl-heroSearch input{
  flex:1;
  background:transparent;
  border:0;
  outline:0;
  color:inherit;
  font-size:15px;
}
.bl-heroSearch button{
  display:inline-flex;align-items:center;gap:10px;
  border:0;
  border-radius:14px;
  padding:10px 14px;
  background:rgba(79,140,255,.95);
  color:#fff;
  cursor:pointer;
  font-weight:700;
}
.bl-heroSearch button:hover{filter:brightness(1.05)}

.bl-quick{margin-top:12px;display:flex;flex-wrap:wrap;gap:10px}
.bl-chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:inherit;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
}
.bl-chip:hover{background:rgba(255,255,255,.12)}
.bl-chip.is-active{background:rgba(34,197,94,.18);border-color:rgba(34,197,94,.35)}

.bl-topbar{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
  margin:14px 0 18px;
}
.bl-count{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.bl-archiveDrop{
  position:relative;
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.bl-archiveDrop select{
  appearance:none;
  background:transparent;
  border:0;
  outline:0;
  color:inherit;
  font-weight:700;
  padding-right:26px;
  cursor:pointer;
}
.bl-archiveDrop .bl-chev{
  position:absolute;
  right:12px;
  pointer-events:none;
  opacity:.85;
}

/* 4 columns grid */
.bl-gridCards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:18px;
}
@media (max-width: 1100px){
  .bl-gridCards{grid-template-columns: repeat(3, minmax(0,1fr));}
}
@media (max-width: 820px){
  .bl-hero__inner{flex-direction:column;align-items:stretch}
  .bl-gridCards{grid-template-columns: repeat(2, minmax(0,1fr));}
}
@media (max-width: 520px){
  .bl-gridCards{grid-template-columns: 1fr;}
  .bl-heroSearch button span{display:none}
}






/* ===== FIX: Blog cards not too tall ===== */

/* Grid spacing a bit tighter */
.bl-gridCards{ gap:16px; }

/* Card */
.bl-card{
  display:flex;
  flex-direction:column;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.bl-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .12);
}

/* Thumbnail: make it shorter */
.bl-thumb{
  position:relative;
  display:block;
  height:170px;               /* <<< was too tall */
  overflow:hidden;
}
.bl-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.01);
}

/* Date badge smaller */
.bl-date{
  position:absolute;
  top:12px;
  left:12px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}
.bl-date b{ font-size:16px; line-height:1; }
.bl-date span{ font-size:12px; opacity:.8; }

/* Body: reduce padding */
.bl-body{
  padding:14px 14px 12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 220px;          /* keeps button aligned */
}

/* Meta smaller and on one line */
.bl-meta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  font-size:12px;
  opacity:.85;
}
.bl-sep{ width:4px; height:4px; border-radius:99px; background:rgba(0,0,0,.25); }

/* Title clamp */
.bl-h2{
  margin:0;
  font-size:16px;
  line-height:1.25;
  font-weight:800;
}
.bl-h2 a{
  color:#0f172a;
  text-decoration:none;
  display:-webkit-box;
  -webkit-line-clamp:2;       /* <<< 2 lines only */
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.bl-h2 a:hover{ text-decoration:underline; }

/* Text clamp */
.bl-text{
  margin:0;
  color: rgba(15,23,42,.78);
  font-size:13px;
  line-height:1.55;

  display:-webkit-box;
  -webkit-line-clamp:4;       /* <<< 4 lines only */
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height: calc(1.55em * 4); /* keeps equal card heights */
}

/* Actions pinned bottom */
.bl-actions{ margin-top:auto; display:flex; justify-content:flex-end; }
.bl-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  background: rgba(79,140,255,.12);
  color:#1d4ed8;
  border:1px solid rgba(79,140,255,.25);
}
.bl-btn:hover{
  background: rgba(79,140,255,.18);
}

/* Responsive tune */
@media (max-width:1100px){
  .bl-thumb{ height:160px; }
}
@media (max-width:820px){
  .bl-thumb{ height:150px; }
  .bl-body{ min-height: 210px; }
}
@media (max-width:520px){
  .bl-thumb{ height:160px; } /* single column looks better */
}


/* ===== Modern hover: shadow + zoom + overlay + CTA ===== */

.bl-card{
  position:relative;
  transition: transform .22s ease, box-shadow .22s ease;
  will-change: transform;
}

.bl-thumb{
  position:relative;
  overflow:hidden;
}

/* image zoom */
.bl-thumb img{
  transition: transform .45s ease, filter .45s ease;
  will-change: transform;
}

/* subtle dark overlay */
.bl-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,.05) 0%, rgba(2,6,23,.40) 100%);
  opacity:.0;
  transition: opacity .35s ease;
}

/* floating glow ring */
.bl-card::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:18px;
  pointer-events:none;
  opacity:0;
  transition: opacity .22s ease;
  box-shadow: 0 0 0 1px rgba(79,140,255,.20), 0 0 0 6px rgba(79,140,255,.08);
}

/* CTA appears on thumb */
.bl-card .bl-flyCta{
  position:absolute;
  left:14px;
  bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  color:#0f172a;
  font-weight:800;
  font-size:13px;
  text-decoration:none;
  transform: translateY(10px);
  opacity:0;
  transition: transform .28s ease, opacity .28s ease;
}
.bl-card .bl-flyCta i{ color:#1d4ed8; }

/* hover effects */
.bl-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
}
.bl-card:hover::after{ opacity:1; }

.bl-card:hover .bl-thumb img{
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.03);
}
.bl-card:hover .bl-thumb::after{ opacity:1; }

.bl-card:hover .bl-flyCta{
  transform: translateY(0);
  opacity:1;
}

/* nicer button hover too */
.bl-btn{
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.bl-btn:hover{
  transform: translateX(2px);
  box-shadow: 0 12px 26px rgba(79,140,255,.22);
}

/* touch devices: no jumpy hover */
@media (hover:none){
  .bl-card:hover{ transform:none; }
  .bl-card:hover .bl-thumb img{ transform:none; }
  .bl-card:hover .bl-thumb::after{ opacity:0; }
  .bl-card:hover .bl-flyCta{ opacity:0; transform:translateY(10px); }
}



.bl-btn{
  background: var(--brand-soft);
  color: var(--brand-dark);
  border:1px solid var(--brand-soft-2);
}

.bl-btn:hover{
  background: var(--brand);
  color:#fff;
  box-shadow: 0 14px 32px var(--brand-glow);
}

.bl-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 18px 60px rgba(15,23,42,.18),
    0 0 0 2px var(--brand-soft);
}




.bl-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(72,173,219,.05) 0%,
    rgba(72,173,219,.45) 100%
  );
  opacity:0;
  transition: opacity .35s ease;
}

.bl-card:hover .bl-thumb::after{
  opacity:1;
}




.bl-flyCta{
  background:#fff;
  color:var(--brand-dark);
  border:1px solid var(--brand-soft-2);
}

.bl-card:hover .bl-flyCta{
  box-shadow: 0 18px 45px var(--brand-glow);
}

.bl-flyCta i{
  color:var(--brand);
}



.bl-meta i,
.bl-mini i,
.bl-pill i,
.bl-count i{
  color: var(--brand);
}



.bl-heroSearch:focus-within{
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.bl-heroSearch button{
  background: var(--brand);
}

.bl-heroSearch button:hover{
  background: var(--brand-dark);
}


.bl-chip.is-active{
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-dark);
}


:root{
  --brand:#48addb;
  --brand-soft: rgba(72,173,219,.15);
  --brand-soft-2: rgba(72,173,219,.25);
  --brand-glow: rgba(72,173,219,.35);
  --brand-dark:#2b8bb8;
}

/* Detail page */
.bl-hero--detail .bl-title--detail{font-size:28px; line-height:1.15; max-width:760px}
.bl-detailGrid{
  display:grid;
  grid-template-columns: 1fr 340px;
  gap:22px;
  align-items:start;
}
@media (max-width: 980px){
  .bl-detailGrid{grid-template-columns: 1fr}
}

/* Post card */
.bl-post{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(15,23,42,.10);
}
.bl-cover{position:relative; height:360px; overflow:hidden}
.bl-cover img{width:100%;height:100%;object-fit:cover; transition:transform .5s ease}
.bl-post:hover .bl-cover img{transform:scale(1.04)}
@media (max-width: 700px){ .bl-cover{height:240px} }

.bl-coverBadge{
  position:absolute; left:16px; top:16px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:10px 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
}
.bl-coverBadge b{font-size:18px; line-height:1}
.bl-coverBadge span{font-size:12px; opacity:.8}

.bl-postHead{padding:16px 18px 0}
.bl-postTitle{margin:10px 0 0; font-size:22px; line-height:1.22; font-weight:900; color:#0f172a}
.bl-postBody{padding:10px 18px 18px; color:rgba(15,23,42,.82); line-height:1.75}
.bl-postBody img{max-width:100%; height:auto; border-radius:14px}
.bl-postBody a{color:var(--brand-dark); font-weight:800}
.bl-postBody h2,.bl-postBody h3{margin:16px 0 10px; color:#0f172a}

/* Share row */
.bl-shareRow{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:14px 18px 18px;
  border-top:1px solid rgba(0,0,0,.06);
}
.bl-shareLabel{display:flex; align-items:center; gap:10px; font-weight:900; color:#0f172a}
.bl-shareLabel i{color:var(--brand)}
.bl-shareBtns{display:flex; gap:10px; flex-wrap:wrap}
.bl-sbtn{
  width:40px; height:40px;
  border-radius:14px;
  display:inline-flex; align-items:center; justify-content:center;
  background: var(--brand-soft);
  border:1px solid var(--brand-soft-2);
  color: var(--brand-dark);
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.bl-sbtn:hover{
  transform: translateY(-2px);
  background: var(--brand);
  color:#fff;
  box-shadow: 0 14px 32px var(--brand-glow);
}

/* Mini sidebar */
.bl-sideMini{position:sticky; top:16px; display:flex; flex-direction:column; gap:14px}
@media (max-width: 980px){ .bl-sideMini{position:static} }

.bl-miniBox{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 14px 40px rgba(15,23,42,.08);
}
.bl-miniHead{display:flex; align-items:center; gap:10px; margin-bottom:10px}
.bl-miniHead i{color:var(--brand)}
.bl-miniHead b{font-weight:900; color:#0f172a}
.bl-miniHead .bl-muted{margin-left:auto}

.bl-miniList{display:flex; flex-direction:column; gap:10px}
.bl-miniItem{
  display:grid;
  grid-template-columns: 56px 1fr 18px;
  gap:10px;
  align-items:center;
  text-decoration:none;
  padding:10px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.60);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.bl-miniItem:hover{
  transform: translateY(-2px);
  border-color: var(--brand-soft-2);
  box-shadow: 0 14px 30px rgba(15,23,42,.10);
}
.bl-miniItem img{width:56px;height:46px;object-fit:cover;border-radius:12px}
.bl-miniItem b{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;color:#0f172a}
.bl-miniItem .bl-go{color:var(--brand); opacity:.9}

.bl-miniPills{display:flex; flex-direction:column; gap:8px}
.bl-pill2{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  background: rgba(72,173,219,.10);
  border:1px solid rgba(72,173,219,.18);
  color:#0f172a;
  font-weight:800;
}
.bl-pill2 em{
  font-style:normal;
  color:var(--brand-dark);
  background: rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.06);
  padding:3px 8px;
  border-radius:999px;
}

.bl-miniTags{display:flex; flex-wrap:wrap; gap:10px}
.bl-tag2{
  text-decoration:none;
  padding:9px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.65);
  border:1px solid rgba(0,0,0,.06);
  color:#0f172a;
  font-weight:800;
}
.bl-tag2:hover{border-color: var(--brand); box-shadow: 0 12px 26px rgba(72,173,219,.18)}

/* More section */
.bl-more{margin-top:22px}
.bl-moreHead{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  margin: 10px 0 14px;
}
.bl-moreHead h3{margin:0; font-size:18px; font-weight:900; color:#0f172a}
.bl-moreHead h3 i{color:var(--brand)}
.bl-moreLink{
  text-decoration:none;
  font-weight:900;
  color:var(--brand-dark);
  display:inline-flex; align-items:center; gap:10px;
}
.bl-moreLink:hover{text-decoration:underline}
