/*
Theme Name: Bharat News
Theme URI: https://bharatnews.com
Author: Claude - AI Theme Developer
Author URI: https://anthropic.com
Description: Professional Indian News Theme with Breaking News Ticker, Social Share, Category Support, WhatsApp & Facebook Sharing, and Full Customization Options.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bharat-news
Tags: news, blog, magazine, custom-logo, custom-colors, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #C0392B;
  --primary-dark:  #922B21;
  --primary-light: #E74C3C;
  --accent:        #F39C12;
  --accent2:       #27AE60;
  --bg:            #F5F5F5;
  --bg-white:      #FFFFFF;
  --text:          #1A1A1A;
  --text-muted:    #666666;
  --border:        #E0E0E0;
  --shadow:        0 2px 12px rgba(0,0,0,0.10);
  --shadow-hover:  0 6px 24px rgba(0,0,0,0.18);
  --radius:        6px;
  --radius-lg:     12px;
  --font-head:     'Tiro Devanagari Hindi', 'Noto Sans Devanagari', serif;
  --font-body:     'Hind', 'Noto Sans', sans-serif;
  --ticker-bg:     #C0392B;
  --ticker-label:  #F39C12;
  --header-height: 70px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ===== GOOGLE FONTS LOAD (via functions.php) ===== */

/* ===== TOP BAR ===== */
.bn-topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 12px;
  padding: 5px 0;
}
.bn-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.bn-topbar-date { opacity: .85; }
.bn-topbar-links a {
  color: #fff;
  margin-left: 14px;
  font-size: 11px;
  opacity: .85;
}
.bn-topbar-links a:hover { opacity: 1; color: var(--accent); }

/* ===== HEADER ===== */
.bn-header {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.bn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-height);
  gap: 20px;
}
/* LOGO */
.bn-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.bn-logo img {
  max-height: 55px;
  width: auto;
}
.bn-logo-text {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.bn-logo-tagline {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

/* HEADER AD / SEARCH */
.bn-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bn-search-form {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 25px;
  overflow: hidden;
  transition: border-color .2s;
}
.bn-search-form:focus-within { border-color: var(--primary); }
.bn-search-form input {
  border: none;
  outline: none;
  padding: 7px 14px;
  font-size: 13px;
  width: 180px;
  background: transparent;
}
.bn-search-form button {
  background: var(--primary);
  border: none;
  padding: 7px 14px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
}

/* ===== NAVIGATION ===== */
.bn-nav {
  background: var(--primary);
}
.bn-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.bn-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.bn-nav ul li { position: relative; }
.bn-nav ul li a {
  display: block;
  padding: 13px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: background .2s;
  white-space: nowrap;
}
.bn-nav ul li a:hover,
.bn-nav ul li.current-menu-item > a,
.bn-nav ul li.current-menu-ancestor > a {
  background: var(--primary-dark);
  color: var(--accent);
}
/* Dropdown */
.bn-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: var(--shadow-hover);
  border-top: 3px solid var(--accent);
  z-index: 999;
  flex-direction: column;
}
.bn-nav ul li:hover > ul { display: flex; flex-direction: column; }
.bn-nav ul li ul li a {
  color: var(--text);
  padding: 10px 18px;
  font-weight: 500;
  font-size: 13px;
}
.bn-nav ul li ul li a:hover { background: var(--bg); color: var(--primary); }
/* Hamburger */
.bn-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

/* ===== BREAKING NEWS TICKER ===== */
.bn-ticker {
  background: var(--ticker-bg);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 38px;
}
.bn-ticker-label {
  background: var(--ticker-label);
  color: #111;
  font-weight: 800;
  font-size: 12px;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: .5px;
  flex-shrink: 0;
  text-transform: uppercase;
  position: relative;
}
.bn-ticker-label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  border-left: 10px solid var(--ticker-label);
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
}
.bn-ticker-track {
  overflow: hidden;
  flex: 1;
  padding-left: 20px;
}
.bn-ticker-items {
  display: flex;
  gap: 60px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.bn-ticker-items:hover { animation-play-state: paused; }
.bn-ticker-items a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.bn-ticker-items a:hover { color: var(--accent); }
.bn-ticker-items a::before {
  content: '◆';
  color: var(--accent);
  margin-right: 6px;
  font-size: 8px;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== LAYOUT ===== */
.bn-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.bn-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  padding: 28px 0;
}
.bn-main { min-width: 0; }
.bn-sidebar { min-width: 0; }

/* ===== HERO / FEATURED SLIDER ===== */
.bn-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bn-hero-main { grid-row: 1 / 3; position: relative; }
.bn-hero-side { position: relative; }
.bn-hero-main img, .bn-hero-side img {
  width: 100%; height: 100%; object-fit: cover;
}
.bn-hero-main { height: 450px; }
.bn-hero-side { height: 220px; }
.bn-hero-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  padding: 40px 18px 16px;
}
.bn-hero-caption .bn-cat-badge {
  margin-bottom: 6px;
}
.bn-hero-caption h2 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
}
.bn-hero-side .bn-hero-caption h2 { font-size: 15px; }
.bn-hero-main .bn-hero-caption h2 { font-size: 26px; }

/* ===== CATEGORY BADGE ===== */
.bn-cat-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bn-cat-badge.cat-politics  { background: #C0392B; }
.bn-cat-badge.cat-sports    { background: #1A6B3C; }
.bn-cat-badge.cat-business  { background: #1A5276; }
.bn-cat-badge.cat-entertainment { background: #7D3C98; }
.bn-cat-badge.cat-tech      { background: #1F618D; }
.bn-cat-badge.cat-health    { background: #0E6655; }
.bn-cat-badge.cat-world     { background: #784212; }

/* ===== SECTION HEADING ===== */
.bn-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 10px;
}
.bn-section-head h2 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  position: relative;
}
.bn-section-head h2::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
}
.bn-section-head a {
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
}
.bn-section-head a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== NEWS CARD GRID ===== */
.bn-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.bn-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.bn-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.bn-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.bn-card-thumb {
  position: relative;
  overflow: hidden;
  height: 185px;
}
.bn-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.bn-card:hover .bn-card-thumb img { transform: scale(1.05); }
.bn-card-thumb .bn-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.bn-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bn-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 7px;
  display: flex;
  gap: 10px;
}
.bn-card-meta span { display: flex; align-items: center; gap: 4px; }
.bn-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  flex: 1;
}
.bn-card-title a { color: inherit; }
.bn-card-title a:hover { color: var(--primary); }
.bn-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== LIST NEWS (Sidebar/Latest) ===== */
.bn-list-news { list-style: none; }
.bn-list-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.bn-list-item:last-child { border-bottom: none; }
.bn-list-thumb {
  width: 85px;
  height: 65px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.bn-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bn-list-body {}
.bn-list-cat { font-size: 10px; font-weight: 700; color: var(--primary); text-transform: uppercase; margin-bottom: 4px; }
.bn-list-title {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  line-height: 1.4;
  color: var(--text);
}
.bn-list-title a { color: inherit; }
.bn-list-title a:hover { color: var(--primary); }
.bn-list-time { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ===== CATEGORY STRIP ===== */
.bn-cat-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 22px;
  scrollbar-width: none;
}
.bn-cat-strip::-webkit-scrollbar { display: none; }
.bn-cat-pill {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 25px;
  border: 2px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-white);
  cursor: pointer;
  transition: all .2s;
}
.bn-cat-pill:hover, .bn-cat-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ===== SINGLE POST ===== */
.bn-single { background: var(--bg-white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.bn-single-featured { width: 100%; max-height: 480px; object-fit: cover; }
.bn-single-content { padding: 28px; }
.bn-single-categories { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.bn-single-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 14px;
}
.bn-single-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bn-single-meta span { display: flex; align-items: center; gap: 6px; }
.bn-single-meta .bn-author-avatar {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
}
.bn-article-body {
  font-size: 16px;
  line-height: 1.85;
  color: #222;
}
.bn-article-body p { margin-bottom: 18px; }
.bn-article-body h2 { font-size: 22px; margin: 28px 0 12px; color: var(--primary); }
.bn-article-body h3 { font-size: 18px; margin: 22px 0 10px; }
.bn-article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 12px 20px;
  background: #FEF9F9;
  margin: 20px 0;
  font-style: italic;
  color: #555;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.bn-article-body img { border-radius: var(--radius); margin: 20px auto; }
.bn-article-body ul, .bn-article-body ol { padding-left: 24px; margin-bottom: 18px; }

/* ===== SHARE BUTTONS ===== */
.bn-share {
  background: #F9F9F9;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bn-share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 4px;
}
.bn-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
  color: #fff;
}
.bn-share-btn.whatsapp { background: #25D366; }
.bn-share-btn.whatsapp:hover { background: #1ebe5d; transform: scale(1.04); color: #fff; }
.bn-share-btn.facebook { background: #1877F2; }
.bn-share-btn.facebook:hover { background: #1464d8; transform: scale(1.04); color: #fff; }
.bn-share-btn.twitter  { background: #1DA1F2; }
.bn-share-btn.twitter:hover  { background: #0d8fd9; transform: scale(1.04); color: #fff; }
.bn-share-btn.copy     { background: #555; }
.bn-share-btn.copy:hover     { background: #333; transform: scale(1.04); color: #fff; }
.bn-share-btn svg { width: 16px; height: 16px; fill: #fff; }

/* Also show share on card hover */
.bn-card-share {
  display: flex;
  gap: 7px;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
}
.bn-card-share a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  color: #fff;
}
.bn-card-share .wa { background: #25D366; }
.bn-card-share .fb { background: #1877F2; }

/* ===== SIDEBAR ===== */
.bn-widget {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
}
.bn-widget-title {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bn-widget-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
  display: block;
}
.bn-widget-body { padding: 14px 16px; }

/* Popular widget number badges */
.bn-popular-list { list-style: none; }
.bn-popular-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.bn-popular-item:last-child { border-bottom: none; }
.bn-popular-num {
  width: 28px; height: 28px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bn-popular-item:nth-child(1) .bn-popular-num { background: #C0392B; }
.bn-popular-item:nth-child(2) .bn-popular-num { background: #E67E22; }
.bn-popular-item:nth-child(3) .bn-popular-num { background: #F1C40F; color: #111; }
.bn-popular-title { font-size: 13px; font-weight: 600; line-height: 1.4; }
.bn-popular-title a { color: var(--text); }
.bn-popular-title a:hover { color: var(--primary); }

/* Category Sidebar List */
.bn-cat-list { list-style: none; }
.bn-cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}
.bn-cat-list li:last-child { border-bottom: none; }
.bn-cat-list a { color: var(--text); font-weight: 500; }
.bn-cat-list a:hover { color: var(--primary); }
.bn-cat-list .count {
  background: var(--bg);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--text-muted);
}

/* ===== TAGS ===== */
.bn-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 0; }
.bn-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  transition: all .2s;
}
.bn-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== PAGINATION ===== */
.bn-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
}
.bn-pagination a, .bn-pagination span {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
}
.bn-pagination a:hover, .bn-pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ===== FOOTER ===== */
.bn-footer-top {
  background: #1A1A1A;
  color: #ccc;
  padding: 48px 0 32px;
}
.bn-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.bn-footer-logo img { max-height: 50px; margin-bottom: 12px; }
.bn-footer-logo-text {
  font-family: var(--font-head);
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
.bn-footer-about { font-size: 13px; line-height: 1.7; margin-top: 10px; color: #aaa; }
.bn-footer-social { display: flex; gap: 10px; margin-top: 16px; }
.bn-footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #ccc;
  font-size: 14px;
  transition: all .2s;
}
.bn-footer-social a:hover { background: var(--primary); color: #fff; }
.bn-footer-col h4 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}
.bn-footer-col ul { list-style: none; }
.bn-footer-col ul li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.bn-footer-col ul li a { color: #aaa; font-size: 13px; }
.bn-footer-col ul li a:hover { color: var(--accent); padding-left: 6px; }
.bn-footer-bottom {
  background: #111;
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: #666;
}
.bn-footer-bottom a { color: #888; }

/* ===== SCROLL TO TOP ===== */
.bn-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 12px rgba(0,0,0,.3);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  border: none;
  z-index: 500;
}
.bn-scroll-top.show { opacity: 1; transform: translateY(0); }
.bn-scroll-top:hover { background: var(--primary-dark); }

/* ===== DARK MODE ===== */
body.dark-mode {
  --bg: #0F0F0F;
  --bg-white: #1A1A1A;
  --text: #F0F0F0;
  --text-muted: #AAA;
  --border: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bn-wrap { grid-template-columns: 1fr; }
  .bn-footer-grid { grid-template-columns: 1fr 1fr; }
  .bn-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bn-hero { grid-template-columns: 1fr; }
  .bn-hero-main { grid-row: auto; }
  .bn-grid-3, .bn-grid-2 { grid-template-columns: 1fr; }
  .bn-nav ul { display: none; flex-direction: column; background: var(--primary-dark); position: absolute; top: 100%; left: 0; right: 0; z-index: 999; }
  .bn-nav ul.open { display: flex; }
  .bn-hamburger { display: block; }
  .bn-header-inner { flex-wrap: wrap; }
  .bn-search-form input { width: 120px; }
  .bn-footer-grid { grid-template-columns: 1fr; }
  .bn-single-title { font-size: 22px; }
}
@media (max-width: 480px) {
  .bn-container { padding: 0 12px; }
  .bn-share { flex-direction: column; align-items: flex-start; }
  .bn-topbar-links { display: none; }
}
