/* ═══════════════════════════════════════════════════════════
   BETECNOLOGIA — SISTEMA DE DISEÑO v1.0
   Tema standalone · Verde corporativo #97C723
   ═══════════════════════════════════════════════════════════ */

/* ─── FONTS ─── */
/* Cargadas via wp_enqueue_style con preconnect en functions.php */

/* ─── VARIABLES ─── */
:root {
  --pri: #97C723;
  --pri-dk: #6B8F1A;
  --pri-vdk: #4A6312;
  --pri-lt: #EDF5D8;
  --pri-xlt: #F5F9E8;

  --dark: #0C1108;
  --ink: #1A1F15;
  --muted: #6B7565;
  --border: #DEE3D8;
  --bg: #F5F7F2;
  --white: #FFFFFF;
  --cream: #FAFBF7;

  --red: #D93025;
  --blue: #1A73E8;
  --amber: #D4930D;

  --sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --serif: 'Newsreader', Georgia, serif;

  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 2px 12px rgba(107,143,26,.08);
  --shadow-hover: 0 8px 28px rgba(107,143,26,.14);
  --max-w: 1100px;
}

/* ─── RESET ─── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--sans);background:var(--bg);color:var(--ink);line-height:1.6;-webkit-font-smoothing:antialiased}
img,svg,video{display:block;max-width:100%;height:auto}
picture{display:contents}
a{text-decoration:none;color:inherit;transition:color .15s}
ul,ol{list-style:none}
button,input,select,textarea{font:inherit;border:none;outline:none;background:none}
::selection{background:var(--pri-lt);color:var(--dark)}
:focus-visible{outline:2px solid var(--pri);outline-offset:2px;border-radius:4px}

/* ─── LAYOUT ─── */
.bt-w{max-width:var(--max-w);margin:0 auto;padding:0 20px}
.bt-grid{display:grid;grid-template-columns:1fr 280px;gap:32px;align-items:start}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

@media(max-width:900px){
  .bt-grid{grid-template-columns:1fr}
  .bt-sidebar{display:none}
}

/* ═══════════════════════════════════════════════════════════
   BREAKING BAR
   ═══════════════════════════════════════════════════════════ */
.bt-break{background:linear-gradient(90deg,var(--pri-dk),var(--pri));padding:7px 16px;display:flex;align-items:center;gap:10px;overflow:hidden}
.bt-break-tag{font-size:10px;font-weight:800;color:var(--dark);background:rgba(0,0,0,.15);padding:2px 8px;border-radius:4px;letter-spacing:1px;white-space:nowrap;text-transform:uppercase}
.bt-break-txt{font-size:12px;font-weight:500;color:var(--dark);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;opacity:.85}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.bt-nav{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:50}
.bt-nav-in{max-width:var(--max-w);margin:0 auto;padding:0 20px;display:flex;align-items:center;justify-content:space-between;height:56px}

.bt-logo{display:flex;align-items:center;gap:10px;flex-shrink:0;max-width:220px}
.bt-logo .bt-logo-img{display:block !important;height:38px;width:auto;max-width:100%}
.bt-logo .bt-logo-img img{height:38px;width:auto;max-width:100%;object-fit:contain;display:block}
.bt-logo-mark{width:34px;height:34px;background:var(--pri);border-radius:9px;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:13px;color:var(--dark);overflow:hidden}
.bt-logo-mark img{width:100%;height:100%;object-fit:contain}
.bt-logo-txt{font-size:20px;font-weight:900;color:var(--dark);letter-spacing:-.7px}
.bt-logo-txt span{color:var(--pri-dk)}

.bt-menu{display:flex;gap:2px;align-items:center}
.bt-menu ul{display:flex;gap:2px;list-style:none;margin:0;padding:0}
.bt-menu a,.bt-menu ul li a{font-size:13px;font-weight:500;color:var(--muted);padding:6px 10px;border-radius:6px;transition:all .15s;display:block}
.bt-menu a:hover,.bt-menu ul li a:hover,.bt-menu .current-menu-item>a{color:var(--pri-dk);background:var(--pri-xlt)}
.bt-menu ul li{list-style:none}

.bt-search-btn{width:36px;height:36px;border:1.5px solid var(--border);border-radius:9px;display:flex;align-items:center;justify-content:center;cursor:pointer;background:var(--bg);color:var(--muted);font-size:15px}

.bt-search-inline{display:none;position:absolute;top:100%;right:20px;background:var(--white);border:1px solid var(--border);border-radius:10px;padding:8px;box-shadow:0 8px 24px rgba(0,0,0,.1);z-index:60}
.bt-search-inline.open{display:block}

/* Hamburger */
.bt-burger{display:none;width:36px;height:36px;border:1.5px solid var(--border);border-radius:9px;flex-direction:column;align-items:center;justify-content:center;gap:4px;cursor:pointer;background:var(--bg)}
.bt-burger span{display:block;width:16px;height:1.5px;background:var(--ink);border-radius:2px;transition:all .2s}
.bt-burger[aria-expanded="true"] span:nth-child(1){transform:rotate(45deg) translate(2px,2px)}
.bt-burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.bt-burger[aria-expanded="true"] span:nth-child(3){transform:rotate(-45deg) translate(2px,-2px)}

/* Mobile menu */
.bt-mob-menu{display:none;position:absolute;top:100%;left:0;right:0;background:var(--white);border-bottom:1px solid var(--border);padding:12px 20px;box-shadow:0 12px 32px rgba(0,0,0,.08);z-index:49}
.bt-mob-menu.open{display:block}
.bt-mob-menu ul{list-style:none;margin:0;padding:0}
.bt-mob-menu a,.bt-mob-menu ul li a{display:block;font-size:15px;font-weight:600;color:var(--ink);padding:10px 0;border-bottom:1px solid var(--border)}
.bt-mob-menu a:last-child{border-bottom:none}
.bt-mob-menu ul li:last-child a{border-bottom:none}
.bt-mob-menu ul li ul{padding-left:16px}
.bt-mob-menu ul li ul a{font-size:14px;font-weight:500;color:var(--muted)}

@media(max-width:768px){
  .bt-menu{display:none}
  .bt-search-btn{display:none}
  .bt-search-inline{display:none !important}
  .bt-burger{display:flex}
  .bt-logo-img{height:30px}
}

/* ═══════════════════════════════════════════════════════════
   BADGES
   ═══════════════════════════════════════════════════════════ */
.bt-badge{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.4px;text-transform:uppercase;background:var(--pri);color:var(--dark);padding:3px 10px;border-radius:5px}
.bt-badge--red{background:var(--red);color:#fff}
.bt-badge--blue{background:var(--blue);color:#fff}
.bt-badge--amber{background:var(--amber);color:#fff}
.bt-badge--subtle{background:var(--pri-lt);color:var(--pri-dk)}
.bt-badge--glass{background:rgba(255,255,255,.12);color:rgba(255,255,255,.9);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}

/* ═══════════════════════════════════════════════════════════
   HERO GRID (HOME)
   ═══════════════════════════════════════════════════════════ */
.bt-hero{display:grid;grid-template-columns:5fr 3fr;gap:14px;margin:20px 0}
.bt-hero-main{position:relative;border-radius:var(--radius-lg);overflow:hidden;cursor:pointer}
.bt-hero-main img{width:100%!important;height:auto!important;aspect-ratio:16/10;object-fit:cover;transition:transform .5s}
.bt-hero-main:hover img{transform:scale(1.02)}
.bt-hero-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.88),rgba(0,0,0,.15) 55%,transparent)}
.bt-hero-ct{position:absolute;bottom:0;left:0;right:0;padding:28px}
.bt-hero-h1{font-family:var(--serif);font-size:30px;font-weight:800;color:#fff;line-height:1.2;margin:12px 0 14px;letter-spacing:-.3px;text-shadow:0 2px 20px rgba(0,0,0,.4)}
.bt-hero-meta{display:flex;align-items:center;gap:10px;font-size:13px;color:rgba(255,255,255,.8)}
.bt-hero-meta img{width:28px;height:28px;border-radius:50%;flex-shrink:0}

.bt-hero-side{display:flex;flex-direction:column;gap:12px}
.bt-hero-sm{position:relative;border-radius:12px;overflow:hidden;cursor:pointer;flex:1;min-height:120px}
.bt-hero-sm img{width:100%!important;height:100%!important;object-fit:cover;position:absolute;inset:0;transition:transform .4s}
.bt-hero-sm:hover img{transform:scale(1.03)}
.bt-hero-sm .bt-hero-ov{background:linear-gradient(to top,rgba(0,0,0,.82),transparent 60%)}
.bt-hero-sm-ct{position:absolute;bottom:0;left:0;right:0;padding:16px}
.bt-hero-sm-h{font-family:var(--serif);font-size:15px;font-weight:700;color:#fff;line-height:1.3;margin-top:8px}

@media(max-width:768px){
  .bt-hero{grid-template-columns:1fr}
  .bt-hero-side{flex-direction:row}
  .bt-hero-h1{font-size:22px}
}

/* ═══════════════════════════════════════════════════════════
   TRENDING TICKER
   ═══════════════════════════════════════════════════════════ */
.bt-ticker{display:flex;align-items:center;gap:12px;padding:12px 16px;background:var(--cream);border:1px solid var(--border);border-radius:var(--radius);margin:16px 0;overflow-x:auto;-webkit-overflow-scrolling:touch}
.bt-ticker-label{font-size:11px;font-weight:800;color:var(--pri-dk);letter-spacing:.8px;white-space:nowrap;text-transform:uppercase}
.bt-ticker-sep{width:1px;height:18px;background:var(--border);flex-shrink:0}
.bt-ticker a{font-size:12px;font-weight:500;color:var(--muted);white-space:nowrap;padding:4px 10px;border-radius:6px;transition:all .15s}
.bt-ticker a:hover,.bt-ticker a.active{background:var(--pri-lt);color:var(--pri-dk)}

/* ═══════════════════════════════════════════════════════════
   ARTICLE CARDS
   ═══════════════════════════════════════════════════════════ */
.bt-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media(max-width:768px){.bt-cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.bt-cards{grid-template-columns:1fr}}

.bt-card{background:var(--white);border-radius:12px;border:1px solid var(--border);overflow:hidden;cursor:pointer;transition:all .25s}
.bt-card:hover{box-shadow:var(--shadow-hover);border-color:transparent;transform:translateY(-2px)}
.bt-card img{width:100%!important;height:auto!important;aspect-ratio:16/9;object-fit:cover}
.bt-card-body{padding:14px}
.bt-card-cat{font-size:11px;font-weight:700;color:var(--pri-dk);letter-spacing:.3px;text-transform:uppercase}
.bt-card-h{font-family:var(--serif);font-size:15px;font-weight:700;color:var(--ink);line-height:1.35;margin:6px 0 10px}
.bt-card-meta{display:flex;justify-content:space-between;font-size:11px;color:var(--muted)}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════ */
.bt-sec{display:flex;align-items:center;justify-content:space-between;margin:28px 0 16px;padding-bottom:12px;border-bottom:2px solid var(--border)}
.bt-sec h2{font-size:17px;font-weight:800;color:var(--dark);display:flex;align-items:center;gap:8px}
.bt-sec h2::before{content:'';display:inline-block;width:4px;height:20px;background:var(--pri);border-radius:2px}
.bt-sec-more{font-size:12px;font-weight:600;color:var(--pri-dk)}

/* ═══════════════════════════════════════════════════════════
   E-E-A-T TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.bt-trust{display:flex;align-items:center;gap:6px;flex-wrap:wrap;padding:12px 14px;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);margin:16px 0}
.bt-trust-label{font-size:12px;font-weight:700;color:var(--ink);margin-right:4px}
.bt-trust-pill{display:inline-flex;align-items:center;gap:5px;background:var(--white);border:1px solid var(--border);padding:4px 12px;border-radius:20px;font-size:12px;font-weight:500;color:var(--ink)}
.bt-trust-dot{width:7px;height:7px;border-radius:50%;background:var(--pri)}
.bt-trust-dot--warn{background:var(--amber)}

/* ═══════════════════════════════════════════════════════════
   ARTICLE SINGLE
   ═══════════════════════════════════════════════════════════ */
.bt-art-head{padding-bottom:24px;border-bottom:1px solid var(--border)}
.bt-art-h1{font-family:var(--serif);font-size:34px;font-weight:900;color:var(--dark);line-height:1.14;letter-spacing:-.5px;margin:14px 0}
.bt-art-excerpt{font-family:var(--serif);font-size:18px;color:var(--muted);line-height:1.65;margin-bottom:18px}

/* Byline */
.bt-byline{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.bt-byline-av{width:48px;height:48px;border-radius:50%;object-fit:cover;border:3px solid var(--pri-lt);flex-shrink:0}
.bt-byline-name{font-size:14px;font-weight:700;color:var(--ink)}
.bt-byline-detail{font-size:12px;color:var(--muted);margin-top:2px}
.bt-byline-date{color:var(--pri-dk);font-weight:600}
.bt-byline-stats{display:flex;gap:14px;font-size:12px;color:var(--muted);margin-left:auto}

/* Article body */
.bt-body{font-family:var(--serif)}
.bt-body h2{font-size:24px;font-weight:800;color:var(--dark);margin:28px 0 14px;line-height:1.25;font-family:var(--serif)}
.bt-body h3{font-size:19px;font-weight:700;color:var(--ink);margin:22px 0 10px;font-family:var(--serif)}
.bt-body p{font-size:18px;line-height:1.75;color:var(--ink);margin-bottom:18px}
.bt-body ul,.bt-body ol{font-size:17px;line-height:1.75;margin-bottom:18px;padding-left:24px;list-style:disc}
.bt-body ol{list-style:decimal}
.bt-body li{margin-bottom:6px}
.bt-body blockquote{border-left:4px solid var(--pri);padding:14px 18px;margin:24px 0;background:var(--pri-lt);border-radius:0 10px 10px 0}
.bt-body blockquote p{font-style:italic;color:var(--pri-dk);margin:0}
.bt-body img{border-radius:var(--radius);margin:20px 0}
.bt-body figcaption{font-size:12px;color:var(--muted);text-align:center;font-style:italic;margin-top:-12px;margin-bottom:20px}
.bt-body a{color:var(--pri-dk);font-weight:600;border-bottom:1px solid var(--pri-lt);transition:border-color .15s}
.bt-body a:hover{border-color:var(--pri)}

@media(max-width:768px){
  .bt-art-h1{font-size:26px}
  .bt-body p{font-size:16px}
}

/* ═══════════════════════════════════════════════════════════
   TOC
   ═══════════════════════════════════════════════════════════ */
.bt-toc{background:var(--bg);border-left:4px solid var(--pri);border-radius:0 10px 10px 0;padding:14px 18px;margin-bottom:28px}
.bt-toc h3{font-size:12px;font-weight:800;color:var(--ink);margin-bottom:10px;text-transform:uppercase;letter-spacing:.4px;font-family:var(--sans)}
.bt-toc a{display:block;font-size:13px;color:var(--muted);padding:3px 0;font-family:var(--sans)}
.bt-toc a:hover,.bt-toc a.active{color:var(--pri-dk);font-weight:600}

/* ═══════════════════════════════════════════════════════════
   SCORE BOX
   ═══════════════════════════════════════════════════════════ */
.bt-score{border:2px solid var(--border);border-radius:var(--radius-lg);padding:24px;margin:24px 0;text-align:center}
.bt-score-num{font-size:56px;font-weight:900;color:var(--pri-dk);line-height:1;font-family:var(--sans)}
.bt-score-label{font-size:14px;font-weight:800;color:var(--ink);margin:6px 0 16px;letter-spacing:.5px;text-transform:uppercase;font-family:var(--sans)}
.bt-score-row{display:flex;align-items:center;justify-content:space-between;padding:7px 0;border-bottom:1px solid var(--border);font-size:13px;color:var(--ink);font-family:var(--sans)}
.bt-score-row:last-child{border-bottom:none}
.bt-score-bar{width:80px;height:5px;background:var(--border);border-radius:3px;overflow:hidden}
.bt-score-fill{height:100%;border-radius:3px;background:var(--pri)}

/* ═══════════════════════════════════════════════════════════
   PRODUCT BOX
   ═══════════════════════════════════════════════════════════ */
.bt-product{border:2px solid var(--pri);border-radius:var(--radius-lg);padding:20px;margin:24px 0;display:flex;gap:18px;align-items:center;background:var(--pri-xlt)}
.bt-product-img{width:85px;height:85px;background:var(--white);border-radius:10px;flex-shrink:0;border:1px solid var(--border);display:flex;align-items:center;justify-content:center}
.bt-product-img img{max-width:70px;max-height:70px;object-fit:contain}
.bt-product-name{font-size:16px;font-weight:800;color:var(--ink)}
.bt-product-rating{font-size:13px;color:var(--muted);margin:4px 0 6px}
.bt-product-price{font-size:28px;font-weight:900;color:var(--pri-dk)}
.bt-product-price del{font-size:14px;font-weight:400;color:var(--muted);margin-left:8px}

.bt-cta{display:inline-flex;align-items:center;gap:6px;padding:12px 24px;background:var(--pri-dk);color:#fff;border-radius:8px;font-size:14px;font-weight:700;cursor:pointer;transition:background .15s}
.bt-cta:hover{background:var(--pri-vdk);color:#fff}
.bt-aff-note{font-size:11px;color:var(--muted);margin-top:6px}

@media(max-width:600px){.bt-product{flex-direction:column;text-align:center}}

/* ═══════════════════════════════════════════════════════════
   AUTHOR BOX
   ═══════════════════════════════════════════════════════════ */
.bt-author-box{background:var(--cream);border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px;margin:32px 0;display:flex;gap:18px;align-items:flex-start}
.bt-author-av{width:70px;height:70px;border-radius:50%;object-fit:cover;flex-shrink:0;border:3px solid var(--pri-lt)}
.bt-author-role{font-size:11px;font-weight:700;color:var(--pri-dk);letter-spacing:.5px;text-transform:uppercase;margin-bottom:4px}
.bt-author-name{font-size:18px;font-weight:800;color:var(--ink);margin-bottom:6px}
.bt-author-bio{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:10px}
.bt-author-links{display:flex;gap:6px;flex-wrap:wrap}
.bt-author-link{font-size:12px;font-weight:600;color:var(--pri-dk);background:var(--pri-lt);padding:5px 14px;border-radius:20px}
@media(max-width:600px){.bt-author-box{flex-direction:column}}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.bt-nl{background:linear-gradient(135deg,var(--dark),#1a2e0f);border-radius:var(--radius-lg);padding:28px;position:relative;overflow:hidden}
.bt-nl::before{content:'';position:absolute;top:-50px;right:-50px;width:200px;height:200px;border-radius:50%;background:rgba(151,199,35,.06)}
.bt-nl h3{font-family:var(--serif);font-size:22px;font-weight:800;color:#fff;margin-bottom:6px;position:relative}
.bt-nl p{font-size:14px;color:rgba(255,255,255,.6);margin-bottom:14px;position:relative}
.bt-nl-form{display:flex;gap:8px;position:relative}
.bt-nl-input{flex:1;padding:11px 14px;border-radius:8px;background:rgba(255,255,255,.1);color:#fff;font-size:13px}
.bt-nl-input::placeholder{color:rgba(255,255,255,.4)}
.bt-nl-btn{padding:11px 20px;background:var(--pri);color:var(--dark);border-radius:8px;font-size:13px;font-weight:700;cursor:pointer;white-space:nowrap}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.bt-widget{background:var(--white);border:1px solid var(--border);border-radius:12px;padding:16px;margin-bottom:14px}
.bt-widget-h{font-size:11px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;color:var(--muted);margin-bottom:12px;padding-bottom:8px;border-bottom:1px solid var(--border)}

.bt-trend{display:flex;gap:12px;padding:9px 0;border-bottom:1px solid var(--border);cursor:pointer}
.bt-trend:last-child{border-bottom:none}
.bt-trend-num{font-size:20px;font-weight:900;color:var(--border);line-height:1;width:26px;flex-shrink:0}
.bt-trend:first-child .bt-trend-num{color:var(--pri)}
.bt-trend-h{font-size:13px;font-weight:600;color:var(--ink);line-height:1.35}

.bt-tags{display:flex;flex-wrap:wrap;gap:6px}
.bt-tag{font-size:12px;font-weight:500;padding:5px 12px;background:var(--bg);border:1px solid var(--border);border-radius:20px;color:var(--muted);cursor:pointer;transition:all .15s}
.bt-tag:hover{border-color:var(--pri);color:var(--pri-dk)}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════════════════ */
.bt-bread{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--muted);padding:14px 0;flex-wrap:wrap}
.bt-bread a{color:var(--muted)}
.bt-bread a:hover{color:var(--pri-dk)}
.bt-bread .sep{color:var(--pri)}

/* ═══════════════════════════════════════════════════════════
   CATEGORY HERO
   ═══════════════════════════════════════════════════════════ */
.bt-cat-hero{background:linear-gradient(135deg,var(--dark),#1a2e0f);border-radius:16px;padding:32px 36px;margin:20px 0 24px;display:flex;justify-content:space-between;align-items:center}
.bt-cat-label{font-size:11px;font-weight:700;color:var(--pri);letter-spacing:1px;text-transform:uppercase;margin-bottom:6px}
.bt-cat-h1{font-family:var(--serif);font-size:32px;font-weight:900;color:#fff;margin-bottom:6px}
.bt-cat-desc{font-size:14px;color:rgba(255,255,255,.45);max-width:450px;line-height:1.5}
.bt-cat-count{font-size:34px;font-weight:900;color:#fff;text-align:right}
.bt-cat-count small{display:block;font-size:12px;font-weight:400;color:rgba(255,255,255,.3)}

@media(max-width:600px){
  .bt-cat-hero{flex-direction:column;text-align:center;gap:16px}
  .bt-cat-h1{font-size:24px}
}

/* ─── FILTER PILLS ─── */
.bt-filters{display:flex;gap:6px;flex-wrap:wrap}
.bt-pill{font-size:12px;font-weight:600;padding:6px 16px;border-radius:20px;cursor:pointer;border:1px solid var(--border);background:transparent;color:var(--muted);transition:all .15s}
.bt-pill:hover{border-color:var(--pri);color:var(--pri-dk)}
.bt-pill.active{background:var(--pri);color:var(--dark);border-color:var(--pri)}

/* ─── LIST VIEW ─── */
.bt-list-item{display:flex;gap:18px;padding:16px 0;border-bottom:1px solid var(--border);cursor:pointer;align-items:center}
.bt-list-img{width:190px;aspect-ratio:16/9;object-fit:cover;border-radius:10px;flex-shrink:0}
.bt-list-h{font-family:var(--serif);font-size:17px;font-weight:700;color:var(--ink);line-height:1.3;margin:6px 0 8px}
@media(max-width:600px){.bt-list-item{flex-direction:column}.bt-list-img{width:100%}}

/* ─── PAGINATION ─── */
.bt-pag{display:flex;justify-content:center;gap:6px;margin:28px 0 32px}
.bt-pag a,.bt-pag span{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:8px;font-size:13px;font-weight:600;background:var(--bg);color:var(--muted);border:1px solid var(--border)}
.bt-pag .current{background:var(--pri);color:var(--dark);border:none}

/* ═══════════════════════════════════════════════════════════
   AUTHOR PAGE HERO
   ═══════════════════════════════════════════════════════════ */
.bt-author-hero{background:linear-gradient(135deg,var(--dark),#1a2e0f);border-radius:16px;padding:36px 40px;margin:20px 0 24px;display:flex;gap:28px;align-items:center;position:relative;overflow:hidden}
.bt-author-hero::before{content:'';position:absolute;top:-60px;right:-60px;width:250px;height:250px;border-radius:50%;background:rgba(151,199,35,.05)}
.bt-author-hero-av{width:110px;height:110px;border-radius:50%;object-fit:cover;flex-shrink:0;border:4px solid rgba(151,199,35,.25)}
.bt-author-hero-role{font-size:11px;font-weight:700;color:var(--pri);letter-spacing:.8px;text-transform:uppercase;margin-bottom:6px}
.bt-author-hero-h1{font-family:var(--serif);font-size:30px;font-weight:900;color:#fff;margin-bottom:8px}
.bt-author-hero-bio{font-size:14px;color:rgba(255,255,255,.55);line-height:1.6;margin-bottom:16px;max-width:550px}
.bt-author-stats{display:flex;gap:20px;margin-bottom:16px}
.bt-stat-num{font-size:24px;font-weight:900;color:#fff}
.bt-stat-label{font-size:11px;color:rgba(255,255,255,.35)}
.bt-author-hero-links{display:flex;gap:6px;flex-wrap:wrap}
.bt-author-hero-link{font-size:12px;font-weight:600;color:var(--pri);background:rgba(151,199,35,.12);padding:5px 14px;border-radius:20px}

/* ─── CREDENTIAL CARDS ─── */
.bt-creds{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:24px}
@media(max-width:768px){.bt-creds{grid-template-columns:repeat(2,1fr)}}
.bt-cred{background:var(--white);border:1px solid var(--border);border-radius:12px;padding:14px}
.bt-cred-icon{font-size:22px;margin-bottom:6px}
.bt-cred-h{font-size:13px;font-weight:700;color:var(--ink);margin-bottom:3px}
.bt-cred-d{font-size:12px;color:var(--muted)}

@media(max-width:600px){
  .bt-author-hero{flex-direction:column;text-align:center}
  .bt-author-stats{justify-content:center}
  .bt-author-hero-links{justify-content:center}
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.bt-about-hero{background:linear-gradient(135deg,var(--dark),#1a2e0f);border-radius:16px;padding:52px 40px;margin:20px 0 28px;text-align:center;position:relative;overflow:hidden}
.bt-about-hero::before{content:'';position:absolute;top:-80px;left:50%;transform:translateX(-50%);width:400px;height:400px;border-radius:50%;background:rgba(151,199,35,.04)}
.bt-about-h1{font-family:var(--serif);font-size:36px;font-weight:900;color:#fff;line-height:1.15;margin-bottom:14px;max-width:650px;margin-left:auto;margin-right:auto;position:relative}
.bt-about-desc{font-size:16px;color:rgba(255,255,255,.5);max-width:500px;margin:0 auto;line-height:1.6;position:relative}

.bt-pillars{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:32px}
@media(max-width:768px){.bt-pillars{grid-template-columns:repeat(2,1fr)}}
.bt-pillar{background:var(--white);border:1px solid var(--border);border-radius:14px;padding:20px}
.bt-pillar-icon{font-size:26px;margin-bottom:10px}
.bt-pillar h3{font-size:14px;font-weight:700;color:var(--ink);margin-bottom:6px}
.bt-pillar p{font-size:13px;color:var(--muted);line-height:1.55}

.bt-team{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:32px}
@media(max-width:768px){.bt-team{grid-template-columns:1fr}}
.bt-team-card{background:var(--white);border:1px solid var(--border);border-radius:14px;padding:28px;text-align:center}
.bt-team-av{width:76px;height:76px;border-radius:50%;object-fit:cover;margin:0 auto 12px;border:3px solid var(--pri-lt)}
.bt-team-role{font-size:11px;font-weight:700;color:var(--pri-dk);letter-spacing:.4px;text-transform:uppercase;margin-bottom:4px}
.bt-team-name{font-size:17px;font-weight:800;color:var(--ink);margin-bottom:6px}
.bt-team-spec{font-size:13px;color:var(--muted);margin-bottom:3px}
.bt-team-links{display:flex;justify-content:center;gap:6px;margin-top:10px}

/* ─── STATS ROW ─── */
.bt-stats{background:var(--bg);border-radius:14px;padding:28px 36px;margin-bottom:28px;display:grid;grid-template-columns:repeat(5,1fr);gap:16px;text-align:center}
@media(max-width:600px){.bt-stats{grid-template-columns:repeat(3,1fr)}}
.bt-stats .num{font-size:28px;font-weight:900;color:var(--pri-dk)}
.bt-stats .label{font-size:12px;color:var(--muted);margin-top:3px}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.bt-footer{background:var(--dark);padding:40px 20px 24px;margin-top:40px}
.bt-footer-in{max-width:var(--max-w);margin:0 auto}
.bt-footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding-top:24px;border-top:1px solid rgba(255,255,255,.06)}
@media(max-width:600px){.bt-footer-grid{grid-template-columns:repeat(2,1fr)}}
.bt-footer-col h4{font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:rgba(255,255,255,.2);margin-bottom:10px}
.bt-footer-col a{display:block;font-size:13px;color:rgba(255,255,255,.45);padding:3px 0}
.bt-footer-col a:hover{color:var(--pri)}
.bt-footer-bot{margin-top:24px;padding-top:16px;border-top:1px solid rgba(255,255,255,.06);display:flex;justify-content:space-between;align-items:center;font-size:11px;color:rgba(255,255,255,.18)}
.bt-footer-soc{display:flex;gap:6px}
.bt-footer-soc a{width:28px;height:28px;background:rgba(255,255,255,.06);border-radius:7px;display:flex;align-items:center;justify-content:center;font-size:11px;color:rgba(255,255,255,.35);transition:all .15s}
.bt-footer-soc a:hover{background:var(--pri);color:var(--dark)}

/* ═══════════════════════════════════════════════════════════
   404 / SEARCH
   ═══════════════════════════════════════════════════════════ */
.bt-404{text-align:center;padding:60px 20px}
.bt-404 h1{font-family:var(--serif);font-size:80px;font-weight:900;color:var(--pri);margin-bottom:10px}
.bt-404 h2{font-size:22px;font-weight:700;color:var(--ink);margin-bottom:10px}
.bt-404 p{font-size:16px;color:var(--muted);margin-bottom:24px}

.bt-search-form{display:flex;gap:8px;max-width:400px;margin:0 auto}
.bt-search-input{flex:1;padding:11px 16px;border:2px solid var(--border);border-radius:8px;font-size:14px;background:var(--white);color:var(--ink)}
.bt-search-input:focus{border-color:var(--pri)}
.bt-search-submit{padding:11px 20px;background:var(--pri-dk);color:#fff;border-radius:8px;font-weight:700;cursor:pointer}

/* ═══════════════════════════════════════════════════════════
   GUTENBERG BLOCK EDITOR COMPAT
   ═══════════════════════════════════════════════════════════ */
.wp-block-image{margin:20px 0}
.wp-block-image img{border-radius:var(--radius)}
.wp-block-image figcaption{font-size:12px;color:var(--muted);text-align:center;font-style:italic;margin-top:8px}
.wp-block-separator{border:none;border-top:2px solid var(--border);margin:32px 0}
.wp-block-quote{border-left:4px solid var(--pri);padding:14px 18px;margin:24px 0;background:var(--pri-lt);border-radius:0 10px 10px 0}
.wp-block-quote p{font-style:italic;color:var(--pri-dk)}
.wp-block-table{margin:20px 0;overflow-x:auto}
.wp-block-table table{width:100%;border-collapse:collapse}
.wp-block-table td,.wp-block-table th{padding:10px 14px;border:1px solid var(--border);font-size:14px}
.wp-block-table th{background:var(--bg);font-weight:700}
.wp-block-code,.wp-block-preformatted{background:var(--dark);color:#e0e8d8;padding:18px;border-radius:var(--radius);font-size:14px;overflow-x:auto;margin:20px 0}

/* ═══════════════════════════════════════════════════════════
   SKIP TO CONTENT (ACCESSIBILITY)
   ═══════════════════════════════════════════════════════════ */
.bt-skip{position:absolute;top:-40px;left:0;background:var(--pri);color:var(--dark);padding:8px 16px;font-weight:700;z-index:100;transition:top .2s}
.bt-skip:focus{top:0}
