/* =========================================================
   Kasinexa.se: global stylesheet
   Palette: white bg, #f1252b red accent, #111 dark
   Type: Oswald (headings/nav) + Roboto (body)
   ========================================================= */
:root{
  --red:#f1252b;
  --red-dark:#c9161c;
  --dark:#111111;
  --dark-2:#1b1b1b;
  --text:#111111;
  --muted:#6d6d6d;
  --line:#e9e9e9;
  --bg-soft:#f7f7f7;
  --z-skip:100;--z-cookie:80;--z-menu:60;--z-nav:50;--z-overlay:10;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:#fff;color:var(--text);font-family:'Roboto',sans-serif;font-size:16px;line-height:1.65}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
h1,h2,h3,h4,.brand-txt,.nav a,.btn,.tag,.label,.mobile-menu a{font-family:'Oswald',sans-serif}
.wrap{max-width:1200px;margin:0 auto;padding:0 20px}
.red{color:var(--red)}
.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}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,[tabindex]:focus-visible{outline:3px solid var(--red);outline-offset:2px;border-radius:2px}
.skip-link{position:absolute;top:-60px;left:16px;z-index:var(--z-skip);background:var(--red);color:#fff;padding:10px 18px;font-weight:600;transition:top .2s}
.skip-link:focus{top:12px}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:var(--red);color:#fff;border:none;padding:12px 24px;font-size:12px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;border-radius:2px;cursor:pointer;transition:background .2s,box-shadow .2s}
.btn:hover{background:var(--red-dark);box-shadow:0 4px 14px rgba(241,37,43,.3)}
.btn.ghost{background:transparent;color:var(--text);border:1px solid #cfcfcf}
.btn.ghost:hover{border-color:var(--red);color:var(--red);background:#fff;box-shadow:none}
.btn.dark{background:var(--dark)}
.btn.dark:hover{background:#000}

/* ---------- top bar ---------- */
.topbar{background:var(--dark);color:#fff;font-size:12px}
.topbar .wrap{display:flex;align-items:center;justify-content:space-between;gap:16px;height:40px}
.ticker{display:flex;align-items:center;gap:8px;min-width:0}
.ticker .flash{color:var(--red);flex:none;display:flex}
.ticker span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#cfcfcf;letter-spacing:.02em}
.ticker b{color:var(--red);font-weight:500}
.topbar .right{display:flex;align-items:center;gap:14px;flex:none}
.topbar .social{display:flex;gap:2px}
.topbar .social a{display:flex;align-items:center;justify-content:center;width:26px;height:26px;color:#cfcfcf;transition:color .2s}
.topbar .social a:hover{color:var(--red)}

/* ---------- header ---------- */
.site-header{background:#fff}
.site-header .wrap{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;height:84px;gap:16px}
.site-header .left{display:flex;align-items:center;gap:16px}
.vline{width:1px;height:26px;background:var(--line)}
.search-btn{display:flex;align-items:center;justify-content:center;width:36px;height:36px;background:transparent;border:none;color:var(--text);cursor:pointer;transition:color .2s}
.search-btn:hover{color:var(--red)}
.brand{display:inline-flex;align-items:center;gap:10px;white-space:nowrap;color:var(--text)}
.brand img{width:44px;height:44px}
.brand .brand-txt{font-size:30px;font-weight:700;letter-spacing:.01em}
.brand .dot{color:var(--red)}
.site-header .right{display:flex;align-items:center;justify-content:flex-end;gap:14px;font-size:12px;color:var(--muted)}
.site-header .date{display:flex;align-items:center;gap:8px}
.site-header .date svg{color:var(--red)}

/* ---------- nav ---------- */
.nav{background:var(--bg-soft);border-top:1px solid var(--line);border-bottom:1px solid var(--line);position:sticky;top:0;z-index:var(--z-nav)}
.nav .wrap{display:flex;align-items:center;justify-content:center;position:relative}
.nav ul{display:flex;justify-content:center;gap:2px;flex-wrap:wrap}
.nav ul a{display:block;padding:15px 15px;font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--text);transition:color .2s}
.nav ul a:hover,.nav ul a.active{color:var(--red)}
.hamburger{display:none;align-items:center;gap:10px;background:transparent;border:none;padding:14px 0;font-family:'Oswald',sans-serif;font-size:13px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--text);cursor:pointer}
.hamburger .bars{display:inline-flex;flex-direction:column;gap:4px}
.hamburger .bars span{display:block;width:22px;height:2.5px;background:var(--text);transition:transform .25s,opacity .25s}
.hamburger[aria-expanded="true"] .bars span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
.hamburger[aria-expanded="true"] .bars span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ---------- mobile menu ---------- */
.mobile-menu{display:none;position:fixed;inset:0;z-index:var(--z-menu);background:rgba(17,17,17,.55)}
.mobile-menu.open{display:block}
.mobile-menu .panel{position:absolute;top:0;left:0;bottom:0;width:min(320px,86vw);background:#fff;box-shadow:6px 0 30px rgba(0,0,0,.25);display:flex;flex-direction:column;transform:translateX(-100%);animation:slide-in .25s forwards}
@keyframes slide-in{to{transform:translateX(0)}}
.mobile-menu .panel-head{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid var(--line)}
.mobile-menu .panel-head img{width:36px;height:36px}
.menu-close{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:var(--bg-soft);border:none;color:var(--text);cursor:pointer;border-radius:2px;transition:background .2s,color .2s}
.menu-close:hover{background:var(--red);color:#fff}
.mobile-menu nav{overflow-y:auto;flex:1}
.mobile-menu nav a{display:block;padding:15px 22px;font-size:14px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text);border-bottom:1px solid var(--line);transition:color .2s,background .2s}
.mobile-menu nav a:hover,.mobile-menu nav a.active{color:var(--red);background:var(--bg-soft)}
.mobile-menu .panel-foot{padding:18px 22px;border-top:1px solid var(--line);font-size:12px;color:var(--muted)}
body.menu-locked{overflow:hidden}

/* ---------- breadcrumbs ---------- */
.breadcrumbs{padding:16px 0 0;font-size:12.5px;color:var(--muted)}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:6px}
.breadcrumbs li{display:flex;align-items:center;gap:6px}
.breadcrumbs li+li::before{content:"›";color:#bbb}
.breadcrumbs a{color:var(--muted);transition:color .2s}
.breadcrumbs a:hover{color:var(--red)}
.breadcrumbs [aria-current]{color:var(--text);font-weight:500}

/* ---------- section headings ---------- */
.sec-head{display:flex;align-items:center;gap:9px;margin:8px 0 4px;font-size:20px;font-weight:600;color:var(--text)}
.sec-head svg{color:var(--red);flex:none}
.sec-head .more{margin-left:auto;font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);transition:color .2s}
.sec-head .more:hover{color:var(--red)}
.rule{border:none;border-top:1px solid var(--line);margin:12px 0 18px}

/* ---------- lead story ---------- */
.lead-zone{display:grid;grid-template-columns:1.75fr 1fr;gap:36px;padding:28px 0 10px}
.lead-card{cursor:pointer}
.lead-card .img{position:relative;overflow:hidden}
.lead-card img{width:100%;aspect-ratio:16/9;object-fit:cover;transition:transform .35s}
.lead-card:hover img{transform:scale(1.03)}
.cat-badge{position:absolute;top:14px;left:14px;z-index:var(--z-overlay);background:var(--red);color:#fff;font-family:'Oswald',sans-serif;font-size:11px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;padding:6px 12px}
.lead-card h2{font-size:30px;font-weight:600;line-height:1.3;margin:18px 0 12px;transition:color .2s}
.lead-card:hover h2{color:var(--red)}
.lead-card .intro{color:var(--muted);font-size:16px;margin-bottom:12px}
.byline{display:flex;align-items:center;flex-wrap:wrap;gap:8px;font-size:12.5px;color:var(--muted)}
.byline .avatar{width:30px;height:30px;border-radius:50%;background:linear-gradient(135deg,#f1252b,#8d0e12);display:flex;align-items:center;justify-content:center;font-family:'Oswald',sans-serif;font-size:13px;font-weight:600;color:#fff}
.byline .name{font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--text)}
.byline b{color:var(--red);font-weight:500}
.featured-col h2{font-size:20px}
.mini-card{display:flex;gap:14px;padding:13px 0;border-bottom:1px solid var(--line)}
.mini-card:last-child{border-bottom:none}
.mini-card .thumb{flex:none;width:96px;height:72px;overflow:hidden}
.mini-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.mini-card:hover .thumb img{transform:scale(1.06)}
.mini-card h3{font-size:14.5px;font-weight:500;line-height:1.4;margin-bottom:6px;transition:color .2s}
.mini-card:hover h3{color:var(--red)}
.mini-card .meta{font-size:11.5px;color:var(--muted)}
.mini-card .meta b{color:var(--red);font-weight:500}

/* ---------- article card grid ---------- */
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;padding:6px 0 8px}
.a-card{background:#fff;border:1px solid var(--line);transition:box-shadow .25s;display:flex;flex-direction:column}
.a-card:hover{box-shadow:0 10px 28px rgba(0,0,0,.12)}
.a-card .img{position:relative;overflow:hidden}
.a-card img{width:100%;aspect-ratio:16/9;object-fit:cover;transition:transform .35s}
.a-card:hover img{transform:scale(1.04)}
.a-card .body{padding:16px 18px 18px;display:flex;flex-direction:column;gap:9px;flex:1}
.a-card h3{font-size:16.5px;font-weight:500;line-height:1.4;transition:color .2s}
.a-card:hover h3{color:var(--red)}
.a-card p{font-size:13.5px;color:var(--muted);flex:1}
.a-card .meta{font-size:11.5px;color:var(--muted)}
.a-card .meta b{color:var(--red);font-weight:500}
.a-card.hidden-card{display:none}
.load-more-row{display:flex;justify-content:center;padding:18px 0 8px}

/* ---------- two-col zone (sections + sidebar) ---------- */
.two-col{display:grid;grid-template-columns:2fr 1fr;gap:44px;padding:20px 0 30px}
.h-item{display:flex;gap:16px;padding:15px 0;border-bottom:1px solid var(--line)}
.h-item:last-child{border-bottom:none}
.h-item .thumb{flex:none;width:150px;height:96px;overflow:hidden}
.h-item .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.h-item:hover .thumb img{transform:scale(1.06)}
.h-item h3{font-size:16px;font-weight:500;line-height:1.4;margin-bottom:6px;transition:color .2s}
.h-item:hover h3{color:var(--red)}
.h-item p{font-size:13px;color:var(--muted);margin-bottom:6px}
.h-item .meta{font-size:11.5px;color:var(--muted)}
.h-item .meta b{color:var(--red);font-weight:500}
.home-section{margin-bottom:26px}

/* ---------- sidebar ---------- */
.sidebar>*+*{margin-top:30px}
.side-box{border:1px solid var(--line);padding:20px}
.side-box>.sec-head{margin-top:0}
.most-read li{display:flex;gap:14px;padding:12px 0;border-bottom:1px solid var(--line);counter-increment:mr}
.most-read li:last-child{border-bottom:none}
.most-read .num{flex:none;font-family:'Oswald',sans-serif;font-size:26px;font-weight:700;color:#dcdcdc;line-height:1;min-width:30px;transition:color .2s}
.most-read li:hover .num{color:var(--red)}
.most-read h3{font-size:14px;font-weight:500;line-height:1.4;margin-bottom:4px;transition:color .2s}
.most-read li:hover h3{color:var(--red)}
.most-read .meta{font-size:11.5px;color:var(--muted)}
.rg-box{background:var(--bg-soft);border:1px solid var(--line);padding:20px}
.rg-box h2,.rg-box h3{font-size:16px;margin-bottom:10px;display:flex;align-items:center;gap:8px}
.rg-box .age{flex:none;display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:50%;border:2px solid var(--red);color:var(--red);font-weight:700;font-size:11px;font-family:'Oswald',sans-serif}
.rg-box p{font-size:13px;color:var(--muted);margin-bottom:8px}
.rg-box a{color:var(--red);font-weight:500}
.rg-box a:hover{text-decoration:underline}

/* ---------- newsletter ---------- */
.newsletter{background:var(--dark);color:#fff;margin-top:26px}
.newsletter .wrap{display:grid;grid-template-columns:1.2fr 1fr;gap:30px;align-items:center;padding-top:44px;padding-bottom:44px}
.newsletter h2{font-size:26px;font-weight:600;margin-bottom:8px}
.newsletter h2 span{color:var(--red)}
.newsletter p{color:#b5b5b5;font-size:14.5px}
.newsletter form{display:flex;gap:10px}
.newsletter input[type=email]{flex:1;min-width:0;background:#fff;border:1px solid #fff;padding:13px 16px;font-size:14px;font-family:'Roboto',sans-serif;border-radius:2px;color:var(--text)}
.newsletter .form-msg{grid-column:1/-1;margin-top:10px;font-size:13.5px}
.form-msg.ok{color:#7ee2a8}
.form-msg.err{color:#ff9b9e}
.newsletter .consent{display:flex;align-items:flex-start;gap:8px;font-size:12px;color:#9a9a9a;margin-top:10px}
.newsletter .consent input{margin-top:3px;accent-color:var(--red)}

/* ---------- footer ---------- */
.site-footer{background:var(--dark);color:#cfcfcf;border-top:3px solid var(--red)}
.site-footer .grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:36px;padding:46px 0 34px}
.site-footer .brand .brand-txt{font-size:24px;color:#fff}
.site-footer .brand img{width:38px;height:38px}
.site-footer p{font-size:13.5px;color:#9a9a9a;margin-top:12px}
.site-footer h2{font-size:14px;letter-spacing:.12em;text-transform:uppercase;color:#fff;margin-bottom:14px;font-weight:600}
.site-footer ul a{display:block;padding:5px 0;color:#9a9a9a;font-size:13.5px;transition:color .2s}
.site-footer ul a:hover{color:var(--red)}
.site-footer .social{display:flex;gap:8px;margin-top:16px}
.site-footer .social a{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border:1px solid #333;color:#9a9a9a;transition:all .2s}
.site-footer .social a:hover{color:#fff;border-color:var(--red);background:var(--red)}
.rg-bar{border-top:1px solid #2a2a2a;padding:18px 0;display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;font-size:12.5px;color:#9a9a9a;text-align:center}
.rg-bar .age{flex:none;display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;border:2px solid var(--red);color:var(--red);font-weight:700;font-size:11px;font-family:'Oswald',sans-serif}
.rg-bar a{color:#fff}
.rg-bar a:hover{color:var(--red)}
.copy{border-top:1px solid #2a2a2a;padding:15px 0;text-align:center;font-size:12.5px;color:#6f6f6f}
.copy a{color:#9a9a9a}
.copy a:hover{color:var(--red)}

/* ---------- cookie banner ---------- */
.cookie-banner{position:fixed;left:16px;right:16px;bottom:16px;z-index:var(--z-cookie);background:var(--dark-2);color:#e6e6e6;border:1px solid #333;border-left:4px solid var(--red);box-shadow:0 12px 40px rgba(0,0,0,.4);padding:20px 22px;display:none;gap:18px;align-items:center;max-width:900px;margin:0 auto}
.cookie-banner.visible{display:flex}
.cookie-banner p{font-size:13.5px;flex:1;min-width:200px}
.cookie-banner a{color:#fff;text-decoration:underline}
.cookie-banner a:hover{color:var(--red)}
.cookie-banner .actions{display:flex;gap:10px;flex:none}
.cookie-banner .btn.ghost{color:#fff;border-color:#666}
.cookie-banner .btn.ghost:hover{background:transparent;border-color:#fff;color:#fff}

/* ---------- article page ---------- */
.article-layout{display:grid;grid-template-columns:2.1fr 1fr;gap:44px;padding:10px 0 30px}
.article-head h1{font-size:34px;font-weight:600;line-height:1.25;margin:12px 0 14px}
.article-head .standfirst{font-size:18px;color:var(--muted);line-height:1.6;margin-bottom:18px}
.article-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px 18px;padding:14px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);font-size:12.5px;color:var(--muted);margin-bottom:20px}
.article-meta .item{display:flex;align-items:center;gap:7px}
.article-meta svg{color:var(--red);flex:none}
.article-meta .name{font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--text)}
.share-row{display:flex;align-items:center;gap:8px;margin-left:auto}
.share-row span{font-size:11px;letter-spacing:.1em;text-transform:uppercase}
.share-row a,.share-row button{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border:1px solid var(--line);background:#fff;color:var(--muted);cursor:pointer;transition:all .2s}
.share-row a:hover,.share-row button:hover{background:var(--red);border-color:var(--red);color:#fff}
.article-fig{margin:0 0 22px}
.article-fig img{width:100%}
.article-fig figcaption{font-size:12.5px;color:var(--muted);padding:10px 0;border-bottom:1px solid var(--line)}
.toc{background:var(--bg-soft);border:1px solid var(--line);border-left:4px solid var(--red);padding:20px 24px;margin:0 0 26px}
.toc h2{font-size:15px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px}
.toc ol{list-style:none;counter-reset:toc}
.toc li{counter-increment:toc;padding:4px 0}
.toc a{display:inline-flex;gap:10px;font-size:14px;color:var(--text);transition:color .2s}
.toc a::before{content:counter(toc,decimal-leading-zero);color:var(--red);font-family:'Oswald',sans-serif;font-weight:600}
.toc a:hover{color:var(--red)}
.prose>*+*{margin-top:18px}
.prose h2{font-size:24px;font-weight:600;line-height:1.3;padding-top:14px}
.prose h3{font-size:19px;font-weight:600;padding-top:6px}
.prose p{font-size:16px;line-height:1.75}
.prose a{color:var(--red);font-weight:500}
.prose a:hover{text-decoration:underline}
.prose ul,.prose ol{padding-left:22px}
.prose ul{list-style:disc}
.prose ul li,.prose ol li{margin-bottom:8px}
.prose blockquote{border-left:4px solid var(--red);background:var(--bg-soft);padding:22px 26px;font-family:'Oswald',sans-serif;font-size:19px;font-weight:500;line-height:1.5}
.prose blockquote footer{font-family:'Roboto',sans-serif;font-size:13px;color:var(--muted);margin-top:10px;font-weight:400}
.info-box{background:#fff5f5;border:1px solid #f8c9cb;border-left:4px solid var(--red);padding:20px 24px}
.info-box h3{display:flex;align-items:center;gap:8px;font-size:15px;letter-spacing:.06em;text-transform:uppercase;margin-bottom:10px;padding-top:0}
.info-box h3 svg{color:var(--red)}
.info-box p,.info-box li{font-size:14.5px}
.info-box ul{list-style:disc;padding-left:20px}
.prose figure{margin:22px 0}
.prose figcaption{font-size:12.5px;color:var(--muted);padding:10px 0;border-bottom:1px solid var(--line)}
.author-box{display:flex;gap:18px;border:1px solid var(--line);background:var(--bg-soft);padding:22px;margin-top:30px}
.author-box .avatar{flex:none;width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,#f1252b,#8d0e12);display:flex;align-items:center;justify-content:center;font-family:'Oswald',sans-serif;font-size:26px;font-weight:600;color:#fff}
.author-box h2{font-size:17px;margin-bottom:6px}
.author-box .role{font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--red);margin-bottom:8px;font-family:'Oswald',sans-serif;font-weight:600}
.author-box p{font-size:13.5px;color:var(--muted)}
.related{padding:8px 0 30px}
.tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:26px}
.tag-row a{border:1px solid var(--line);padding:6px 14px;font-size:11.5px;letter-spacing:.08em;text-transform:uppercase;font-family:'Oswald',sans-serif;font-weight:500;color:var(--muted);transition:all .2s}
.tag-row a:hover{background:var(--red);border-color:var(--red);color:#fff}

/* ---------- static pages / forms ---------- */
.page-head{padding:26px 0 4px}
.page-head h1{font-size:32px;font-weight:600;line-height:1.25}
.page-head .sub{color:var(--muted);font-size:16px;margin-top:8px;max-width:760px}
.page-body{display:grid;grid-template-columns:2.1fr 1fr;gap:44px;padding:22px 0 40px}
.page-body.full{display:block;max-width:820px}
.contact-form{border:1px solid var(--line);padding:28px;display:grid;gap:18px}
.field label{display:block;font-family:'Oswald',sans-serif;font-size:13px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;margin-bottom:7px}
.field label .req{color:var(--red)}
.field input,.field textarea{width:100%;border:1px solid #cfcfcf;background:#fff;padding:12px 14px;font-size:15px;font-family:'Roboto',sans-serif;border-radius:2px;transition:border-color .2s}
.field input:focus,.field textarea:focus{border-color:var(--red);outline:none;box-shadow:0 0 0 3px rgba(241,37,43,.15)}
.field.invalid input,.field.invalid textarea{border-color:var(--red);background:#fff8f8}
.field .error-msg{display:none;color:var(--red-dark);font-size:12.5px;margin-top:6px}
.field.invalid .error-msg{display:block}
.form-status{display:none;padding:14px 18px;font-size:14px;border-left:4px solid}
.form-status.ok{display:block;background:#f0faf4;border-color:#1f9d55;color:#166534}
.form-status.err{display:block;background:#fff5f5;border-color:var(--red);color:var(--red-dark)}
.contact-info li{display:flex;gap:12px;padding:10px 0;font-size:14px;border-bottom:1px solid var(--line)}
.contact-info li:last-child{border-bottom:none}
.contact-info svg{color:var(--red);flex:none;margin-top:3px}
.contact-info a{color:var(--red)}
.contact-info a:hover{text-decoration:underline}

/* ---------- team ---------- */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;padding:8px 0}
.team-card{border:1px solid var(--line);padding:24px;text-align:center}
.team-card .avatar{width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#f1252b,#8d0e12);display:flex;align-items:center;justify-content:center;font-family:'Oswald',sans-serif;font-size:28px;font-weight:600;color:#fff;margin:0 auto 14px}
.team-card h3{font-size:17px;margin-bottom:4px}
.team-card .role{font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--red);font-family:'Oswald',sans-serif;font-weight:600;margin-bottom:10px}
.team-card p{font-size:13px;color:var(--muted)}

/* ---------- 404 ---------- */
.notfound{text-align:center;padding:70px 20px 80px}
.notfound .code{font-family:'Oswald',sans-serif;font-size:120px;font-weight:700;line-height:1;color:var(--red)}
.notfound .code img{display:inline-block;width:100px;height:100px;vertical-align:baseline}
.notfound h1{font-size:28px;margin:14px 0 10px}
.notfound p{color:var(--muted);max-width:520px;margin:0 auto 24px}
.notfound .actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ---------- pagination ---------- */
.pagination{display:flex;justify-content:center;gap:8px;padding:20px 0}
.pagination a,.pagination span{display:flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 8px;border:1px solid var(--line);font-family:'Oswald',sans-serif;font-size:14px;font-weight:500;transition:all .2s}
.pagination a:hover{border-color:var(--red);color:var(--red)}
.pagination .current{background:var(--red);border-color:var(--red);color:#fff}

/* ---------- responsive ---------- */
@media (max-width:1024px){
  .lead-zone{grid-template-columns:1fr}
  .card-grid{grid-template-columns:repeat(2,1fr)}
  .two-col,.article-layout,.page-body{grid-template-columns:1fr}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .site-footer .grid{grid-template-columns:1fr 1fr}
}
@media (max-width:900px){
  .nav ul{display:none}
  .hamburger{display:inline-flex}
  .nav .wrap{justify-content:flex-start}
}
@media (max-width:768px){
  .topbar .right{display:none}
  .site-header .wrap{grid-template-columns:auto 1fr auto;height:66px}
  .brand img{width:34px;height:34px}
  .brand .brand-txt{font-size:22px}
  .site-header .date span{display:none}
  .btn .btn-txt-hide{display:none}
  .vline{display:none}
  .lead-card h2{font-size:23px}
  .article-head h1{font-size:26px}
  .newsletter .wrap{grid-template-columns:1fr}
  .newsletter form{flex-direction:column}
  .site-footer .grid{grid-template-columns:1fr;gap:26px}
  .cookie-banner{flex-direction:column;align-items:flex-start}
  .share-row{margin-left:0;width:100%}
  .prose h2{font-size:21px}
}
@media (max-width:560px){
  .card-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
  .h-item .thumb{width:110px;height:76px}
  .notfound .code{font-size:84px}
  .notfound .code img{width:70px;height:70px}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition-duration:.01ms!important;animation-duration:.01ms!important}
  html{scroll-behavior:auto}
}

/* ---------- category pages ---------- */
.two-col .cat-grid{grid-template-columns:repeat(2,1fr)}
@media (max-width:560px){.two-col .cat-grid{grid-template-columns:1fr}}

/* ================= homepage v2: Redrex reference layout ================= */
.hero-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:28px 0 6px}
.hero-card{position:relative;overflow:hidden}
.hero-card>a{display:block;position:relative;min-height:330px}
.hero-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .35s}
.hero-card:hover img{transform:scale(1.05)}
.hero-card .overlay{position:absolute;left:0;right:0;bottom:0;z-index:var(--z-overlay);padding:70px 16px 16px;background:linear-gradient(to top,rgba(0,0,0,.92) 22%,rgba(0,0,0,0));text-align:center;color:#fff}
.hero-card .overlay .meta{font-size:11px;letter-spacing:.05em;margin-bottom:7px;color:#e6e6e6}
.hero-card .overlay .meta b{color:var(--red);font-weight:500}
.hero-card h3{font-size:15.5px;font-weight:500;line-height:1.45;color:#fff;transition:color .2s}
.hero-card:hover h3{color:#ffb3b5}

.strip{margin:24px 0 8px}
.strip .inner{display:flex;align-items:stretch;overflow:hidden;background:linear-gradient(90deg,#1d0b33 0%,#14204a 55%,#33102b 100%)}
.strip .label{flex:none;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;background:var(--red);color:#fff;padding:14px 24px;font-family:'Oswald',sans-serif;font-weight:700;font-size:14px;letter-spacing:.14em;text-transform:uppercase;line-height:1.25;text-align:center}
.strip .items{display:flex;align-items:center;justify-content:space-around;flex:1;gap:12px;padding:12px 18px;flex-wrap:wrap}
.strip .item{display:flex;align-items:center;gap:12px;font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:#d8d3e0;margin:0}
.strip .item svg{color:#f5c518;flex:none}
.strip .item b{color:#fff;font-family:'Oswald',sans-serif;font-size:16px;letter-spacing:.03em}
.strip .sep{width:1px;height:34px;background:rgba(255,255,255,.16)}

.cols3{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;padding:26px 0 4px}
.r-item{display:flex;gap:14px;padding:13px 0;border-bottom:1px solid var(--line)}
.r-item:last-child{border-bottom:none}
.r-item .rthumb{flex:none;width:58px;height:58px;border-radius:50%;overflow:hidden;display:block;transition:box-shadow .2s}
.r-item:hover .rthumb{box-shadow:0 0 0 2px var(--red)}
.r-item .rthumb img{width:100%;height:100%;object-fit:cover}
.r-item h3{font-size:14.5px;font-weight:500;line-height:1.45;margin-bottom:5px;transition:color .2s}
.r-item:hover h3{color:var(--red)}
.r-item .meta{font-size:11.5px;color:var(--muted)}
.r-item .meta b{color:var(--red);font-weight:500}
.r-item.sq .rthumb{border-radius:3px;width:62px;height:62px}

.statement{padding:34px 9%;text-align:center;font-size:18px;line-height:1.85;color:var(--text)}
.statement b{font-weight:500}
.statement .hl{color:var(--red)}
.statement .hl-soft{color:#f08a8d}

.cats{display:flex;align-items:center;gap:14px;padding:4px 0 30px}
.cats-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(210px,1fr);gap:14px;overflow-x:auto;flex:1;scroll-behavior:smooth;scrollbar-width:none}
.cats-track::-webkit-scrollbar{display:none}
.cat-card{position:relative;height:145px;overflow:hidden;display:flex;align-items:center;justify-content:center}
.cat-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .3s}
.cat-card:hover img{transform:scale(1.05)}
.cat-card::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.28)}
.cat-card .tag{position:relative;z-index:var(--z-overlay);background:rgba(10,10,10,.85);color:#fff;padding:9px 26px;font-family:'Oswald',sans-serif;font-size:13px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;clip-path:polygon(7% 0,100% 0,93% 100%,0 100%);transition:background .2s}
.cat-card:hover .tag{background:var(--red)}
.arrow{display:flex;align-items:center;justify-content:center;flex:none;width:36px;height:36px;border:1px solid #dcdcdc;background:#fff;color:#9a9a9a;cursor:pointer;transition:all .2s}
.arrow:hover,.arrow.hot{color:#fff;background:var(--red);border-color:var(--red)}

.trending{display:grid;grid-template-columns:1.55fr 1fr;gap:44px;padding:16px 0 30px}
.feature .fimg{display:block;overflow:hidden}
.feature .fimg img{width:100%;aspect-ratio:16/9;object-fit:cover;transition:transform .35s}
.feature:hover .fimg img{transform:scale(1.03)}
.feature h3{font-size:22px;font-weight:600;line-height:1.35;margin:18px 0 12px}
.feature h3 a{transition:color .2s}
.feature h3 a:hover{color:var(--red)}
.feature .excerpt{color:var(--muted);font-size:14.5px;line-height:1.75;margin-top:12px}
.more-link{display:inline-flex;align-items:center;gap:6px;margin-top:14px;color:var(--red);font-size:12px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;font-family:'Oswald',sans-serif}
.more-link:hover{text-decoration:underline}
.side-list .r-item:first-child{padding-top:0}

@media (max-width:1024px){
  .hero-grid{grid-template-columns:repeat(2,1fr)}
  .trending{grid-template-columns:1fr}
  .cols3{grid-template-columns:1fr;gap:8px}
}
@media (max-width:768px){
  .strip .items{justify-content:center}
  .strip .sep{display:none}
  .statement{padding:26px 0}
  .cats-track{grid-auto-columns:minmax(180px,220px)}
}
@media (max-width:560px){
  .hero-grid{grid-template-columns:1fr}
  .hero-card>a{min-height:260px}
}

/* ---------- back to top ---------- */
.back-top{position:fixed;right:18px;bottom:18px;z-index:70;width:46px;height:46px;display:flex;align-items:center;justify-content:center;background:var(--red);color:#fff;border:none;border-radius:3px;cursor:pointer;box-shadow:0 6px 20px rgba(0,0,0,.28);opacity:0;transform:translateY(8px);transition:opacity .25s,transform .25s,background .2s}
.back-top.visible{opacity:1;transform:translateY(0)}
.back-top:hover{background:var(--red-dark)}
@media (max-width:768px){.back-top{right:12px;bottom:12px;width:42px;height:42px}}
