/* ============================================================
   CollegeUnify News — "Notice Board"
   Dense, scannable, official. Density is a feature in this genre;
   the discipline is in the rules, the type scale and the stamps.
   ============================================================ */
:root{
  --ink:#12212e;        /* body text */
  --navy:#00344f;       /* brand navy */
  --saffron:#fc8600;    /* brand orange */
  --paper:#f7f6f3;      /* page ground: notice paper */
  --card:#fff;
  --rule:#dee3e8;
  --muted:#5d6b78;
  --red:#c81e1e;
  --accent:var(--navy);
  --wrap:1200px;
  --r:4px;              /* small radius: official, not app-y */
  --mono:'IBM Plex Mono',ui-monospace,SFMono-Regular,Menlo,monospace;
}
*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
  font-family:'Mukta',system-ui,-apple-system,'Segoe UI',sans-serif;
  color:var(--ink);background:var(--paper);
  font-size:16px;line-height:1.5;overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 16px}
.mono{font-family:var(--mono);font-variant-numeric:tabular-nums;letter-spacing:-.01em}
:focus-visible{outline:3px solid var(--saffron);outline-offset:2px}
.skip{position:absolute;left:-9999px}
.skip:focus{left:8px;top:8px;z-index:99;background:var(--navy);color:#fff;padding:10px 14px;border-radius:var(--r)}

/* ---------- breaking ticker ---------- */
.ticker{display:flex;align-items:stretch;background:var(--navy);color:#fff;font-size:14px;overflow:hidden}
.ticker-tag{
  flex:none;background:var(--red);font-weight:800;text-transform:uppercase;
  letter-spacing:.08em;font-size:11.5px;display:flex;align-items:center;padding:0 14px;
}
.ticker-track{display:flex;align-items:center;gap:10px;white-space:nowrap;padding:9px 14px;overflow-x:auto;scrollbar-width:none}
.ticker-track::-webkit-scrollbar{display:none}
.ticker-track a{opacity:.94}
.ticker-track a:hover{text-decoration:underline}
.ticker-sep{opacity:.4}

/* ---------- masthead ---------- */
.masthead{background:var(--card);border-bottom:1px solid var(--rule)}
.masthead-in{display:flex;align-items:center;gap:20px;padding-top:14px;padding-bottom:14px}
.brand{display:flex;align-items:center;gap:9px;flex:none;min-height:42px}
.brand-logo{height:38px;width:auto;flex:none}
.brand-suffix{
  font-weight:800;font-size:19px;line-height:1;color:var(--saffron);
  padding-left:11px;margin-left:2px;border-left:1px solid var(--rule);align-self:stretch;
  display:flex;flex-direction:column;justify-content:center;
}
.brand-suffix small{display:block;font-weight:500;font-size:11px;color:var(--muted);letter-spacing:.02em;margin-top:3px}
.search{margin-left:auto;display:flex;flex:1;max-width:420px}
.search input{
  flex:1;min-width:0;padding:10px 13px;font:inherit;font-size:14.5px;
  border:1px solid var(--rule);border-right:0;border-radius:var(--r) 0 0 var(--r);background:var(--paper);
}
.search button{
  padding:10px 16px;font:inherit;font-weight:700;font-size:14px;cursor:pointer;
  border:0;border-radius:0 var(--r) var(--r) 0;background:var(--navy);color:#fff;
}
.search button:hover{background:#02486e}

/* ---------- section nav ---------- */
.mainnav{background:var(--navy)}
.mainnav-in{display:flex;gap:2px;overflow-x:auto;scrollbar-width:none}
.mainnav-in::-webkit-scrollbar{display:none}
.mainnav-in a{
  flex:none;padding:11px 14px;color:#dbe6ee;font-weight:600;font-size:14px;
  border-bottom:3px solid transparent;white-space:nowrap;
}
.mainnav-in a:hover{color:#fff;background:rgba(255,255,255,.07)}
.mainnav-in a[aria-current]{color:#fff;border-bottom-color:var(--saffron)}

/* ---------- home grid ---------- */
.home{padding-top:22px;padding-bottom:40px}
.home-grid{display:grid;grid-template-columns:1fr 320px;gap:24px;align-items:start}
.home-main{display:grid;grid-template-columns:repeat(12,1fr);gap:20px;align-content:start}
.home-side{display:grid;gap:20px;position:sticky;top:14px}
.w-full{grid-column:span 12}
.w-half{grid-column:span 6}
.w-third{grid-column:span 4}
.w-quarter{grid-column:span 3}
.home-side .block{grid-column:auto}

/* ---------- block shell: the file-tab rule ---------- */
.block{background:var(--card);border:1px solid var(--rule);border-radius:var(--r);overflow:hidden;min-width:0}
.block-head{
  display:flex;align-items:baseline;gap:10px;padding:12px 15px;
  border-bottom:1px solid var(--rule);border-left:4px solid var(--accent);background:#fbfcfd;
}
.block-head h2{font-size:15.5px;font-weight:800;color:var(--navy);letter-spacing:-.01em}
.block-sub{font-size:12.5px;color:var(--muted)}
.viewall{margin-left:auto;font-size:12.5px;font-weight:700;color:var(--accent);white-space:nowrap}
.viewall:hover{text-decoration:underline}

/* ---------- kicker ---------- */
.kicker{
  display:inline-block;font-size:10.5px;font-weight:800;text-transform:uppercase;
  letter-spacing:.09em;color:var(--accent);
}

/* ---------- hero ---------- */
.hero{display:grid;grid-template-columns:1.55fr 1fr;gap:0}
.hero-lead{display:block;border-right:1px solid var(--rule)}
.hero-lead img{width:100%;aspect-ratio:16/9;object-fit:cover}
.hero-body{padding:15px 17px 18px}
.hero-body h3{font-size:26px;line-height:1.2;font-weight:800;letter-spacing:-.02em;margin:5px 0 7px}
.hero-lead:hover h3{color:var(--navy)}
.hero-body p{color:var(--muted);font-size:14.5px;margin-bottom:9px}
.hero-side{display:flex;flex-direction:column}
.hero-item{padding:13px 16px;border-bottom:1px solid var(--rule)}
.hero-item:last-child{border-bottom:0}
.hero-item:hover{background:#fbfcfd}
.hero-item h4{font-size:15px;line-height:1.32;font-weight:600;margin:3px 0 5px}
.hero time,.hero-item time{font-size:11.5px;color:var(--muted)}

/* ---------- table list: the workhorse ---------- */
.tlist{list-style:none}
.tlist li{border-bottom:1px solid var(--rule)}
.tlist li:last-child{border-bottom:0}
.tlist a{
  display:flex;align-items:baseline;gap:10px;padding:10px 15px;font-size:14.5px;line-height:1.38;
}
.tlist a:hover{background:#fbfcfd}
.tlist-title{flex:1;min-width:0}
.tlist a:hover .tlist-title{color:var(--navy);text-decoration:underline;text-underline-offset:2px}

/* the NEW flag */
.new{
  display:inline-block;vertical-align:middle;background:var(--red);color:#fff;
  font-size:9.5px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;
  padding:1px 5px;border-radius:2px;margin-left:3px;
}

/* ---------- SIGNATURE: the deadline stamp ---------- */
.stamp{
  flex:none;font-size:11.5px;color:var(--muted);
  border:1px solid var(--rule);border-radius:2px;padding:2px 6px;background:var(--paper);
}
.stamp-soon{
  color:#fff;background:var(--red);border-color:var(--red);font-weight:600;
  position:relative;
}
.stamp-soon::after{
  content:"";position:absolute;inset:-3px;border:1px solid var(--red);border-radius:3px;
  opacity:.35;animation:tick 2.4s ease-in-out infinite;
}
@keyframes tick{0%,100%{opacity:.35;transform:scale(1)}50%{opacity:0;transform:scale(1.06)}}
.stamp-closed{color:var(--muted);text-decoration:line-through;opacity:.75}

/* ---------- cards ---------- */
.cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:1px;background:var(--rule)}
.card{background:var(--card);display:flex;flex-direction:column}
.card:hover{background:#fbfcfd}
.card-img{aspect-ratio:16/9;background:#eef1f4;overflow:hidden}
.card-img img{width:100%;height:100%;object-fit:cover}
.card-body{padding:12px 14px 14px;display:flex;flex-direction:column;gap:5px}
.card-body h3{font-size:15px;line-height:1.34;font-weight:600}
.card:hover h3{color:var(--navy)}
.card-body p{font-size:13px;color:var(--muted);line-height:1.45}
.card-body time{font-size:11.5px;color:var(--muted);margin-top:auto;padding-top:4px}

/* ---------- latest list ---------- */
.llist{list-style:none}
.llist li{border-bottom:1px solid var(--rule)}
.llist li:last-child{border-bottom:0}
.llist a{display:grid;gap:3px;padding:12px 15px}
.llist a:hover{background:#fbfcfd}
.llist-title{font-size:15px;font-weight:600;line-height:1.35}
.llist time{font-size:11.5px;color:var(--muted)}

/* ---------- trending: numbers earn their place (it is a ranking) ---------- */
.trend{list-style:none;counter-reset:t}
.trend li{border-bottom:1px solid var(--rule)}
.trend li:last-child{border-bottom:0}
.trend a{display:flex;gap:11px;padding:10px 15px;font-size:14px;line-height:1.38;align-items:baseline}
.trend a:hover{background:#fbfcfd}
.trend-n{counter-increment:t;flex:none;font-weight:600;color:var(--saffron);font-size:13px}
.trend-n::before{content:counter(t,decimal-leading-zero)}

/* ---------- quick links ---------- */
.qlinks{display:grid;grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:1px;background:var(--rule)}
.qlinks a{
  background:var(--card);padding:13px 12px;display:flex;align-items:center;gap:8px;
  font-size:13.5px;font-weight:600;border-left:3px solid var(--accent);
}
.qlinks a:hover{background:#fbfcfd;color:var(--accent)}

/* ---------- newsletter / raw ---------- */
.nl{padding:18px}
.nl h2{font-size:16px;font-weight:800;color:var(--navy)}
.nl p{font-size:13.5px;color:var(--muted);margin:4px 0 11px}
.nl-form{display:flex}
.nl-form input{flex:1;min-width:0;padding:10px 12px;font:inherit;font-size:14px;border:1px solid var(--rule);border-right:0;border-radius:var(--r) 0 0 var(--r)}
.nl-form button{padding:10px 15px;font:inherit;font-weight:700;font-size:14px;border:0;border-radius:0 var(--r) var(--r) 0;background:var(--saffron);color:#fff;cursor:pointer}
.rawhtml{padding:14px 15px}

/* ---------- 404 ---------- */
.notfound{padding:60px 16px}
.notfound h1{font-size:30px;font-weight:800;color:var(--navy);letter-spacing:-.02em}
.notfound p{color:var(--muted);margin:8px 0 22px}
.notfound .qlinks{border:1px solid var(--rule);border-radius:var(--r);overflow:hidden;max-width:640px}

/* ---------- footer ---------- */
.foot{background:var(--navy);color:#c9d8e2;margin-top:30px;font-size:14px}
.foot-in{display:grid;grid-template-columns:2fr 1fr 1fr;gap:30px;padding-top:34px;padding-bottom:26px}
.foot-brand{font-size:18px;font-weight:800;color:#fff;margin-bottom:8px}
.foot-about p{line-height:1.6;max-width:46ch}
.foot-contact{margin-top:9px}
.foot-contact a{color:var(--saffron)}
.foot-col h3{font-size:12px;text-transform:uppercase;letter-spacing:.1em;color:#fff;margin-bottom:11px}
.foot-col ul{list-style:none;display:grid;gap:7px}
.foot-col a:hover{color:#fff;text-decoration:underline}
.foot-legal{
  display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.14);padding-top:15px;padding-bottom:22px;
  font-size:12.5px;color:#93aabb;
}

/* ---------- responsive ---------- */
@media(max-width:1000px){
  .home-grid{grid-template-columns:1fr}
  .home-side{position:static}
  .w-third{grid-column:span 6}
}
@media(max-width:760px){
  .masthead-in{flex-wrap:wrap;gap:12px}
  .search{margin-left:0;max-width:none;width:100%;order:3}
  .home-main{grid-template-columns:1fr}
  .w-full,.w-half,.w-third,.w-quarter{grid-column:auto}
  .hero{grid-template-columns:1fr}
  .hero-lead{border-right:0;border-bottom:1px solid var(--rule)}
  .hero-body h3{font-size:21px}
  .foot-in{grid-template-columns:1fr;gap:24px}
  .tlist a{flex-wrap:wrap;gap:5px}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
}

/* ============================================================
   Network bar — the other CollegeUnify properties
   ============================================================ */
.netbar{background:#0a2536;color:#a9c2d2;font-size:12.5px;border-bottom:1px solid rgba(255,255,255,.08)}
.netbar-in{display:flex;align-items:center;gap:16px;padding-top:7px;padding-bottom:7px;overflow-x:auto;scrollbar-width:none}
.netbar-in::-webkit-scrollbar{display:none}
.netbar-label{font-weight:700;color:#6f8ea4;text-transform:uppercase;letter-spacing:.09em;font-size:10.5px;white-space:nowrap;flex:none}
.netbar-in a{white-space:nowrap;font-weight:600}
.netbar-in a:hover{color:#fff;text-decoration:underline}

/* ---------- dropdown sections ---------- */
.hasmenu{position:relative;flex:none}
.hasmenu>a{display:block;padding:11px 14px;color:#dbe6ee;font-weight:600;font-size:14px;border-bottom:3px solid transparent;white-space:nowrap}
.hasmenu>a:hover{color:#fff;background:rgba(255,255,255,.07)}
.caret{font-size:9px;opacity:.7}
.submenu{
  position:absolute;top:100%;left:0;z-index:30;min-width:230px;
  background:var(--card);border:1px solid var(--rule);border-top:3px solid var(--saffron);
  border-radius:0 0 var(--r) var(--r);box-shadow:0 12px 28px rgba(1,52,79,.16);
  display:none;padding:5px 0;
}
.hasmenu:hover .submenu,.hasmenu:focus-within .submenu{display:block}
.submenu a{display:block;padding:9px 15px;font-size:13.5px;font-weight:600;color:var(--ink)}
.submenu a:hover{background:var(--paper);color:var(--navy)}

/* ---------- network links block ---------- */
.netgrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1px;background:var(--rule)}
.netgrid a{background:var(--card);padding:15px 16px;display:grid;gap:3px;border-left:3px solid var(--accent)}
.netgrid a:hover{background:#fbfcfd}
.netgrid strong{font-size:14.5px;font-weight:700;color:var(--navy)}
.netgrid span{font-family:var(--mono);font-size:11.5px;color:var(--muted)}

/* ============================================================
   Enquiry form — same component on every page
   ============================================================ */
.enq{padding:17px}
.enq h2{font-size:16px;font-weight:800;color:var(--navy);line-height:1.3}
.enq-sub{font-size:13px;color:var(--muted);margin:5px 0 12px}
.enq-form{display:grid;gap:9px}
.enq-form input{width:100%;padding:10px 12px;font:inherit;font-size:14.5px;border:1px solid var(--rule);border-radius:var(--r);background:var(--paper)}
.enq-form input:focus{background:#fff;border-color:var(--navy)}
.enq-form button{
  padding:12px;font:inherit;font-weight:700;font-size:14.5px;cursor:pointer;
  border:0;border-radius:var(--r);background:var(--saffron);color:#fff;
}
.enq-form button:hover{background:#dd7a01}
.enq-fine{font-size:11px;color:var(--muted);line-height:1.45}
.enq-msg{padding:9px 11px;border-radius:var(--r);font-size:13px;font-weight:600;margin-bottom:10px}
.enq-ok{background:#dcfce7;color:#166534}
.enq-err{background:#fee2e2;color:#991b1b}
.hp{position:absolute!important;left:-9999px!important}          /* honeypot */
.sr{display:block}
.sr>input{margin-top:0}
label.sr{font-size:0;line-height:0}
label.sr>input{font-size:14.5px;line-height:1.4}

/* ---------- ad slots ---------- */
.rawhtml{padding:14px 15px;text-align:center;min-height:0}
.rawhtml ins,.rawhtml iframe,.rawhtml img{margin:0 auto}

/* ============================================================
   Article + listing pages
   ============================================================ */
.art-wrap,.list-wrap,.page-wrap{padding-top:18px;padding-bottom:40px}
.crumbs{display:flex;flex-wrap:wrap;gap:7px;align-items:center;font-size:12.5px;color:var(--muted);margin-bottom:14px}
.crumbs a{font-weight:600}
.crumbs a:hover{color:var(--navy);text-decoration:underline}
.crumb-now{color:var(--ink);font-weight:600}
.art-grid{display:grid;grid-template-columns:1fr 320px;gap:24px;align-items:start}
.art-side{display:grid;gap:20px;position:sticky;top:14px}

/* ---------- article ---------- */
.art{background:var(--card);border:1px solid var(--rule);border-radius:var(--r);overflow:hidden}
.art-head{padding:22px 26px 0}
.art-head h1{font-size:32px;line-height:1.18;font-weight:800;letter-spacing:-.022em;margin:7px 0 10px;color:var(--ink)}
.standfirst{font-size:17px;line-height:1.55;color:var(--muted);margin-bottom:14px}
.byline{display:flex;flex-wrap:wrap;gap:12px;align-items:baseline;font-size:12.5px;color:var(--muted);
        border-top:1px solid var(--rule);border-bottom:1px solid var(--rule);padding:11px 0}
.by-author{font-weight:700;color:var(--navy)}
.by-author:hover{text-decoration:underline}
.by-role{color:var(--muted)}
.by-upd{color:var(--saffron);font-weight:600}

/* deadline alert */
.art-alert{margin:16px 0 0;padding:11px 14px;border-radius:var(--r);font-size:14px;font-weight:600;
           background:#fff1f1;color:#9b1c1c;border-left:4px solid var(--red)}
.art-alert-closed{background:var(--paper);color:var(--muted);border-left-color:var(--rule);font-weight:500}

.art-img{margin:18px 0 0}
.art-img img{width:100%;aspect-ratio:16/9;object-fit:cover}
.art-img figcaption{padding:8px 26px;font-size:12.5px;color:var(--muted)}

/* key facts */
.keyfacts{margin:22px 26px 0;padding:16px 18px;background:var(--paper);border-left:4px solid var(--saffron);border-radius:0 var(--r) var(--r) 0}
.keyfacts h2{font-size:13px;text-transform:uppercase;letter-spacing:.09em;color:var(--navy);margin-bottom:9px}
.keyfacts ul{margin:0;padding-left:19px;display:grid;gap:6px}
.keyfacts li{font-size:15px;line-height:1.5}

/* details table — the core of a notification page */
.details{margin:24px 26px 0}
.details h2{font-size:17px;font-weight:800;color:var(--navy);margin-bottom:11px}
.dtable{width:100%;border-collapse:collapse;border:1px solid var(--rule);border-radius:var(--r);overflow:hidden}
.dtable th{width:38%;text-align:left;padding:11px 14px;background:#fbfcfd;border-bottom:1px solid var(--rule);
           font-size:13.5px;font-weight:600;color:var(--muted);vertical-align:top}
.dtable td{padding:11px 14px;border-bottom:1px solid var(--rule);font-size:14.5px;vertical-align:top}
.dtable tr:last-child th,.dtable tr:last-child td{border-bottom:0}
.dtable td .stamp{margin-left:7px}
.dtable a{color:var(--navy);text-decoration:underline;word-break:break-all}

/* body copy */
.art .body{padding:22px 26px 4px;font-size:16.5px;line-height:1.72}
.art .body h2{font-size:21px;font-weight:800;color:var(--navy);margin:26px 0 9px;letter-spacing:-.01em}
.art .body h3{font-size:17.5px;font-weight:700;color:var(--navy);margin:20px 0 7px}
.art .body p{margin-bottom:15px}
.art .body ul,.art .body ol{margin:0 0 15px 21px;display:grid;gap:6px}
.art .body a{color:var(--navy);text-decoration:underline;text-underline-offset:2px}
.art .body a:hover{color:var(--saffron)}
.art .body img{margin:16px 0;border-radius:var(--r)}
.art .body table{width:100%;border-collapse:collapse;margin-bottom:16px;font-size:14.5px}
.art .body th,.art .body td{border:1px solid var(--rule);padding:9px 11px;text-align:left}
.art .body th{background:#fbfcfd;font-weight:600}
.art .body blockquote{border-left:4px solid var(--saffron);padding:2px 0 2px 15px;margin:0 0 15px;color:var(--muted)}

/* important links */
.implinks{margin:22px 26px 0;padding-top:18px;border-top:1px solid var(--rule)}
.implinks h2{font-size:17px;font-weight:800;color:var(--navy);margin-bottom:12px}
.implinks-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(215px,1fr));gap:10px}
.implink{display:block;padding:13px 15px;text-align:center;border:1px solid var(--rule);border-radius:var(--r);
         background:var(--paper);font-weight:700;font-size:14.5px;color:var(--navy)}
.implink:hover{border-color:var(--navy);background:#fff}
.implink-primary{background:var(--saffron);border-color:var(--saffron);color:#fff}
.implink-primary:hover{background:#dd7a01;border-color:#dd7a01;color:#fff}
.implinks-note{margin-top:10px;font-size:12px;color:var(--muted)}

/* faqs */
.faqs{margin:24px 26px 0;padding-top:18px;border-top:1px solid var(--rule)}
.faqs h2{font-size:17px;font-weight:800;color:var(--navy);margin-bottom:11px}
.faq{border:1px solid var(--rule);border-radius:var(--r);margin-bottom:8px;background:var(--paper)}
.faq summary{padding:12px 15px;cursor:pointer;font-weight:600;font-size:15px;list-style:none;display:flex;justify-content:space-between;gap:12px}
.faq summary::after{content:"+";color:var(--saffron);font-weight:800;flex:none}
.faq[open] summary::after{content:"−"}
.faq summary::-webkit-details-marker{display:none}
.faq-a{padding:0 15px 13px;font-size:14.5px;line-height:1.6;color:var(--muted)}

.tagrow{display:flex;flex-wrap:wrap;gap:7px;margin:22px 26px 0}
.tagrow a{font-size:12.5px;font-weight:600;color:var(--muted);background:var(--paper);border:1px solid var(--rule);
          border-radius:20px;padding:4px 11px}
.tagrow a:hover{color:var(--navy);border-color:var(--navy)}
.correction{margin:20px 26px 0;padding:11px 14px;background:#fffbeb;border-left:4px solid #d97706;font-size:14px}
.authorbox{margin:24px 26px 26px;padding:16px 18px;background:var(--paper);border-radius:var(--r);display:grid;gap:6px}
.ab-name{font-weight:800;color:var(--navy);font-size:15px}
.ab-name span{display:block;font-weight:500;font-size:12.5px;color:var(--muted)}
.authorbox p{font-size:14px;color:var(--muted);line-height:1.6}
.related{margin-top:24px}

/* ---------- listing ---------- */
.list-head{border-left:4px solid var(--accent);padding:3px 0 3px 15px;margin-bottom:18px}
.list-head h1{font-size:27px;font-weight:800;color:var(--navy);letter-spacing:-.02em}
.list-intro{color:var(--muted);font-size:15px;margin-top:5px;max-width:70ch}
.list-count{font-size:12px;color:var(--muted);margin-top:5px}
.list-main{display:grid;gap:14px;align-content:start}
.rlist{list-style:none;display:grid;gap:14px}
.ritem{display:grid;grid-template-columns:200px 1fr;gap:0;background:var(--card);border:1px solid var(--rule);
       border-radius:var(--r);overflow:hidden}
.ritem:hover{border-color:#c6d2dc}
.ritem-img{background:#eef1f4}
.ritem-img img{width:100%;height:100%;aspect-ratio:16/9;object-fit:cover}
.ritem-body{padding:14px 16px;display:grid;gap:5px;align-content:start}
.ritem-body h2{font-size:17px;line-height:1.32;font-weight:700}
.ritem:hover .ritem-body h2{color:var(--navy)}
.ritem-body p{font-size:13.5px;color:var(--muted);line-height:1.5}
.ritem-foot{display:flex;align-items:center;gap:10px;margin-top:3px;font-size:11.5px;color:var(--muted)}
.empty{background:var(--card);border:1px solid var(--rule);border-radius:var(--r);padding:40px 26px;text-align:center;color:var(--muted)}
.btn-link{display:inline-block;margin-top:12px;padding:10px 18px;background:var(--navy);color:#fff;border-radius:var(--r);font-weight:700;font-size:14px}
.pager a{padding:8px 13px;border:1px solid var(--rule);border-radius:var(--r);font-size:13.5px;background:var(--card);font-weight:600}
.pager a.on{background:var(--navy);color:#fff;border-color:var(--navy)}

/* ---------- static page ---------- */
.staticpage{background:var(--card);border:1px solid var(--rule);border-radius:var(--r);padding:26px 30px;max-width:820px}
.staticpage h1{font-size:29px;font-weight:800;color:var(--navy);letter-spacing:-.02em;margin-bottom:14px}
.staticpage .body{font-size:16.5px;line-height:1.72}
.staticpage .body p{margin-bottom:15px}
.staticpage .body h2{font-size:20px;font-weight:800;color:var(--navy);margin:24px 0 8px}
.staticpage .body ul,.staticpage .body ol{margin:0 0 15px 21px;display:grid;gap:6px}
.staticpage .body a{color:var(--navy);text-decoration:underline}
.page-upd{margin-top:22px;padding-top:14px;border-top:1px solid var(--rule);font-size:12px;color:var(--muted)}

@media(max-width:1000px){
  .art-grid{grid-template-columns:1fr}
  .art-side{position:static}
}
@media(max-width:760px){
  .art-head{padding:18px 17px 0}
  .art-head h1{font-size:25px}
  .standfirst{font-size:15.5px}
  .art .body{padding:18px 17px 4px;font-size:16px}
  .keyfacts,.details,.implinks,.faqs,.tagrow,.correction{margin-left:17px;margin-right:17px}
  .authorbox{margin:20px 17px}
  .art-img figcaption{padding:8px 17px}
  .dtable th{width:44%;font-size:12.5px}
  .dtable td{font-size:13.5px}
  .ritem{grid-template-columns:1fr}
  .ritem-img img{aspect-ratio:16/9}
  .staticpage{padding:20px 17px}
}
