/* =========================
   Ultra-light CSS (Fast)
   No external libs, no heavy effects
   ========================= */

:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --muted:#93a4bd;
  --text:#e9f0ff;
  --line:rgba(255,255,255,.08);
  --brand:#4ee1a0;
  --brand2:#7aa7ff;
  --white:#fff;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --r:16px;
  --max:1100px;
}

*{box-sizing:border-box}
html, body { height: 100%; }
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 500px at 20% 0%, rgba(122,167,255,.18), transparent 60%),
              radial-gradient(900px 450px at 80% 10%, rgba(78,225,160,.14), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.55;

  /* ✅ Mobile horizontal scroll killer */
  overflow-x:hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; } /* আপনার main wrapper যেটা, সেটাকে main ধরুন */

img{
  max-width:100%;
  display:block;
  height:auto;
}

a{color:inherit; text-decoration:none}
a:focus{outline:2px solid rgba(122,167,255,.55); outline-offset:3px}

.container{
  max-width:var(--max);
  width:100%;
  margin:0 auto;
  padding:0 16px;
  min-width:0; /* ✅ grid overflow prevent */
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Topbar */
.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(15,26,46,.5);
  backdrop-filter: blur(6px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.topbar__note{font-size:12px; color:var(--muted)}
.topbar__link{
  font-size:12px; color:var(--brand);
  padding:6px 10px; border:1px solid rgba(78,225,160,.25);
  border-radius:999px;
}

/* Header */
.header{
  position:sticky; top:0;
  z-index:30;
  border-bottom:1px solid var(--line);
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{
  width:36px; height:36px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(78,225,160,.25), rgba(122,167,255,.25));
  border:1px solid rgba(255,255,255,.12);
  font-weight:800;
}
.brand__name{display:block; font-weight:800; letter-spacing:.2px}
.brand__tag{display:block; font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:10px}
.nav__link{
  font-size:14px;
  padding:8px 10px;
  color:rgba(233,240,255,.86);
  border-radius:10px;
}
.nav__link:hover{background: rgba(255,255,255,.06)}
.nav__link.is-active{background: rgba(122,167,255,.14); border:1px solid rgba(122,167,255,.18)}

.header__cta{display:none}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:12px;
  padding:10px 14px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
}
.btn--primary{
  background: linear-gradient(135deg, rgba(78,225,160,.95), rgba(122,167,255,.95));
  color:#061022;
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color:rgba(233,240,255,.92);
}
.btn--small{padding:8px 12px; border-radius:10px; font-size:13px}

/* Hero */
.hero{padding:28px 0 10px}
.hero__inner{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:16px;
  align-items:stretch;
  min-width:0;
}
.hero__title{
  font-size:34px;
  line-height:1.15;
  margin:0 0 10px;
}
.hero__sub{
  margin:0 0 16px;
  color:var(--muted);
  max-width:60ch;
}

.search{margin-top:10px}
.search__form{
  display:flex; gap:10px;
  background: rgba(15,26,46,.65);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:10px;
}
.search__input{
  flex:1;
  background: transparent;
  border:0;
  outline:none;
  color:var(--text);
  font-size:14px;
  padding:10px 10px;
  min-width:0;
}
.search__input::placeholder{color:rgba(147,164,189,.85)}
.search__btn{white-space:nowrap}

.hero__chips{
  display:flex; flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.chip{
  font-size:13px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.chip:hover{border-color: rgba(78,225,160,.25)}

.hero__card{
  background: rgba(15,26,46,.75);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding:16px;
  min-width:0;
}
.card__title{margin:0 0 10px; font-size:16px}
.card__text{margin:0 0 12px; color:rgba(233,240,255,.9)}
.card__meta{display:flex; gap:8px; flex-wrap:wrap}
.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:rgba(233,240,255,.85);
}

/* Section + Grid */
.section{padding:18px 0 38px}
.grid{
  display:grid;
  grid-template-columns: 1fr 330px;
  gap:16px;
  align-items:start;
  min-width:0;
}
.grid > *{min-width:0;} /* ✅ grid overflow prevent */

.section__head{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:12px; margin-bottom:10px;
}
.section__title{margin:0; font-size:18px}
.section__link{color:var(--brand); font-size:13px}

/* Posts list */
.posts{display:flex; flex-direction:column; gap:12px}
.post{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:14px;
  background: rgba(15,26,46,.70);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  overflow:hidden;
  min-width:0;
}
.post__thumb{display:block}
.post__thumb img{width:100%; height:100%; object-fit:cover}
.post__body{padding:14px 14px 14px 0; min-width:0;}
.post__meta{
  display:flex; align-items:center; gap:8px;
  font-size:12px; color:var(--muted);
  flex-wrap:wrap;
}
.post__cat{color: rgba(122,167,255,.95)}
.dot{opacity:.6}
.post__title{
  margin:8px 0 8px;
  font-size:18px;
  line-height:1.25;
}
.post__title a:hover{color: var(--brand2)}
.post__excerpt{margin:0 0 12px; color:rgba(233,240,255,.85)}
.post__actions{display:flex; gap:10px; flex-wrap:wrap}

/* Sidebar boxes */
.box{
  background: rgba(15,26,46,.70);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding:14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  margin-bottom:12px;
  min-width:0;
}
.box__title{margin:0 0 8px; font-size:15px}
.box__text{margin:0 0 12px; color:rgba(233,240,255,.85)}
.box__hint{margin:10px 0 0; font-size:12px; color:var(--muted)}

.catlist{margin:0; padding:0; list-style:none}
.catlist li{border-top:1px solid var(--line)}
.catlist li:first-child{border-top:0}
.catlist a{display:block; padding:10px 0; color:rgba(233,240,255,.92)}
.catlist a:hover{color:var(--brand)}

.nl{display:flex; gap:10px}
.nl__input{
  flex:1;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  padding:10px 12px;
  color:var(--text);
  outline:none;
  min-width:0;
}
.nl__input::placeholder{color:rgba(147,164,189,.85)}
.nl__btn{white-space:nowrap}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background: rgba(15,26,46,.45);
  padding:18px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.brand--footer .brand__logo{width:34px; height:34px}
.footer__copy{margin:10px 0 0; color:var(--muted); font-size:12px}
.footer__nav{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.footer__nav a{color:rgba(233,240,255,.86); font-size:13px}
.footer__nav a:hover{color:var(--brand)}

/* Category listing pages */
.pagehead{padding:22px 0 6px}
.pagehead__title{margin:0 0 6px; font-size:26px; line-height:1.2}
.pagehead__sub{margin:0; color:var(--muted); max-width:70ch}

.catgrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:10px;
}

.catcard{
  display:block;
  background: rgba(15,26,46,.70);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding:14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.catcard__top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.catcard__icon{
  width:36px; height:36px;
  display:grid; place-items:center;
  border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.catcard__name{font-weight:800; letter-spacing:.2px}
.catcard__desc{margin:0 0 10px; color:rgba(233,240,255,.85)}
.catcard__cta{color:var(--brand); font-weight:700; font-size:13px}

.catcard:hover{
  border-color: rgba(78,225,160,.22);
  transform: translateY(-1px);
  transition: transform .12s ease, border-color .12s ease;
}

/* Simple content pages */
.prose{
  background: rgba(15,26,46,.62);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding:16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);

  /* ✅ keep it fluid everywhere */
  width:100%;
  max-width:100%;
  min-width:0;

  /* ✅ long URL/text safe */
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* ✅ Make embedded stuff always responsive (desktop+mobile) */
.prose img,
.prose iframe,
.prose video{
  max-width:100%;
  height:auto;
}

/* ✅ tables never break layout */
.prose table{
  max-width:100%;
  width:100%;
  border-collapse:collapse;
}
.prose table,
.prose th,
.prose td{
  border:1px solid rgba(255,255,255,.08);
}
.prose th,
.prose td{
  padding:10px 12px;
  vertical-align:top;
}

/* ✅ code blocks safe */
.prose pre,
.prose code{
  max-width:100%;
  overflow:auto;
}

.prose h2{margin:18px 0 8px; font-size:18px}
.prose h3{margin:14px 0 6px; font-size:16px}
.prose p{margin:10px 0; color:rgba(233,240,255,.90)}
.prose ul{margin:10px 0 10px 18px}
.prose li{margin:6px 0; color:rgba(233,240,255,.90)}

.notice{
  background: rgba(122,167,255,.10);
  border:1px solid rgba(122,167,255,.20);
  border-radius: 12px;
  padding:12px 14px;
  color:rgba(233,240,255,.92);
}

.form{display:grid; gap:10px;}
.input, .textarea{
  width:100%;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  padding:10px 12px;
  color:var(--text);
  outline:none;
}
.textarea{min-height:130px; resize:vertical}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.helper{font-size:12px; color:var(--muted)}

/* ========= Responsive ========= */
@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .post{grid-template-columns: 1fr}
  .post__body{padding:14px}
  .header__cta{display:inline-flex}
  .nav{display:none}
  .catgrid{grid-template-columns: 1fr}
  .row2{grid-template-columns:1fr}

  /* ✅ ensure prose never causes horizontal scroll */
  .prose{ padding:14px; }
  .prose table{
    display:block;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    width:100%;
  }
}

.footer__link{padding:10px 0}

/* Pro Footer (newsletter + multi-column like reference) */
.footer--pro{
  background: rgba(0,0,0,.55);
  border-top:1px solid var(--line);
  padding:34px 0 26px;
  position:relative;
}
.fnews{
  text-align:center;
  max-width: 760px;
  margin: 0 auto;
}
.fnews__title{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.15;
}
.fnews__sub{
  margin:0 0 18px;
  color: rgba(233,240,255,.78);
}
.fnews__form{
  display:flex;
  gap:10px;
  justify-content:center;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:10px;
  max-width: 520px;
  margin: 0 auto;
}
.fnews__input{
  flex:1;
  min-width: 160px;
  background: transparent;
  border:0;
  outline:none;
  color: var(--text);
  font-size:14px;
  padding:10px 12px;
}
.fnews__input::placeholder{color: rgba(147,164,189,.85)}
.fnews__btn{
  border:0;
  padding:10px 16px;
  border-radius:12px;
  font-weight:800;
  color:#fff;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  cursor:pointer;
}
.fnews__hint{
  margin:12px 0 0;
  color: rgba(233,240,255,.88);
  font-weight:700;
  font-size:13px;
}
.fdivider{
  height:1px;
  background: var(--line);
  margin: 28px 0 22px;
}

/* Footer grid */
.footer__gridpro{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__about{min-width:0;}
.footer__logo img{display:block}
.footer__abouttext{
  margin:14px 0 14px;
  color: rgba(233,240,255,.78);
  font-size:14px;
  max-width: 52ch;
}
.fsocial{
  display:flex;
  gap:12px;
  align-items:center;
}
.fsocial__btn{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.fsocial__btn svg{
  width:18px;
  height:18px;
  fill: rgba(233,240,255,.9);
}
.fsocial__btn:hover{
  border-color: rgba(78,225,160,.22);
  background: rgba(78,225,160,.06);
}
.footer__copyright{
  margin:14px 0 0;
  color: rgba(147,164,189,.92);
  font-size:12px;
}

.footer__title{
  margin: 0 0 14px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(233,240,255,.65);
}
.footer__link{
  display:block;
  padding:8px 0;
  font-size:14px;
  color: rgba(233,240,255,.92);
}
.footer__link:hover{
  color: var(--white);
  text-decoration: none;
  opacity: .9;
}

/* Back to top */
.backtop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  z-index: 60;
}
.backtop svg{width:22px; height:22px; fill: rgba(233,240,255,.92)}
.backtop:hover{border-color: rgba(78,225,160,.25); background: rgba(78,225,160,.06)}

@media (max-width: 980px){
  .fnews__title{font-size:26px}
  .fnews__form{flex-direction:column}
  .footer__gridpro{grid-template-columns: 1fr; gap: 16px}
}

/* =========================
   FOOTER FINAL FIX (No dependency on footer--pro)
   Paste at END of style.css
   ========================= */

footer .container{
  max-width: 1220px !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
footer .fnews{
  max-width: 820px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
footer .fnews__title{
  font-size: 38px !important;
  line-height: 1.15 !important;
  margin: 0 0 10px !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,.95) !important;
}
footer .fnews__sub{
  margin: 0 0 22px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 15px !important;
}
footer .fnews__form{
  max-width: 520px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
footer .fnews__input{
  flex: 1 !important;
  background: transparent !important;
  border: 0 !important;
  outline: none !important;
  padding: 12px 12px !important;
  color: rgba(255,255,255,.92) !important;
}
footer .fnews__btn{
  padding: 11px 18px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06)) !important;
  color: rgba(255,255,255,.95) !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}
footer .fnews__hint{
  margin-top: 14px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.88) !important;
}
footer .fdivider{
  height: 1px !important;
  background: rgba(255,255,255,.08) !important;
  margin: 34px 0 26px !important;
}
footer .footer__gridpro{
  display: grid !important;
  grid-template-columns: 1.55fr 1fr 1fr 1fr !important;
  gap: 34px !important;
  align-items: start !important;
}
footer .footer__abouttext{
  max-width: 54ch !important;
  color: rgba(255,255,255,.78) !important;
  line-height: 1.7 !important;
  font-size: 14px !important;
}
footer .footer__title{
  margin: 0 0 16px !important;
  font-size: 12px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.55) !important;
}
footer .footer__link{
  display: block !important;
  padding: 9px 0 !important;
  font-size: 14px !important;
  color: rgba(255,255,255,.92) !important;
}
footer .footer__link:hover{
  color: rgba(255,255,255,.98) !important;
  opacity: .92 !important;
}
footer .fsocial{
  display: flex !important;
  gap: 12px !important;
  margin-top: 6px !important;
  align-items: center !important;
}
footer .fsocial__btn{
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
footer .fsocial__btn svg{
  width: 18px !important;
  height: 18px !important;
  fill: rgba(255,255,255,.90) !important;
}
footer{
  background: #111 !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}
@media (max-width: 980px){
  footer .fnews__title{ font-size: 26px !important; }
  footer .fnews__form{ flex-direction: column !important; }
  footer .footer__gridpro{ grid-template-columns: 1fr !important; gap: 18px !important; }
}

/* ===== AOS Footer (conflict-free) ===== */
.aos-footer{
  background:#0b0f19;
  color:#c9d2e3;
  border-top:1px solid rgba(255,255,255,.08);
}
.aos-footer__wrap{
  max-width:1200px;
  margin:0 auto;
  padding:48px 18px 18px;
}
.aos-footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap:28px;
}
.aos-footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  margin-bottom:10px;
}
.aos-footer__logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:12px;
  background:rgba(255,255,255,.10);
  font-weight:800;
  letter-spacing:.5px;
}
.aos-footer__brandText{font-weight:700; font-size:18px;}
.aos-footer__text{
  margin:0;
  line-height:1.65;
  font-size:14px;
  color:#b8c2d6;
  max-width:52ch;
}
.aos-footer__title{
  margin:0 0 10px;
  font-size:14px;
  color:#fff;
  letter-spacing:.2px;
}
.aos-footer__links{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.aos-footer__links a{
  color:#b8c2d6;
  text-decoration:none;
  font-size:14px;
}
.aos-footer__links a:hover{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:3px;
}
.aos-footer__form{margin-top:4px;}
.aos-footer__label{
  display:block;
  font-size:12px;
  color:#b8c2d6;
  margin-bottom:8px;
}
.aos-footer__inputRow{display:flex; gap:10px;}
.aos-footer__input{
  flex:1;
  height:42px;
  padding:0 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  outline:none;
}
.aos-footer__input::placeholder{color:rgba(255,255,255,.55);}
.aos-footer__input:focus{border-color:rgba(255,255,255,.26);}
.aos-footer__btn{
  height:42px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  white-space:nowrap;
}
.aos-footer__btn:hover{background:rgba(255,255,255,.18);}
.aos-footer__note{
  display:block;
  margin-top:8px;
  font-size:12px;
  color:#9fb0cc;
}
.aos-footer__social{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}
.aos-footer__socialBtn{
  width:38px;
  height:38px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  font-size:13px;
}
.aos-footer__socialBtn:hover{background:rgba(255,255,255,.16);}
.aos-footer__bottom{
  margin-top:26px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.aos-footer__copy{margin:0; font-size:13px; color:#b8c2d6;}
.aos-footer__top{
  font-size:13px;
  color:#fff;
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}
.aos-footer__top:hover{background:rgba(255,255,255,.14);}

/* Responsive */
@media (max-width: 992px){
  .aos-footer__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .aos-footer__grid{ grid-template-columns: 1fr; }
  .aos-footer__inputRow{ flex-direction:column; }
  .aos-footer__btn{ width:100%; }
}

/* =========================
   MOBILE TYPOGRAPHY BOOST
   Paste at END of style.css
   ========================= */
@media (max-width: 380px){

  /* Base text bigger */
  body{
    font-size: 17px;
    line-height: 1.75;
  }

  /* Headings bigger */
  .hero__title{ font-size: 30px; line-height: 1.18; }
  .pagehead__title{ font-size: 28px; line-height: 1.18; }

  /* Post cards + lists */
  .post__title{ font-size: 20px; line-height: 1.25; }
  .post__excerpt{ font-size: 16px; line-height: 1.7; }

  /* Meta text a bit bigger */
  .post__meta,
  .topbar__note,
  .topbar__link,
  .footer__nav a,
  .footer__copy{
    font-size: 14px;
  }

  /* Sidebar + boxes */
  .box__title{ font-size: 16px; }
  .box__text{ font-size: 15.5px; line-height: 1.7; }

  /* Main article content (prose) bigger */
  .prose{
    font-size: 17px;
    line-height: 1.85;
  }
  .prose h2{ font-size: 22px; }
  .prose h3{ font-size: 19px; }
  .prose p, .prose li{ font-size: 17px; }

  /* Buttons & chips readability */
  .btn{ font-size: 15px; }
  .chip{ font-size: 14px; }
  .pill{ font-size: 13px; }
}
