/* Bio-Lec Blog page — unique sections only.
   Shared tokens/base/buttons/reveal come from page-shell.css.
   Scoped under .blm-page; container width from .blm-container (common.css). */

/* ===== HERO ===== */
.blm-page .hero{position:relative;overflow:hidden;
  background:linear-gradient(135deg,var(--green-deep) 0%,var(--green-deep-2) 55%,#03396B 100%);
  color:#fff;padding:70px 0 130px;}
.blm-page .hero::before{content:"";position:absolute;top:-180px;right:-120px;width:520px;height:520px;border-radius:50%;
  background:radial-gradient(closest-side,rgba(158,208,242,.30),transparent 70%);pointer-events:none;}
.blm-page .hero::after{content:"";position:absolute;bottom:-220px;left:-120px;width:480px;height:480px;border-radius:50%;
  background:radial-gradient(closest-side,rgba(50,154,224,.26),transparent 70%);pointer-events:none;}
.blm-page .hero .blm-container{position:relative;max-width:920px;text-align:center;}
.blm-page .hero .eyebrow{display:inline-flex;justify-content:center;color:#fff;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);
  padding:7px 16px;border-radius:var(--r-pill);margin-bottom:20px;}
.blm-page .hero .eyebrow i{color:var(--green-leaf);}
.blm-page .hero h1{font-family:var(--font-serif);font-weight:600;font-size:clamp(1.9rem,4vw,3rem);line-height:1.12;
  color:#fff;margin:0 0 16px;letter-spacing:-.02em;text-wrap:nowrap;}
/* keep the headline on one line from tablet up; allow wrapping on small phones */
@media (min-width:680px){ .blm-page .hero h1{white-space:nowrap;} }
.blm-page .hero .sub{font-size:1.08rem;line-height:1.7;color:rgba(255,255,255,.84);max-width:560px;margin:0 auto 30px;}
.blm-page .searchbar{position:relative;max-width:480px;margin:0 auto;}
/* Lucide swaps the <i> for an <svg>, so position both. */
.blm-page .searchbar i,
.blm-page .searchbar svg{position:absolute;left:20px;top:50%;transform:translateY(-50%);
  width:20px;height:20px;color:var(--stone);pointer-events:none;z-index:2;}
.blm-page .searchbar input{width:100%;min-height:56px;padding:0 22px 0 50px;font-family:var(--font-sans);font-size:1rem;
  color:var(--ink);background:#fff;border:1.5px solid transparent;border-radius:var(--r-pill);
  box-shadow:0 14px 38px rgba(3,57,107,.28);
  transition:box-shadow .16s var(--ease-out),border-color .16s var(--ease-out);}
.blm-page .searchbar input::placeholder{color:var(--stone-2);}
.blm-page .searchbar input:focus{outline:none;border-color:var(--green-primary);box-shadow:0 0 0 4px rgba(158,208,242,.45);}

/* ===== FEATURED ===== */
.blm-page .feat-sec{margin-top:-86px;position:relative;z-index:2;padding-bottom:8px;}
.blm-page .feature{display:grid;grid-template-columns:1.05fr .95fr;gap:0;background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--shadow-2);}
.blm-page .feature .media{position:relative;min-height:340px;background:var(--cream-2);}
.blm-page .feature .tag-float{position:absolute;top:18px;left:18px;z-index:3;}
.blm-page .feature .body{padding:40px 44px;display:flex;flex-direction:column;justify-content:center;}
.blm-page .feature .kicker{display:inline-flex;align-items:center;gap:8px;font-size:.72rem;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--green-primary);margin-bottom:16px;}
.blm-page .feature .kicker i{width:15px;height:15px;}
.blm-page .feature h2{font-size:clamp(1.6rem,2.6vw,2.1rem);line-height:1.2;margin-bottom:14px;}
.blm-page .feature h2 a{color:inherit;}
.blm-page .feature h2 a:hover{color:var(--green-deep);}
.blm-page .feature .excerpt{color:var(--stone);line-height:1.65;margin-bottom:22px;}
.blm-page .feature .meta{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-bottom:24px;}

.blm-page .tag{display:inline-flex;align-items:center;gap:7px;padding:6px 13px;font-size:.74rem;font-weight:600;
  letter-spacing:.04em;border-radius:var(--r-pill);background:var(--green-wash);color:var(--green-ink);}
.blm-page .tag .dot{width:7px;height:7px;border-radius:50%;background:var(--green-primary);}
.blm-page .tag.solid{background:#fff;box-shadow:var(--shadow-1);}

.blm-page .byline{display:flex;align-items:center;gap:11px;}
.blm-page .byline .av{width:38px;height:38px;border-radius:50%;background:var(--green-wash);color:var(--green-deep);
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem;flex:0 0 auto;
  border:1px solid var(--line);}
.blm-page .byline .who{font-size:.84rem;line-height:1.35;}
.blm-page .byline .who b{color:var(--ink);font-weight:600;display:block;}
.blm-page .byline .who span{color:var(--stone);}
.blm-page .dotsep{width:4px;height:4px;border-radius:50%;background:var(--stone-2);flex:0 0 auto;}
.blm-page .readtime{display:inline-flex;align-items:center;gap:7px;font-size:.84rem;color:var(--stone);}
.blm-page .readtime i{width:15px;height:15px;}

/* ===== GRID ===== */
.blm-page .grid-sec{padding:28px 0 40px;}
.blm-page .pgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.blm-page .pcard{display:flex;flex-direction:column;background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-1);
  transition:transform .24s var(--ease-out),box-shadow .24s var(--ease-out);}
.blm-page .pcard:hover{transform:translateY(-5px);box-shadow:var(--shadow-2);}
.blm-page .pcard .media{position:relative;aspect-ratio:16/10;background:var(--cream-2);}
.blm-page .pcard .tag-float{position:absolute;top:13px;left:13px;z-index:3;}
.blm-page .pcard .body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1;}
.blm-page .pcard .date{font-size:.76rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:var(--stone-2);
  margin-bottom:9px;}
.blm-page .pcard h3{font-size:1.18rem;line-height:1.32;margin-bottom:10px;}
.blm-page .pcard h3 a{color:inherit;}
.blm-page .pcard h3 a:hover{color:var(--green-deep);}
.blm-page .pcard .excerpt{font-size:.9rem;color:var(--stone);line-height:1.6;margin-bottom:18px;flex:1;}
.blm-page .pcard .foot{display:flex;align-items:center;justify-content:space-between;gap:12px;padding-top:16px;
  border-top:1px solid var(--line);}
.blm-page .pcard .foot .byline .av{width:32px;height:32px;font-size:.78rem;}
.blm-page .pcard .foot .byline .who b{font-size:.82rem;}
.blm-page .pcard .foot .readtime{font-size:.8rem;}
.blm-page .pcard.hide{display:none;}

.blm-page .empty{display:none;text-align:center;padding:60px 20px;color:var(--stone);}
.blm-page .empty.on{display:block;}
.blm-page .empty .ic{width:64px;height:64px;border-radius:50%;background:var(--green-wash);color:var(--green-deep);
  display:flex;align-items:center;justify-content:center;margin:0 auto 18px;}
.blm-page .empty .ic i{width:30px;height:30px;}
.blm-page .empty h3{margin-bottom:8px;}

.blm-page .loadmore{display:flex;justify-content:center;margin-top:40px;}
.blm-page .loadmore.hide{display:none;}

/* ===== NEWSLETTER ===== */
.blm-page .news{padding:24px 0 88px;}
.blm-page .news .panel{background:linear-gradient(135deg,var(--green-deep),var(--green-deep-2));border-radius:var(--r-xl);
  padding:52px 56px;position:relative;overflow:hidden;color:#fff;
  display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center;}
.blm-page .news .panel::before,.blm-page .news .panel::after{pointer-events:none;}
.blm-page .news .panel > *{position:relative;z-index:1;}
.blm-page .news .panel::before{content:"";position:absolute;top:-120px;right:-60px;width:340px;height:340px;
  background:radial-gradient(closest-side,rgba(158,208,242,.28),transparent 70%);}
.blm-page .news .panel::after{content:"";position:absolute;bottom:-140px;left:-80px;width:320px;height:320px;
  background:radial-gradient(closest-side,rgba(50,154,224,.24),transparent 70%);}
.blm-page .news .tx{position:relative;}
.blm-page .news .eyebrow{color:var(--green-leaf);}
.blm-page .news h2{color:#fff;font-size:clamp(1.6rem,2.6vw,2rem);margin-bottom:10px;}
.blm-page .news p{color:rgba(255,255,255,.85);margin:0;max-width:420px;}
.blm-page .news .form{position:relative;display:flex;gap:12px;flex-wrap:wrap;}
.blm-page .news .form input{flex:1;min-width:200px;min-height:54px;padding:0 20px;font-family:var(--font-sans);font-size:1rem;
  color:var(--ink);background:#fff;border:1.5px solid transparent;border-radius:var(--r-pill);}
.blm-page .news .form input:focus{outline:none;border-color:var(--green-leaf);box-shadow:0 0 0 4px rgba(158,208,242,.4);}
.blm-page .news .form .note{width:100%;margin:4px 0 0;font-size:.78rem;color:rgba(255,255,255,.7);display:flex;align-items:center;gap:7px;}
.blm-page .news .form .note i{width:14px;height:14px;}
.blm-page .news .done{display:none;align-items:center;gap:12px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);
  border-radius:var(--r-md);padding:18px 22px;font-weight:600;}
.blm-page .news .done.on{display:flex;}
.blm-page .news .done i{width:22px;height:22px;color:var(--green-leaf);flex:0 0 auto;}

@media (max-width:980px){
  .blm-page .feature{grid-template-columns:1fr;}
  .blm-page .feature .media{min-height:240px;}
  .blm-page .pgrid{grid-template-columns:repeat(2,1fr);}
  .blm-page .news .panel{grid-template-columns:1fr;gap:28px;padding:44px 34px;}
}
@media (max-width:680px){
  .blm-page .hero{padding:54px 0 120px;}
  .blm-page .feature .body{padding:30px 26px;}
  .blm-page .pgrid{grid-template-columns:1fr;}
}
