/* Modern news/blog design for 2020bharat.com */

/* ===================== GLOBAL HEADER REFRESH ===================== */
/* Hide empty headerTop strip */
.headerTop { display: none !important; }
.headerBottom { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.10); padding: 0; border-bottom: 3px solid #0075c9; }
/* Fix: restore float layout, only override colours/spacing */
.headerBottom .container { min-height: 56px; position: relative; display: block; overflow: visible; }
/* Clearfix so container wraps floats */
.headerBottom .container::after { content:''; display:table; clear:both; }
.logoCell { float: left !important; }
.headerRight { float: right !important; }
.mainMenu { float: right !important; }
.mainMenu li a { font-size: 14px; font-weight: 600; color: #1a2236 !important; text-transform: uppercase; letter-spacing: .5px; transition: color .2s; }
.mainMenu li a:hover, .mainMenu li.current-menu-item > a { color: #0075c9 !important; }
/* Mobile: force logo + hamburger onto one row regardless of float-wrap quirks */
@media (max-width: 767px) {
  .headerRight { float: none !important; position: absolute !important; top: 50% !important; right: 15px !important; transform: translateY(-50%) !important; margin: 0 !important; }
  .headerRight a.mobileNavIcon { margin: 0 !important; }
}

/* Body padding: exactly matches headerWrapper height measured at each breakpoint */
.bodyPadding { padding-top: 100px !important; }
@media (max-width: 767px) { .bodyPadding { padding-top: 84px !important; } }

/* ===================== HERO SECTION ===================== */
#bb-hero-section { background: #1a2236; margin-bottom: 0; }
.bb-hero-link { display: block; position: relative; overflow: hidden; border-radius: 0; }
.bb-hero-link img { width: 100%; height: 420px; object-fit: cover; display: block; filter: brightness(.65); transition: filter .4s; }
.bb-hero-link:hover img { filter: brightness(.55); }
.bb-hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 40px; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%); }
.bb-hero-title { color: #fff; font: 700 28px/1.3 'Montserrat', sans-serif; margin: 8px 0 10px; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.bb-hero-excerpt { color: rgba(255,255,255,.85); font-size: 14px; margin: 0 0 10px; line-height: 1.6; }
.bb-hero-meta { color: rgba(255,255,255,.6); font-size: 12px; }
@media (max-width: 767px) {
  .bb-hero-link img { height: 240px; }
  .bb-hero-overlay { padding: 20px; }
  .bb-hero-title { font-size: 18px; }
  .bb-hero-excerpt { display: none; }
}

/* ===================== CATEGORY TABS ===================== */
/* Sticky just below the fixed headerWrapper */
#bb-tabs-section { background: #fff; border-bottom: 1px solid #eee; padding: 0; position: sticky; top: 100px; z-index: 99; box-shadow: 0 2px 6px rgba(0,0,0,.06); }
@media (max-width: 767px) { #bb-tabs-section { top: 84px; } }
#bb-tabs { display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 20px; }
#bb-tabs::-webkit-scrollbar { display: none; }
.bb-tab { border: none; background: none; padding: 16px 20px; font: 600 13px 'Montserrat', sans-serif; color: #666; cursor: pointer; white-space: nowrap; border-bottom: 3px solid transparent; transition: all .2s; text-transform: uppercase; letter-spacing: .5px; }
.bb-tab:hover { color: var(--tab-color, #0075c9); }
.bb-tab--active { color: var(--tab-color, #0075c9); border-bottom-color: var(--tab-color, #0075c9); }

/* ===================== FEED GRID ===================== */
#bb-feed-section { background: #f4f6f9; padding: 32px 0 48px; }
#bb-feed { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { #bb-feed { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { #bb-feed { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px)  { #bb-feed { grid-template-columns: 1fr; } }

/* ===================== CARD ===================== */
.bb-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.07); display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s; }
.bb-card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,.13); }
.bb-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; background: #e8edf3; }
.bb-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.bb-card:hover .bb-card-img-wrap img { transform: scale(1.04); }
.bb-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e8edf3, #d1d8e2); }
.bb-card-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.bb-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; color: #fff; font: 700 10px 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.bb-card-title { font: 700 14px/1.45 'Montserrat', sans-serif; margin: 0 0 8px; color: #1a2236; flex: 1; }
.bb-card-title a { color: inherit; }
.bb-card-title a:hover { color: #0075c9; }
.bb-card-excerpt { font-size: 12px; color: #777; line-height: 1.6; margin: 0 0 8px; }
.bb-card-meta { font-size: 11px; color: #aaa; margin-top: auto; }

/* ===================== SKELETON LOADER ===================== */
.bb-skel { pointer-events: none; }
.bb-skel-box { background: #e8edf3; aspect-ratio: 16/9; animation: bb-pulse 1.4s ease-in-out infinite; }
.bb-skel-line { height: 12px; background: #e8edf3; border-radius: 6px; margin: 10px 16px 0; animation: bb-pulse 1.4s ease-in-out infinite; }
.bb-skel-line--short { width: 40%; height: 8px; }
@keyframes bb-pulse { 0%,100%{opacity:1} 50%{opacity:.45} }

/* ===================== LOAD MORE ===================== */
#bb-load-more { display: block; margin: 32px auto 0; padding: 14px 48px; background: #0075c9; color: #fff; border: none; border-radius: 30px; font: 700 14px 'Montserrat', sans-serif; cursor: pointer; letter-spacing: .5px; transition: background .2s, transform .15s; box-shadow: 0 3px 12px rgba(0,117,201,.3); }
#bb-load-more:hover { background: #005ba0; transform: translateY(-1px); }

/* ===================== SECTION HEADING ===================== */
.bb-section-heading { font: 700 22px 'Montserrat', sans-serif; color: #1a2236; margin: 0 0 24px; padding-bottom: 12px; border-bottom: 3px solid #0075c9; display: flex; align-items: center; gap: 10px; }
.bb-section-heading::before { content: ''; width: 4px; height: 24px; background: #0075c9; display: inline-block; border-radius: 2px; }

/* ===================== BREAKING NEWS TICKER ===================== */
#bb-ticker { background: #0075c9; color: #fff; padding: 8px 0; overflow: hidden; }
#bb-ticker .bb-ticker-label { background: #c0392b; padding: 0 16px; font: 700 12px 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; margin-right: 0; }
#bb-ticker .bb-ticker-inner { display: flex; align-items: center; gap: 0; }
#bb-ticker .bb-ticker-track { flex: 1; overflow: hidden; }
#bb-ticker .bb-ticker-items { display: flex; gap: 0; animation: bb-ticker 30s linear infinite; white-space: nowrap; }
#bb-ticker .bb-ticker-item { padding: 0 40px 0 0; font-size: 13px; }
#bb-ticker .bb-ticker-item a { color: #fff; }
#bb-ticker .bb-ticker-item a:hover { text-decoration: underline; }
@keyframes bb-ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===================== FOOTER UPGRADE ===================== */
footer { background: linear-gradient(160deg, #1a2236 70%, #0d1526); padding: 40px 0 0; margin-top: 0; }

.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col-title { color: #fff; font: 700 13px 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 14px; padding-bottom: 8px; border-bottom: 2px solid #0075c9; display: inline-block; }

footer .social-icon { margin: 0; padding: 0; display: flex; gap: 10px; list-style: none; }
footer .social-icon li a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; transition: background .2s; }
footer .social-icon li a:hover { background: #0075c9; }

.footerMenu { margin: 0; }
.footerMenuList { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; margin: 0; }
.footerMenuList li a { color: rgba(255,255,255,.7); font: 500 13px 'Montserrat', sans-serif; transition: color .2s, padding-left .2s; }
.footerMenuList li a:hover { color: #fff; padding-left: 4px; }

.footer-bottom-bar { background: rgba(0,0,0,.25); padding: 14px 0; margin-top: 0; }
.footer-bottom-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom-bar p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.footer-bottom-bar a { color: rgba(255,255,255,.5); }
.footer-bottom-bar a:hover { color: #fff; }

/* Legacy footer elements — hidden, replaced by footer-grid */
footer .x { display: none; }
footer .container > ul.social-icon { display: none; }
footer #toTop { display: block; position: fixed; bottom: 20px; right: 20px; width: 40px; height: 40px; background: #0075c9; border-radius: 50%; cursor: pointer; z-index: 999; box-shadow: 0 3px 12px rgba(0,117,201,.4); }
footer #toTop::after { content: '↑'; color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; height: 100%; font-weight: 700; }

/* ===================== LATEST NEWS SECTION (homepage) ===================== */
.bb-latest-news { background: #fff; padding: 44px 0 48px; border-top: 4px solid #0075c9; }
.bb-latest-news .bb-section-heading { margin-bottom: 28px; }
.bb-news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 991px) { .bb-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .bb-news-grid { grid-template-columns: 1fr; } }
.bb-view-all-btn { display: table; margin: 28px auto 0; padding: 12px 36px; background: #0075c9; color: #fff; border-radius: 30px; font: 700 13px 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .5px; transition: background .2s; }
.bb-view-all-btn:hover { background: #005ba0; color: #fff; }

/* ===================== CATEGORY / ARCHIVE PAGE ===================== */
.bb-cat-hero { background: linear-gradient(135deg, #1a2236 0%, var(--accent, #0075c9) 100%); padding: 52px 0 44px; }
.bb-cat-hero-inner { text-align: center; }
.bb-cat-badge { font-size: 12px; padding: 5px 16px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; display: inline-block; }
.bb-cat-title { color: #fff; font: 800 42px/1.2 'Montserrat', sans-serif; margin: 10px 0 12px; }
.bb-cat-desc { color: rgba(255,255,255,.8); font-size: 16px; margin: 0 auto 12px; max-width: 600px; line-height: 1.7; }
.bb-cat-count { display: inline-block; background: rgba(255,255,255,.15); color: #fff; padding: 4px 14px; border-radius: 20px; font: 600 13px 'Montserrat'; }
@media (max-width: 767px) { .bb-cat-title { font-size: 28px; } }
.bb-breadcrumb { background: #f4f6f9; border-bottom: 1px solid #e8edf3; padding: 10px 0; }
.bb-breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #888; }
.bb-breadcrumb a { color: #0075c9; }
.bb-breadcrumb a:hover { text-decoration: underline; }
.bb-bc-sep { color: #ccc; }
.bb-bc-current { color: #444; font-weight: 600; }
.bb-archive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .bb-archive-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .bb-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .bb-archive-grid { grid-template-columns: 1fr; } }
.bb-card-meta-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.bb-card-read-time { font-size: 11px; color: #aaa; }
.bb-archive-pagination { margin: 40px 0 0; text-align: center; }
.bb-archive-pagination .page-numbers { display: inline-flex; list-style: none; padding: 0; gap: 6px; }
.bb-archive-pagination .page-numbers li a,
.bb-archive-pagination .page-numbers li span { display: inline-block; padding: 9px 16px; border-radius: 8px; background: #fff; color: #1a2236; font: 600 13px 'Montserrat'; box-shadow: 0 1px 4px rgba(0,0,0,.1); transition: all .2s; }
.bb-archive-pagination .page-numbers li a:hover,
.bb-archive-pagination .page-numbers li span.current { background: #0075c9; color: #fff; }
/* ===================== HEALTH SPOTLIGHT (redesigned vaccine section) ===================== */
.bb-health-spotlight { background: #f4f6f9; padding: 50px 0; }
.bb-health-card {
  background: linear-gradient(135deg, #0f2a4a 0%, #0075c9 100%);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0,74,143,.25);
  position: relative;
  overflow: hidden;
}
.bb-health-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 70%);
  border-radius: 50%;
}
.bb-health-content { position: relative; z-index: 1; }
.bb-health-title { color: #fff; font: 800 30px/1.4 'Montserrat', sans-serif; margin: 16px 0 14px; }
.bb-health-title span { color: #ffd700; }
.bb-health-desc { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.8; margin: 0 0 24px; }
.bb-health-cta { display: inline-block; background: #ffd700; color: #0f2a4a; font: 700 14px 'Montserrat'; padding: 13px 32px; border-radius: 30px; transition: all .2s; }
.bb-health-cta:hover { background: #fff; color: #0075c9; transform: translateY(-2px); }
.bb-health-diseases { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.bb-disease-pill { background: rgba(255,255,255,.12); backdrop-filter: blur(4px); color: #fff; font: 600 13px 'Montserrat'; padding: 12px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,.15); transition: background .2s, transform .2s; }
.bb-disease-pill:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
@media (max-width: 991px) {
  .bb-health-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .bb-health-title { font-size: 24px; }
}
@media (max-width: 480px) {
  .bb-health-diseases { grid-template-columns: 1fr; }
}

/* ===================== PAGE HERO (Blog / News) ===================== */
.bb-page-hero { background: linear-gradient(135deg, #1a2236 0%, #0075c9 100%); padding: 48px 0 40px; margin-top: 0; }
.bb-page-hero-title { color: #fff; font: 800 36px 'Montserrat', sans-serif; margin: 0 0 8px; }
.bb-page-hero-sub { color: rgba(255,255,255,.75); font-size: 15px; margin: 0; }
@media (max-width: 767px) { .bb-page-hero { padding: 28px 0 20px; } .bb-page-hero-title { font-size: 24px; } }

/* ===================== BLOG LISTING (PHP-rendered cards) ===================== */
.site_content_area { background: #f4f6f9; padding: 32px 0 48px; }
.blog_listing { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 22px !important; }
@media (max-width: 991px) { .blog_listing { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px)  { .blog_listing { grid-template-columns: 1fr !important; } }
.blog_listing .col-md-6, .blog_listing .col-sm-6, .blog_listing .col-xs-12 {
  width: auto !important; float: none !important; padding: 0 !important; margin: 0 !important; }
.sngl_blog_post.minimuheightSIngleblog { min-height: auto !important; height: 100%; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.07); display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s; }
.sngl_blog_post.minimuheightSIngleblog:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,.13); }
.blog_img { overflow: hidden; aspect-ratio: 16/9; background: #e8edf3; flex-shrink: 0; }
.blog_img img, .blog_img .post-thumbnail { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.sngl_blog_post:hover .blog_img img { transform: scale(1.04); }
.blog_content { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.post_title { font: 700 14px/1.5 'Montserrat', sans-serif !important; color: #1a2236; margin-bottom: 10px; display: block; }
.post_title a { color: #1a2236; }
.post_title a:hover { color: #0075c9; }
ul.post_meta { padding: 0; margin: 4px 0 8px; list-style: none; }
ul.post_meta li { font-size: 11px; color: #aaa; }
.post_pagination { grid-column: 1 / -1; text-align: center; padding: 24px 0 0; }
.post_pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border-radius: 6px; background: #fff; color: #1a2236; font: 600 13px 'Montserrat'; box-shadow: 0 1px 4px rgba(0,0,0,.1); transition: all .2s; }
.post_pagination .page-numbers.current, .post_pagination .page-numbers:hover { background: #0075c9; color: #fff; }

/* ===================== BLOG EXPLORE BANNER ===================== */
.banner-bot { background: linear-gradient(135deg, #1a2236 60%, #0075c9); padding: 30px 0; }
.banner-bot h1 { color: #fff; font-size: 22px; }
.banner-bot h1 span { color: #ffd700; }
.banner-bot a.create { background: #ffd700; color: #1a2236; font-weight: 700; border-radius: 30px; padding: 12px 36px; }
.banner-bot a.create:hover { background: #fff; color: #0075c9; }

/* ===================== BLOG DETAIL (single.php) ===================== */
.bb-single-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; background: #1a2236; overflow: hidden; }
.bb-single-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); }
.bb-single-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
.bb-single-hero-body { position: relative; z-index: 1; padding-bottom: 40px; padding-top: 100px; }
.bb-single-title { color: #fff; font: 800 32px/1.3 'Montserrat', sans-serif; margin: 12px 0 14px; text-shadow: 0 2px 8px rgba(0,0,0,.4); max-width: 820px; }
.bb-single-cat { font-size: 11px; padding: 4px 14px; }
.bb-single-meta { color: rgba(255,255,255,.7); font-size: 13px; display: flex; gap: 8px; align-items: center; }
.bb-single-meta-sep { opacity: .4; }
@media (max-width: 767px) { .bb-single-hero { min-height: 280px; } .bb-single-title { font-size: 22px; } }

.bb-single-body { padding: 40px 0 60px; }
.bb-single-content-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 991px) { .bb-single-content-wrap { grid-template-columns: 1fr; } .bb-single-sidebar { display: none; } }

.bb-single-content { background: #fff; border-radius: 12px; padding: 36px 40px; box-shadow: 0 2px 12px rgba(0,0,0,.07); font: 400 16px/1.85 'Montserrat', sans-serif; color: #333; }
.bb-single-content h2, .bb-single-content h3 { color: #1a2236; margin: 28px 0 14px; font-weight: 700; }
.bb-single-content p { margin: 0 0 20px; }
.bb-single-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }
.bb-single-content a { color: #0075c9; }
.bb-single-content iframe { max-width: 100%; width: 100%; aspect-ratio: 16/9; height: auto; }
@media (max-width: 767px) { .bb-single-content { padding: 24px 18px; font-size: 15px; } }

.bb-post-nav { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.bb-post-nav-link { flex: 1; min-width: 200px; background: #f4f6f9; border-radius: 10px; padding: 16px 20px; transition: background .2s; }
.bb-post-nav-link:hover { background: #0075c9; }
.bb-post-nav-link:hover .bb-post-nav-label, .bb-post-nav-link:hover .bb-post-nav-title { color: #fff; }
.bb-post-nav-next { text-align: right; }
.bb-post-nav-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #aaa; margin-bottom: 6px; }
.bb-post-nav-title { display: block; font: 600 13px 'Montserrat'; color: #1a2236; line-height: 1.4; }

.bb-single-sidebar { position: sticky; top: 120px; }
.bb-sidebar-widget { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.07); margin-bottom: 24px; }
.bb-sidebar-title { font: 700 14px 'Montserrat'; text-transform: uppercase; letter-spacing: .8px; color: #1a2236; margin: 0 0 18px; padding-bottom: 10px; border-bottom: 2px solid #0075c9; }
.bb-sidebar-posts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.bb-sidebar-posts li { display: flex; gap: 12px; align-items: center; }
.bb-sidebar-posts li img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.bb-sidebar-posts li a { font: 600 12px/1.45 'Montserrat'; color: #1a2236; }
.bb-sidebar-posts li a:hover { color: #0075c9; }

/* ===================== HOMEPAGE CARD — VISUAL ENHANCEMENTS ===================== */
.bb-trending-tag { position: absolute; top: 10px; right: 10px; background: #e74c3c; color: #fff; font: 700 10px 'Montserrat'; padding: 3px 8px; border-radius: 4px; pointer-events: none; }
.bb-card-img-wrap { position: relative; }
/* First card in grid: spans 2 columns on desktop = featured article */
#bb-feed .bb-card:first-child { grid-column: span 2; flex-direction: row; }
#bb-feed .bb-card:first-child .bb-card-img-wrap { flex: 0 0 55%; aspect-ratio: auto; height: 280px; }
#bb-feed .bb-card:first-child .bb-card-body { padding: 24px 28px; justify-content: center; }
#bb-feed .bb-card:first-child .bb-card-title { font-size: 20px; line-height: 1.4; }
#bb-feed .bb-card:first-child .bb-card-excerpt { font-size: 14px; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 767px) { #bb-feed .bb-card:first-child { grid-column: span 1; flex-direction: column; } #bb-feed .bb-card:first-child .bb-card-img-wrap { height: auto; aspect-ratio: 16/9; } }
