/* ═══════════════════════════════════════════════════════════
   AUP PUBLIC SITE CSS — /assets/css/public.css
   ═══════════════════════════════════════════════════════════ */
:root {
  --blue:#1a56db; --dark:#0a1628; --gold:#c9990a;
  --light-aup:#f8faff; --border:#e2e8f0;
  --text:#1e293b; --muted:#64748b; --radius:14px;
}
*{box-sizing:border-box;}
body{font-family:'Inter',sans-serif;color:var(--text);background:#fff;margin:0;}
h1,h2,h3,h4,h5{font-family:'Sora',sans-serif;}
a{text-decoration:none;}

/* ── NAVBAR ─────────────────────────────────────────────── */
.pub-nav{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(10,22,40,.92);backdrop-filter:blur(12px);border-bottom:1px solid rgba(255,255,255,.08);transition:.3s;}
.pub-nav.scrolled{background:rgba(10,22,40,.98);box-shadow:0 2px 20px rgba(0,0,0,.3);}
.pub-nav-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;padding:0 20px;height:68px;}
.pub-brand{display:flex;align-items:center;gap:10px;color:#fff;font-weight:800;font-size:17px;}
.pub-brand img{height:44px;width:44px;}
.pub-brand span{display:none;}
@media(min-width:576px){.pub-brand span{display:block;}}
.pub-brand b{color:#fbbf24;}
.pub-navlinks{display:none;margin:0 auto;gap:4px;}
@media(min-width:992px){.pub-navlinks{display:flex;}}
.pub-navlinks a{color:rgba(255,255,255,.75);font-size:13.5px;font-weight:600;padding:8px 14px;border-radius:8px;transition:.15s;}
.pub-navlinks a:hover,.pub-navlinks a.active{color:#fff;background:rgba(255,255,255,.1);}
.pub-nav-actions{display:flex;align-items:center;gap:10px;margin-left:auto;}
.pub-login{color:rgba(255,255,255,.8);font-size:14px;font-weight:600;padding:8px 16px;border-radius:8px;transition:.15s;}
.pub-login:hover{color:#fff;background:rgba(255,255,255,.1);}
.pub-join{background:#fbbf24;color:#0a1628;font-size:13.5px;font-weight:800;padding:9px 20px;border-radius:9px;transition:.2s;}
.pub-join:hover{background:#f59e0b;color:#0a1628;}
.pub-hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:4px;margin-left:10px;background:none;border:none;}
.pub-hamburger span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;}
@media(min-width:992px){.pub-hamburger{display:none;}}
.pub-mobile-menu{display:none;position:fixed;top:68px;left:0;right:0;bottom:0;background:#0a1628;z-index:999;padding:20px;overflow-y:auto;flex-direction:column;gap:4px;}
.pub-mobile-menu.open{display:flex;}
.pub-mobile-menu a{color:rgba(255,255,255,.8);font-size:16px;font-weight:600;padding:14px 16px;border-radius:10px;border-bottom:1px solid rgba(255,255,255,.06);}
.pub-mobile-menu a:hover{color:#fff;background:rgba(255,255,255,.06);}
.pub-mobile-menu .mobile-join-btn{background:#fbbf24;color:#0a1628;text-align:center;border-radius:10px;margin-top:12px;border-bottom:none;}

/* ── UTILS ──────────────────────────────────────────────── */
.py-section{padding:80px 0;}
.bg-white{background:#fff;}
.bg-light-aup{background:var(--light-aup);}
.bg-dark-aup{background:var(--dark);color:#fff;}
.sec-label{display:inline-block;background:#eff6ff;color:#1a56db;font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:5px 14px;border-radius:99px;margin-bottom:12px;}
.sec-label-dark{background:rgba(255,255,255,.1);color:#fbbf24;}
.sec-label-gold{background:rgba(251,191,36,.15);color:#fbbf24;border:1px solid rgba(251,191,36,.2);}
.sec-title{font-size:clamp(1.5rem,3.5vw,2.2rem);font-weight:800;line-height:1.15;margin-bottom:12px;}
.sec-title-dark{color:#fff;}
.sec-text{color:var(--muted);line-height:1.8;font-size:15px;margin-bottom:14px;}
.sec-sub-center{color:var(--muted);font-size:1.05rem;max-width:600px;margin:0 auto;line-height:1.75;}
.sec-sub-dark{color:rgba(255,255,255,.65);font-size:1rem;line-height:1.75;}
.sec-head-row{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-bottom:36px;}
.section-header{margin-bottom:48px;}
.section-header.centered{text-align:center;}
.fade-up{opacity:0;transform:translateY(20px);transition:.6s ease;}
.fade-up.visible{opacity:1;transform:none;}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-aup-primary{display:inline-flex;align-items:center;gap:8px;background:var(--blue);color:#fff;padding:13px 26px;border-radius:10px;font-weight:700;font-size:14.5px;border:none;transition:.2s;}
.btn-aup-primary:hover{background:#1344b8;color:#fff;transform:translateY(-1px);}
.btn-aup-primary.btn-lg-aup{padding:15px 32px;font-size:15.5px;}
.btn-aup-outline{display:inline-flex;align-items:center;gap:8px;background:transparent;color:var(--blue);padding:11px 22px;border-radius:10px;font-weight:700;font-size:14px;border:2px solid var(--blue);transition:.2s;white-space:nowrap;}
.btn-aup-outline:hover{background:var(--blue);color:#fff;}
.btn-aup-ghost{display:inline-flex;align-items:center;gap:8px;color:rgba(255,255,255,.85);border:1.5px solid rgba(255,255,255,.25);padding:12px 24px;border-radius:10px;font-weight:600;font-size:14.5px;transition:.2s;}
.btn-aup-ghost:hover{background:rgba(255,255,255,.1);color:#fff;}
.btn-aup-ghost-sm{color:rgba(255,255,255,.7);font-size:14px;font-weight:600;display:inline-flex;align-items:center;gap:6px;padding:8px 16px;border-radius:8px;border:1px solid rgba(255,255,255,.2);transition:.15s;}
.btn-aup-ghost-sm:hover{color:#fff;background:rgba(255,255,255,.08);}

/* ── HERO ───────────────────────────────────────────────── */
.hero-section{min-height:100vh;background:linear-gradient(160deg,#0a1628 0%,#0f2a4a 50%,#071020 100%);position:relative;overflow:hidden;}
.hero-bg{position:absolute;inset:0;background:url('/assets/img/slide1.jpeg') center/cover no-repeat;opacity:.07;}
.hero-bg::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(26,86,219,.2) 0%,transparent 65%);}
.hero-content{position:relative;z-index:2;}
.hero-overline{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:99px;padding:7px 16px;margin-bottom:22px;font-size:12px;font-weight:700;color:#fbbf24;letter-spacing:.08em;text-transform:uppercase;}
.hero-title{font-size:clamp(2rem,5vw,3.8rem);font-weight:800;color:#fff;line-height:1.08;margin-bottom:20px;}
.hero-title span{color:#fbbf24;}
.hero-desc{font-size:1.05rem;color:rgba(255,255,255,.7);max-width:540px;line-height:1.75;margin-bottom:32px;}
.hero-stats{display:flex;gap:28px;margin-top:28px;padding-top:24px;border-top:1px solid rgba(255,255,255,.1);}
.hstat-num{font-family:'Sora',sans-serif;font-size:1.8rem;font-weight:800;color:#fff;line-height:1;}
.hstat-lbl{font-size:11px;color:rgba(255,255,255,.5);margin-top:3px;}
.hero-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(10px);border-radius:20px;padding:28px;}
.hero-card-label{font-size:13px;font-weight:700;color:#fbbf24;margin-bottom:20px;}
.climt-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:22px;}
.climt-item{display:flex;align-items:center;gap:10px;background:rgba(255,255,255,.05);border-radius:10px;padding:12px 14px;color:#fff;font-size:13.5px;font-weight:600;}
.climt-item i{font-size:16px;}
.hero-card-quote{font-size:13px;color:rgba(255,255,255,.6);line-height:1.7;padding-top:18px;border-top:1px solid rgba(255,255,255,.1);font-style:italic;}

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar{background:var(--blue);padding:22px 0;}
.stats-bar-inner{display:flex;justify-content:center;gap:clamp(16px,5vw,70px);flex-wrap:wrap;}
.sbar-item{text-align:center;color:#fff;}
.sbar-num{font-family:'Sora',sans-serif;font-size:1.9rem;font-weight:800;}
.sbar-lbl{font-size:11.5px;opacity:.75;margin-top:2px;}

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero{background:linear-gradient(135deg,#0a1628 0%,#1a3a6b 100%);padding:100px 0 60px;margin-top:0;}
.page-hero-inner{text-align:center;padding-top:0;}
.page-hero-title{font-size:clamp(2rem,5vw,3rem);font-weight:800;color:#fff;margin:10px 0;}
.page-hero-sub{font-size:1.1rem;color:rgba(255,255,255,.65);max-width:560px;margin:0 auto;line-height:1.75;}

/* ── ABOUT CARDS ────────────────────────────────────────── */
.about-card{background:#fff;border-radius:var(--radius);border:1px solid var(--border);padding:24px;height:100%;transition:box-shadow .2s,transform .2s;}
.about-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.08);transform:translateY(-3px);}
.about-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;font-size:20px;}
.about-card h6{font-size:15px;font-weight:800;margin-bottom:8px;}
.about-card p{color:var(--muted);font-size:13.5px;line-height:1.7;margin:0;}
.about-highlight-box{background:#0a1628;border-radius:20px;padding:36px;position:relative;}
.ahb-header{font-size:36px;color:rgba(255,255,255,.15);margin-bottom:14px;}
.about-highlight-box blockquote{font-size:16px;color:rgba(255,255,255,.85);line-height:1.8;font-style:italic;margin:0 0 20px;}
.ahb-footer{font-size:13px;color:rgba(255,255,255,.4);font-weight:600;}

/* ── VMV CARDS ──────────────────────────────────────────── */
.vmv-card{border-radius:var(--radius);padding:32px 28px;height:100%;}
.vmv-blue{background:#1a56db;color:#fff;}
.vmv-dark{background:#0a1628;color:#fff;}
.vmv-gold{background:#d97706;color:#fff;}
.vmv-card .vmv-icon{width:52px;height:52px;background:rgba(255,255,255,.18);border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:22px;color:#fff;margin-bottom:18px;}
.vmv-card h4{font-size:19px;font-weight:800;color:#fff;margin-bottom:12px;}
.vmv-card p{color:rgba(255,255,255,.8);font-size:14.5px;line-height:1.75;margin-bottom:0;}
.climt-detailed{margin-top:12px;display:flex;flex-direction:column;gap:10px;}
.climt-row{display:flex;flex-direction:column;gap:2px;}
.climt-row strong{font-size:13.5px;color:#fff;}
.climt-row span{font-size:12.5px;color:rgba(255,255,255,.7);}

/* ── OBJECTIVES ─────────────────────────────────────────── */
.objectives-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:16px;}
.obj-row{display:flex;gap:16px;align-items:flex-start;padding:20px;background:#fff;border-radius:12px;border:1px solid var(--border);transition:box-shadow .2s;}
.obj-row:hover{box-shadow:0 4px 20px rgba(0,0,0,.06);}
.obj-icon-sm{width:42px;height:42px;border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0;}
.obj-title{font-size:14px;font-weight:700;margin-bottom:5px;}
.obj-desc{font-size:13px;color:var(--muted);line-height:1.65;margin:0;}

/* ── PRIORITY CARDS ─────────────────────────────────────── */
.priority-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:24px;}
.priority-icon{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:16px;}
.priority-card h5{font-size:16px;font-weight:700;color:#fff;margin-bottom:10px;}
.priority-card p{font-size:13.5px;color:rgba(255,255,255,.6);line-height:1.7;margin-bottom:16px;}
.priority-bar{height:6px;background:rgba(255,255,255,.1);border-radius:99px;overflow:hidden;margin-bottom:6px;}
.priority-fill{height:100%;border-radius:99px;}
.priority-pct{font-size:11px;font-weight:700;}

/* ── LEADER CARDS ───────────────────────────────────────── */
.leader-mini{background:#fff;border-radius:var(--radius);border:1px solid var(--border);padding:18px 12px;transition:box-shadow .2s,transform .2s;height:100%;}
.leader-mini:hover{box-shadow:0 8px 28px rgba(0,0,0,.09);transform:translateY(-3px);}
.leader-mini-photo{width:72px;height:72px;border-radius:50%;object-fit:cover;object-position:top;border:3px solid #e8eef8;margin-bottom:12px;}
.leader-mini-ph{width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#1a56db,#0a3080);display:flex;align-items:center;justify-content:center;color:#fff;font-size:24px;margin:0 auto 12px;}
.leader-mini-name{font-size:12.5px;font-weight:700;color:var(--text);margin-bottom:4px;}
.leader-mini-role{font-size:11px;color:var(--blue);font-weight:600;}
.leader-full-card{background:#fff;border-radius:var(--radius);border:1px solid var(--border);overflow:hidden;transition:box-shadow .2s,transform .2s;}
.leader-full-card:hover{box-shadow:0 10px 40px rgba(0,0,0,.1);transform:translateY(-4px);}
.leader-full-photo-wrap{height:210px;overflow:hidden;background:#e8eef8;}
.leader-full-photo{width:100%;height:100%;object-fit:cover;object-position:top;}
.leader-full-ph{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:#94a3b8;}
.leader-full-info{padding:18px 16px;}
.leader-full-name{font-size:14.5px;font-weight:800;margin-bottom:4px;}
.leader-full-role{font-size:12px;color:var(--blue);font-weight:600;margin-bottom:10px;}
.leader-full-bio{font-size:12.5px;color:var(--muted);line-height:1.65;margin:0;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}

/* ── COMMITTEE CARDS ────────────────────────────────────── */
.committee-full-card{background:#fff;border-radius:var(--radius);border:1px solid var(--border);overflow:hidden;}
.committee-full-head{padding:18px 20px;display:flex;align-items:center;gap:14px;}
.chead-icon{width:40px;height:40px;background:rgba(255,255,255,.2);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:17px;color:#fff;flex-shrink:0;}
.chead-name{font-size:15px;font-weight:800;color:#fff;}
.chead-count{font-size:11.5px;color:rgba(255,255,255,.65);}
.committee-full-body{padding:18px 20px;}
.committee-desc{font-size:13.5px;color:var(--muted);line-height:1.7;margin-bottom:16px;}
.committee-members-list{display:flex;flex-direction:column;gap:9px;}
.cm-item{display:flex;align-items:center;gap:10px;font-size:13.5px;color:var(--text);}
.cm-dot{width:7px;height:7px;border-radius:50%;flex-shrink:0;}

/* ── MEMBER PREVIEW ─────────────────────────────────────── */
.member-prev-avatar{width:80px;height:80px;border-radius:50%;object-fit:cover;border:3px solid #e8eef8;margin-bottom:12px;}
.member-prev-ph{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,#1a56db,#0a3080);display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:800;color:#fff;margin:0 auto 12px;}
.member-prev-name{font-size:13.5px;font-weight:700;color:var(--text);margin-bottom:4px;}
.member-prev-prof{font-size:12px;color:var(--blue);font-weight:600;}

/* ── PROJECT CARDS ──────────────────────────────────────── */
.proj-preview-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:26px;transition:background .2s;}
.proj-preview-card:hover{background:rgba(255,255,255,.07);}
.proj-icon{width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:22px;margin-bottom:14px;}
.proj-tag{font-size:10.5px;font-weight:700;padding:4px 10px;border-radius:99px;background:rgba(255,255,255,.12);color:rgba(255,255,255,.75);margin-bottom:10px;display:inline-block;}
.proj-preview-card h5{font-size:16px;font-weight:800;color:#fff;margin-bottom:10px;}
.proj-preview-card p{font-size:13.5px;color:rgba(255,255,255,.6);line-height:1.7;margin-bottom:16px;}
.proj-link{font-size:13px;font-weight:700;color:#4393fc;display:inline-flex;align-items:center;gap:6px;}
.project-full-card{background:#fff;border-radius:var(--radius);border:1px solid var(--border);overflow:hidden;transition:box-shadow .2s,transform .2s;}
.project-full-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.1);transform:translateY(-3px);}
.pfc-top{padding:24px 24px 0;}
.pfc-icon{width:50px;height:50px;border-radius:13px;display:flex;align-items:center;justify-content:center;font-size:21px;margin-bottom:14px;}
.pfc-tag{font-size:10.5px;font-weight:700;padding:4px 10px;border-radius:99px;margin-bottom:12px;margin-right:6px;display:inline-block;}
.pfc-title{font-size:16px;font-weight:800;margin-bottom:10px;}
.pfc-desc{font-size:13.5px;color:var(--muted);line-height:1.7;margin-bottom:20px;}
.pfc-bottom{padding:14px 24px;border-top:1px solid var(--border);}
.pfc-impact{font-size:12px;color:var(--muted);font-weight:600;}
.support-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:28px 22px;height:100%;text-align:center;}

/* ── EVENT CARDS ────────────────────────────────────────── */
.event-full-card{background:#fff;border-radius:var(--radius);border:1px solid var(--border);overflow:hidden;transition:box-shadow .2s,transform .2s;}
.event-full-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.09);transform:translateY(-3px);}
.efc-date-strip{background:var(--dark);padding:16px 20px;display:flex;align-items:center;justify-content:space-between;}
.efc-date-box{display:flex;flex-direction:column;align-items:center;background:var(--blue);color:#fff;border-radius:10px;padding:10px 14px;min-width:56px;}
.efc-day{font-size:22px;font-weight:800;line-height:1;}
.efc-mon{font-size:11px;font-weight:700;text-transform:uppercase;}
.efc-yr{font-size:10px;opacity:.75;}
.efc-time{font-size:13px;color:rgba(255,255,255,.6);display:flex;align-items:center;gap:7px;}
.efc-placeholder-top{background:var(--dark);padding:20px;display:flex;align-items:center;justify-content:space-between;}
.efc-emoji{font-size:32px;}
.efc-placeholder-date{font-size:13px;font-weight:700;color:rgba(255,255,255,.6);}
.efc-body{padding:20px;}
.efc-title{font-size:16px;font-weight:800;margin-bottom:8px;}
.efc-loc{font-size:12.5px;color:var(--muted);margin-bottom:10px;display:flex;align-items:center;gap:7px;}
.efc-desc{font-size:13px;color:var(--muted);line-height:1.7;margin:0;}
.efc-foot{padding:14px 20px;border-top:1px solid var(--border);}
.efc-rsvp-btn{display:inline-flex;align-items:center;background:var(--blue);color:#fff;padding:9px 18px;border-radius:8px;font-size:13px;font-weight:700;transition:.15s;}
.efc-rsvp-btn:hover{background:#1344b8;color:#fff;}
.activity-type-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:28px 18px;height:100%;}
.past-event-row{display:flex;align-items:center;gap:16px;padding:16px;background:#fff;border-radius:12px;border:1px solid var(--border);}
.past-event-date{font-size:12.5px;color:var(--muted);font-weight:600;min-width:90px;}
.past-event-info{flex:1;}
.past-event-title{font-size:14px;font-weight:700;margin-bottom:3px;}
.past-event-loc{font-size:12px;color:var(--muted);}
.past-event-badge{font-size:11px;font-weight:700;background:#f1f5f9;color:var(--muted);padding:4px 10px;border-radius:99px;flex-shrink:0;}

/* ── JOIN CTA ───────────────────────────────────────────── */
.join-cta-section{background:linear-gradient(135deg,#0a1628,#1a3a6b);padding:90px 0;text-align:center;}
.join-steps{display:flex;justify-content:center;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:40px;}
.join-step{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.75);font-size:14px;font-weight:600;}
.join-step-num{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.15);color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;flex-shrink:0;}

/* ── FOOTER ─────────────────────────────────────────────── */
.pub-footer{background:#060d1a;color:rgba(255,255,255,.5);padding:52px 0 28px;}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
.footer-brand img{height:38px;}
.footer-brand span{color:#fff;font-weight:800;font-size:15px;}
.footer-brand b{color:#fbbf24;}
.footer-tagline{font-size:13.5px;line-height:1.75;max-width:280px;}
.footer-heading{color:#fff;font-size:12.5px;font-weight:700;margin-bottom:14px;letter-spacing:.06em;text-transform:uppercase;}
.footer-links{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:9px;}
.footer-links a{color:rgba(255,255,255,.5);font-size:13.5px;transition:color .15s;}
.footer-links a:hover{color:#fff;}
.footer-climt{display:flex;gap:6px;flex-wrap:wrap;margin-top:14px;}
.climt-pill{background:rgba(255,255,255,.07);color:rgba(255,255,255,.6);padding:4px 10px;border-radius:99px;font-size:11px;font-weight:600;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);margin-top:40px;padding-top:22px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:12.5px;}

/* ── Blog cards ─────────────────────────────────────────── */
.blog-pub-card{background:#fff;border-radius:var(--radius);border:1px solid var(--border);overflow:hidden;transition:box-shadow .2s,transform .2s;display:flex;flex-direction:column;}
.blog-pub-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.1);transform:translateY(-3px);}
.blog-pub-img{height:190px;overflow:hidden;background:#f1f5f9;}
.blog-pub-img img{width:100%;height:100%;object-fit:cover;transition:transform .3s;}
.blog-pub-card:hover .blog-pub-img img{transform:scale(1.04);}
.blog-pub-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:#cbd5e1;font-size:2.5rem;}
.blog-pub-body{padding:20px 20px 12px;flex:1;}
.blog-pub-cat{font-size:10.5px;font-weight:700;background:#eff6ff;color:#1a56db;padding:3px 10px;border-radius:99px;display:inline-block;margin-bottom:10px;}
.blog-pub-title{font-size:16px;font-weight:800;line-height:1.35;margin-bottom:10px;color:var(--text);}
.blog-pub-excerpt{font-size:13.5px;color:var(--muted);line-height:1.65;margin-bottom:12px;}
.blog-pub-meta{display:flex;gap:14px;font-size:12px;color:var(--muted);}
.blog-pub-foot{padding:12px 20px;border-top:1px solid var(--border);}
.blog-pub-link{font-size:13.5px;font-weight:700;color:#1a56db;display:inline-flex;align-items:center;gap:6px;}
.blog-pub-link:hover{color:#1344b8;}