/* ═══════════════════════════════════════════════════════════
   Bilgicep — "Soru-Cevap platformu" teması
   Logo + son paylaşılanlar kayan şerit → arama-odaklı hero
   → geniş sol soru kartları akışı + sağ sidebar → footer.
   Yumuşak indigo-mor + coral, yuvarlak, modern. Class prefix `b-`.
   Tek şema (açık) — OS tema çakışması olmaması için @media/data-theme YOK.
   Renkler header.php :root ile de basılır; buradaki değerler fallback.
   ═══════════════════════════════════════════════════════════ */
:root {
  --bg: #F6F6FB;
  --surface: #FFFFFF;
  --surface-2: #F0F0F8;
  --ink: #1A1A2E;
  --ink-2: #5A5A72;
  --ink-3: #9A9AB2;
  --line: #E8E8F2;
  --line-2: #DADAE8;
  --accent: #5B4BE8;
  --accent-2: #7C6FF0;
  --accent-ink: #4A3BD0;
  --accent-soft: #EEEBFC;
  --coral: #FF6B6B;
  --ok: #22C55E;
  --ok-soft: #E7F9EE;
  --wide: 1280px;
  --shadow: 0 1px 3px rgba(26,26,46,.04), 0 10px 30px rgba(91,75,232,.06);
  --shadow-lg: 0 20px 50px rgba(91,75,232,.14);
  --ease: cubic-bezier(.25,.46,.45,.94);
  --footer-bg: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font, 'Exo', system-ui, sans-serif);
  font-size: var(--fs, 15px);
  line-height: var(--body-lh, 1.6);
  color: var(--ink, #1A1A2E);
  background: var(--bg, #F6F6FB);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.b-wrap { max-width: var(--wide, 1200px); margin: 0 auto; padding: 0 24px; }

/* ═══ HEADER ═══ */
.b-head { position: sticky; top: 0; z-index: 30; background: color-mix(in srgb, var(--bg) 85%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.b-head-in { display: flex; align-items: center; gap: 22px; height: 70px; }
.b-logo { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; letter-spacing: -.03em; flex-shrink: 0; }
.b-logo .mk { width: 36px; height: 36px; border-radius: 11px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; color: #fff; font-size: 19px; font-weight: 800; box-shadow: 0 4px 12px rgba(91,75,232,.35); flex-shrink: 0; }
.b-logo .nm { color: var(--ink); }
.b-logo .nm b { color: var(--accent-ink); }
/* son paylaşılanlar kayan şerit (logo yanında) */
.b-ticker { flex: 1; display: flex; align-items: center; gap: 14px; min-width: 0; overflow: hidden; }
.b-ticker-lbl { flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--coral); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.b-ticker-view { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 5%,#000 92%,transparent); mask-image: linear-gradient(90deg,transparent,#000 5%,#000 92%,transparent); }
.b-ticker-track { display: inline-flex; gap: 28px; white-space: nowrap; animation: b-tick 40s linear infinite; padding: 4px 0; }
.b-ticker-view:hover .b-ticker-track { animation-play-state: paused; }
@keyframes b-tick { from { transform: translateX(0);} to { transform: translateX(-50%);} }
.b-ticker-track a { font-size: 13.5px; font-weight: 600; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; }
.b-ticker-track a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.b-ticker-track a:hover { color: var(--accent-ink); }

/* ═══ HERO (arama odaklı) ═══ */
.b-hero { text-align: center; padding: 64px 0 40px; position: relative; overflow: hidden; }
.b-hero::before { content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, var(--accent-soft), transparent 70%); z-index: -1; }
.b-hero .kick { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); padding: 7px 16px; border-radius: 100px; margin-bottom: 22px; }
.b-hero h1 { font-size: clamp(30px, 4.5vw, 50px); line-height: 1.08; font-weight: 800; letter-spacing: -.03em; margin-bottom: 16px; text-wrap: balance; color: var(--ink); }
.b-hero h1 span { background: linear-gradient(120deg, var(--accent), var(--coral)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.b-hero p { font-size: 17px; color: var(--ink-2); max-width: 52ch; margin: 0 auto 30px; }
.b-bigsearch { max-width: 600px; margin: 0 auto; display: flex; align-items: center; gap: 10px; background: var(--surface); border: 2px solid var(--line); border-radius: 100px; padding: 8px 8px 8px 24px; box-shadow: var(--shadow-lg); transition: .2s; }
.b-bigsearch:focus-within { border-color: var(--accent); }
.b-bigsearch > i { color: var(--accent); font-size: 18px; }
.b-bigsearch input { flex: 1; border: 0; background: transparent; outline: 0; font-family: inherit; font-size: 16px; color: var(--ink); }
.b-bigsearch input::placeholder { color: var(--ink-3); }
.b-bigsearch button { font-family: var(--font, 'Exo', sans-serif); background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-weight: 700; font-size: 15px; padding: 14px 28px; border: 0; border-radius: 100px; cursor: pointer; white-space: nowrap; }
.b-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.b-tags span { font-size: 12px; color: var(--ink-3); }
.b-tags a { font-size: 13px; font-weight: 600; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line); padding: 6px 14px; border-radius: 100px; }
.b-tags a:hover { border-color: var(--accent); color: var(--accent-ink); }

/* ═══ AKIŞ (geniş sol akış + sağ sidebar) ═══ */
.b-feed { padding: 20px 0 70px; }
.b-feed-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.b-feed-grid > main { min-width: 0; }
.b-feed-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.b-feed-head h2 { font-size: 19px; font-weight: 800; letter-spacing: -.01em; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.b-feed-head h2 .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.b-feed-head .cnt { font-size: 13px; color: var(--ink-3); font-weight: 600; }

.b-list { display: flex; flex-direction: column; gap: 16px; }
.b-q { display: grid; grid-template-columns: 64px 1fr; gap: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 24px 26px; cursor: pointer; transition: .18s var(--ease); box-shadow: var(--shadow); }
.b-q:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent-2); }
.b-q-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.b-q-badge .ic { width: 52px; height: 52px; border-radius: 16px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 24px; font-weight: 800; }
.b-q:hover .b-q-badge .ic { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.b-q-badge .rd { font-size: 11px; color: var(--ink-3); font-weight: 600; white-space: nowrap; }
.b-q-body { min-width: 0; }
.b-q-body h3 { font-size: 20px; line-height: 1.3; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; color: var(--ink); }
.b-q-body h3 a { color: inherit; }
.b-q:hover .b-q-body h3 { color: var(--accent-ink); }
.b-q-body p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.b-q-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.b-solved { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--ok); background: var(--ok-soft); padding: 5px 12px; border-radius: 100px; }
.b-q-author { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.b-q-author .av { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; }

.b-empty { text-align: center; padding: 56px 20px; color: var(--ink-3); background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.b-empty i { font-size: 36px; margin-bottom: 12px; display: block; opacity: .5; }

/* ═══ SAĞ SIDEBAR ═══ */
.b-side { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.b-box { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 22px; box-shadow: var(--shadow); }
.b-box-t { font-size: 13px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 16px; display: flex; align-items: center; gap: 9px; color: var(--ink); }
.b-box-t .i { width: 28px; height: 28px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 14px; }
.b-rank { display: flex; gap: 13px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.b-rank:last-child { border-bottom: 0; padding-bottom: 0; }
.b-rank .n { font-size: 16px; font-weight: 800; color: var(--accent); opacity: .5; flex-shrink: 0; width: 20px; }
.b-rank:hover .n { opacity: 1; }
.b-rank .tt { font-size: 13.5px; font-weight: 600; line-height: 1.4; color: var(--ink-2); }
.b-rank:hover .tt { color: var(--accent-ink); }
.b-mini { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; font-weight: 600; line-height: 1.4; color: var(--ink-2); }
.b-mini:last-child { border-bottom: 0; padding-bottom: 0; }
.b-mini:hover { color: var(--accent-ink); }
.b-mini .dt { display: block; font-size: 11px; color: var(--ink-3); font-weight: 500; margin-top: 3px; }
.b-stat { background: linear-gradient(135deg, var(--accent), var(--accent-2)); border: 0; color: #fff; }
.b-stat .b-box-t { color: #fff; }
.b-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.b-stat-item .num { font-size: 24px; font-weight: 800; line-height: 1; }
.b-stat-item .lbl { font-size: 12px; opacity: .85; margin-top: 4px; }

.b-pag { display: flex; justify-content: center; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.b-pag a { min-width: 42px; height: 42px; padding: 0 15px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 12px; font-size: 14px; font-weight: 700; color: var(--ink-2); background: var(--surface); transition: .15s; }
.b-pag a:hover { border-color: var(--accent); color: var(--accent-ink); }
.b-pag a.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.b-pag .dots { border: 0; background: transparent; min-width: 20px; }

/* ═══ SINGLE ═══ */
.b-progress { height: 3px; background: var(--line); position: sticky; top: 70px; z-index: 25; }
.b-progress span { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--coral)); }
.b-single-wrap { padding: 36px 0 60px; }
.b-single { max-width: 820px; margin: 0 auto; padding: 40px 0 60px; }
.b-crumb { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-3); margin-bottom: 18px; font-weight: 600; }
.b-crumb a { color: var(--accent-ink); }
.b-crumb .s { color: var(--line-2); }
.b-single-head { margin-bottom: 22px; }
.b-single-head h1 { font-size: clamp(28px, 3vw, 38px); line-height: 1.15; letter-spacing: -.01em; font-weight: 800; color: var(--ink); text-wrap: pretty; }
.b-single-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; font-size: 13px; margin-bottom: 22px; }
.b-single-meta > span { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; color: var(--ink-2); }
.b-single-meta .au { font-weight: 700; }
.b-single-meta .av { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.b-single-meta .solved { color: var(--ok); background: var(--ok-soft); border-color: transparent; font-weight: 700; }
.b-article { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 40px 44px; color: var(--ink); box-shadow: var(--shadow); }
.b-article > *:first-child { margin-top: 0; }
.b-article p { margin-bottom: 16px; color: var(--ink-2); line-height: 1.85; font-size: 16px;  text-align: justify; }
.b-article p:last-child { margin-bottom: 0; }
.b-article h2 { font-size: 23px; margin: 32px 0 13px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); padding-left: 15px; border-left: 4px solid var(--accent); }
.b-article h3 { font-size: 19px; margin: 24px 0 10px; color: var(--ink); }
.b-article ul, .b-article ol { margin: 0 0 16px 22px; color: var(--ink-2); }
.b-article li { margin-bottom: 8px; line-height: 1.7; }
.b-article a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.b-article img { border-radius: 14px; margin: 18px 0; }
.b-article blockquote { border-left: 4px solid var(--accent); background: var(--accent-soft); padding: 14px 20px; border-radius: 0 12px 12px 0; margin: 20px 0; color: var(--ink); }
.b-article table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.b-article th, .b-article td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.b-article th { background: var(--surface-2); font-weight: 700; }
.b-share { display: flex; align-items: center; gap: 16px; margin-top: 18px; padding: 18px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; flex-wrap: wrap; box-shadow: var(--shadow); }
.b-share-label { font-size: 13px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.b-share-btns { display: flex; gap: 8px; }
.b-share-btns a { width: 38px; height: 38px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: .15s; }
.b-share-btns a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.b-related { margin-top: 34px; }
.b-related-t { font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 16px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.b-related-t .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

/* Profile */
.b-profile-head { display: flex; align-items: center; gap: 18px; }
.b-profile-avatar { width: 64px; height: 64px; border-radius: 20px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; display: grid; place-items: center; font-size: 26px; font-weight: 800; flex-shrink: 0; box-shadow: 0 6px 16px rgba(91,75,232,.3); }
.b-profile-info { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 22px 26px; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; box-shadow: var(--shadow); }
.b-info-row { font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.b-info-row i { color: var(--accent); width: 16px; }
.b-info-row strong { color: var(--ink); font-weight: 700; }
.b-map-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.b-map-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.b-map-btn:hover { border-color: var(--accent); color: var(--accent-ink); }

/* Kategori/arama başlık */
.b-page-hero { text-align: center; padding: 44px 0 10px; position: relative; }
.b-page-hero::before { content: ""; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(circle, var(--accent-soft), transparent 70%); z-index: -1; }
.b-page-hero h1 { font-size: clamp(26px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -.02em; font-weight: 800; margin: 4px 0 12px; color: var(--ink); }
.b-page-hero p { font-size: 15px; color: var(--ink-2); max-width: 60ch; margin: 0 auto 14px; line-height: 1.6; }
.b-page-count { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); padding: 7px 16px; border-radius: 100px; }
.b-search-form { max-width: 520px; margin: 0 auto; display: flex; align-items: center; gap: 10px; background: var(--surface); border: 2px solid var(--line); border-radius: 100px; padding: 6px 6px 6px 20px; box-shadow: var(--shadow-lg); }
.b-search-form:focus-within { border-color: var(--accent); }
.b-search-form input { flex: 1; border: 0; background: transparent; outline: 0; font-family: inherit; font-size: 15px; color: var(--ink); }
.b-search-form button { font-family: var(--font, 'Exo', sans-serif); padding: 12px 26px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border: 0; border-radius: 100px; font-weight: 700; font-size: 14px; cursor: pointer; }
.b-search-info { margin-top: 14px; font-size: 14px; color: var(--ink-2); text-align: center; }
.b-search-info strong { color: var(--accent-ink); }

/* 404 */
.b-404 { text-align: center; padding: 70px 0; }
.b-404-code { font-size: clamp(80px, 14vw, 150px); font-weight: 800; line-height: 1; letter-spacing: -.04em; background: linear-gradient(120deg, var(--accent), var(--coral)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.b-404-title { font-size: 26px; font-weight: 800; margin: 8px 0 14px; color: var(--ink); }
.b-404-text { font-size: 16px; color: var(--ink-2); margin-bottom: 24px; line-height: 1.6; }
.b-404-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.b-btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 28px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-radius: 100px; font-weight: 700; font-size: 14px; transition: .15s; }
.b-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.b-404-search { display: flex; gap: 8px; width: 100%; max-width: 420px; margin: 0 auto; }
.b-404-search input { flex: 1; padding: 13px 20px; border: 1px solid var(--line); border-radius: 100px; font-size: 15px; background: var(--surface); color: var(--ink); font-family: inherit; outline: 0; }
.b-404-search button { font-family: var(--font, 'Exo', sans-serif); padding: 13px 22px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 100px; color: var(--ink); cursor: pointer; }
.b-404-sug { margin-top: 40px; max-width: 700px; margin-left: auto; margin-right: auto; text-align: left; }
.b-404-sug-t { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--ink-3); margin-bottom: 16px; text-align: center; }

/* ═══ FOOTER ═══ */
.b-foot { background: var(--footer-bg); border-top: 1px solid var(--line); padding: 52px 0 0; }
.b-foot-in { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.b-foot-brand .l { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 14px; }
.b-foot-brand .l .mk { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; color: #fff; font-weight: 800; }
.b-foot-brand .l .nm { color: var(--ink); }
.b-foot-brand .l .nm b { color: var(--accent-ink); }
.b-foot-brand p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; max-width: 32ch; margin-bottom: 14px; }
.b-foot-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.b-foot-status .led { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px var(--ok-soft); }
.b-foot-soc { display: flex; gap: 9px; margin-top: 14px; }
.b-foot-soc a { width: 36px; height: 36px; border-radius: 10px; background: var(--surface-2); display: grid; place-items: center; color: var(--ink-2); }
.b-foot-soc a:hover { background: var(--accent); color: #fff; }
.b-fcol-t { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; color: var(--ink-3); margin-bottom: 13px; }
.b-flinks { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.b-flinks a { font-size: 13.5px; color: var(--ink-2); line-height: 1.4; display: block; }
.b-flinks a:hover { color: var(--accent-ink); }
.b-foot-topics { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid var(--line); }
.b-foot-topics .l { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.b-foot-topics a { font-size: 12.5px; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); padding: 6px 13px; border-radius: 100px; }
.b-foot-topics a:hover { border-color: var(--accent); color: var(--accent-ink); }
.b-foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 16px 0 28px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-3); }
.b-foot-bottom a { color: var(--ink-2); }
.b-foot-bottom a:hover { color: var(--accent-ink); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .b-feed-grid { grid-template-columns: 1fr; }
  .b-side { position: static; flex-direction: row; flex-wrap: wrap; }
  .b-side .b-box { flex: 1; min-width: 240px; }
}
@media (max-width: 800px) {
  .b-ticker { display: none; }
  .b-foot-in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .b-wrap { padding: 0 18px; }
  .b-hero { padding: 44px 0 30px; }
  .b-bigsearch { flex-wrap: wrap; border-radius: 20px; padding: 14px; }
  .b-bigsearch button { width: 100%; }
  .b-q { grid-template-columns: 1fr; gap: 14px; }
  .b-q-badge { flex-direction: row; align-items: center; gap: 12px; }
  .b-feed-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .b-article { padding: 28px 22px; }
  .b-single-head { gap: 14px; }
  .b-foot-in { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
