/* =========================================================
   LimoVibes Blog CSS (OLD-SCHOOL SAFE)
   - No CSS variables
   - No grid / gap / 1fr
   - Uses floats + inline-block + margins
   ========================================================= */

/* Base */
.lv-blog-hero,
.lv-blog-wrap,
.lv-blog-main,
.lv-blog-sidebar,
.lv-blog-card,
.lv-sidebox,
.lv-blog-single-card{
  box-sizing: border-box;
}

.lv-blog-hero{
  padding: 46px 0 22px;
  background: #ffffff;
}

.lv-blog-crumbs{
  font-size: 13px;
  color: #6b6b6b;
  margin: 0 0 10px 0;
}
.lv-blog-crumbs a{
  color: #6b6b6b;
  text-decoration: none;
}
.lv-blog-crumbs a:hover{
  color: #0b0b0b;
}
.lv-blog-dot{
  margin: 0 8px;
  opacity: .6;
}

.lv-blog-hero h1{
  font-size: 52px;
  line-height: 1.06;
  margin: 0 0 8px 0;
  color: #0b0b0b;
  font-weight: 800;
}
.lv-blog-hero p{
  margin: 0;
  color: #6b6b6b;
  font-size: 15px;
}

/* Wrapper */
.lv-blog-wrap{
  background: #ffffff;
  padding: 22px 0 70px;
}

/* Layout (floats) */
.lv-blog-layout{
  width: 100%;
  overflow: hidden; /* clearfix */
}

.lv-blog-main{
  float: left;
  width: 70%;
}

.lv-blog-sidebar{
  float: right;
  width: 28%;
}

/* Cards (2-column via inline-block) */
.lv-blog-cards{
  font-size: 0; /* remove inline-block gaps */
}

.lv-blog-card{
  display: inline-block;
  vertical-align: top;
  width: 48%;
  margin: 0 2% 22px 0;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);

  transition: transform .18s ease, box-shadow .18s ease;
  font-size: 16px; /* restore text */
}

.lv-blog-card:nth-child(2n){
  margin-right: 0;
}

.lv-blog-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.lv-blog-card-link{
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2;
}

/* Thumbnail */
.lv-blog-thumb{
  height: 205px;
  background-size: cover;
  background-position: center center;
}

/* Card body */
.lv-blog-card-body{
  padding: 18px 18px 16px;
  position: relative;
  z-index: 3;
}

.lv-blog-meta{
  font-size: 13px;
  color: #6b6b6b;
  margin: 0 0 8px 0;
}
.lv-blog-meta span{
  display: inline-block;
  vertical-align: middle;
}
.lv-blog-cat{
  color: #D4AF37;
  font-weight: 700;
}

.lv-blog-title{
  margin: 0 0 8px 0;
  font-size: 30px;
  line-height: 1.12;
  color: #0b0b0b;
  font-weight: 800;
}

.lv-blog-excerpt{
  margin: 0 0 14px 0;
  color: #525252;
  line-height: 1.55;
}

.lv-blog-readmore{
  font-weight: 800;
  color: #0b0b0b;
}
.lv-blog-readmore span{
  display: inline-block;
  vertical-align: middle;
}
.lv-blog-arrow{
  color: #D4AF37;
  font-weight: 900;
  margin-left: 8px;
}

/* Empty */
.lv-blog-empty{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 22px;
  background: #ffffff;
}

/* Pagination */
.lv-blog-pagination{
  margin-top: 22px;
}
.lv-blog-pagination ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.lv-blog-pagination li{
  display: inline-block;
  margin: 0 10px 10px 0;
}
.lv-blog-pagination a,
.lv-blog-pagination span{
  display: inline-block;
  min-width: 42px;
  height: 42px;
  line-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #ffffff;
  text-decoration: none;
  color: #0b0b0b;
  font-weight: 700;
  text-align: center;
}
.lv-blog-pagination .current{
  background: #0b0b0b;
  color: #ffffff;
  border-color: #0b0b0b;
}
.lv-blog-pagination a:hover{
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* Single */
.lv-blog-hero--single{
  padding-bottom: 8px;
}

.lv-blog-meta--single{
  margin-top: 8px;
}

.lv-blog-single-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.lv-blog-single-thumb{
  background: #0f0f0f;
}

.lv-blog-img{
  width: 100%;
  height: auto;
  display: block;
}

.lv-blog-content{
  padding: 22px 22px 6px;
  color: #1a1a1a;
}

.lv-blog-content p{
  line-height: 1.75;
  color: #2b2b2b;
}

.lv-blog-content h2,
.lv-blog-content h3{
  margin-top: 22px;
  font-weight: 900;
  color: #0b0b0b;
}

.lv-blog-content a{
  color: #0b0b0b;
  text-decoration: underline;
}

.lv-blog-tax{
  padding: 0 22px 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  color: #6b6b6b;
}
.lv-blog-tax-row{
  padding-top: 12px;
}
.lv-blog-tax a{
  color: #0b0b0b;
}
.lv-blog-tax strong{
  color: #0b0b0b;
}

.lv-blog-nav{
  overflow: hidden;
  padding: 16px 22px 22px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.lv-blog-nav-prev{
  float: left;
  width: 48%;
}
.lv-blog-nav-next{
  float: right;
  width: 48%;
  text-align: right;
}
.lv-blog-nav a{
  text-decoration: none;
  font-weight: 900;
  color: #0b0b0b;
}
.lv-blog-nav a:hover{
  color: #D4AF37;
}

/* Sidebar boxes */
.lv-sidebox{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 18px;
  margin-bottom: 18px;
}
.lv-sidebox h3{
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 900;
  color: #0b0b0b;
}

/* Search */
.lv-blog-search{
  overflow: hidden;
}
.lv-blog-search input{
  float: left;
  width: 68%;
  height: 44px;
  line-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  padding: 0 12px;
  outline: none;
}
.lv-blog-search input:focus{
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.lv-blog-search button{
  float: right;
  width: 28%;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: #0b0b0b;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}
.lv-blog-search button:hover{
  background: #121212;
}

/* Recent */
.lv-side-recent-item{
  display: block;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  color: #0b0b0b;
  margin-bottom: 10px;
}
.lv-side-recent-item:hover{
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.lv-side-recent-title{
  font-weight: 900;
  margin-bottom: 4px;
}
.lv-side-recent-date{
  font-size: 12px;
  color: #6b6b6b;
}

/* Categories list */
.lv-side-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.lv-side-list li{
  margin-bottom: 8px;
}
.lv-side-list a{
  display: block;
  text-decoration: none;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  color: #0b0b0b;
  font-weight: 800;
}
.lv-side-list a span{
  float: right;
  color: #6b6b6b;
  font-weight: 700;
}
.lv-side-list a:hover{
  border-color: rgba(212,175,55,.55);
}

/* Tags */
.lv-tagcloud{
  overflow: hidden;
}
.lv-tag{
  display: inline-block;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #ffffff;
  font-weight: 900;
  color: #0b0b0b;
  margin: 0 10px 10px 0;
}
.lv-tag:hover{
  border-color: rgba(212,175,55,.60);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

/* Responsive */
@media (max-width: 992px){
  .lv-blog-main{ float: none; width: 100%; }
  .lv-blog-sidebar{ float: none; width: 100%; }
  .lv-blog-card{ width: 100%; margin-right: 0; }
  .lv-blog-hero h1{ font-size: 42px; }
}

@media (max-width: 640px){
  .lv-blog-hero h1{ font-size: 36px; }
  .lv-blog-search input{ width: 62%; }
  .lv-blog-search button{ width: 34%; }
}
/* =========================================================
   Sidebar Ads Banner (Fioxen-like, Gold/Black)
   NO grid, NO variables, NO gap
   ========================================================= */

.lv-sidebar-ad {
  width: 100%;
  max-width: 310px;
  margin: 0 auto 24px auto;
  background: #0b0b0b;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 12px 28px rgba(11,11,11,0.25);
  overflow: hidden;
}

/* clickable */
.lv-sidebar-ad a {
  display: block;
  text-decoration: none;
}

/* image */
.lv-sidebar-ad img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* subtle hover (premium feel) */
.lv-sidebar-ad:hover {
  box-shadow: 0 16px 36px rgba(11,11,11,0.35);
  border-color: rgba(212,175,55,0.55);
}

/* =========================================================
   BLOG + SINGLE HERO — POLICY IDENTICAL (FINAL & LOCKED)
   Compatible with current index.php & single.php
   NO GRID • NO VARS • SAFE OVERRIDE ONLY
   ========================================================= */

/* -------- HERO WRAPPER -------- */
.lv-blog-hero{
  width:100%;
  background:#fff;
  margin-bottom:40px;
}

/* split layout */
.lv-blog-hero-split{
  display:table;
  width:100%;
  table-layout:fixed;
}

/* left / right cells */
.lv-blog-hero-left,
.lv-blog-hero-right{
  display:table-cell;
  vertical-align:top;
  height:260px;
}

/* -------- LEFT : POLICY GOLD PANEL -------- */
.lv-blog-hero-left{
  width:50%;
  background:
    radial-gradient(circle at 22% 35%, #fff1c7 0%, rgba(255,241,199,0) 52%),
    linear-gradient(135deg,
      #f7d77a 0%,
      #e4bc4b 38%,
      #d4af37 68%,
      #b88717 100%);
}

/* content alignment = POLICY */
.lv-blog-hero-left .container{
  padding-top:55px;
}

/* title */
.lv-blog-hero-left h1{
  margin:0;
  font-size:58px;
  font-weight:900;
  line-height:1.05;
  color:#0b0b0b;
  margin-bottom: 5px;
}

/* subtitle */
.lv-blog-subtitle{
  margin-top:6px;
  font-size:15px;
  font-weight:600;
  color:rgba(0,0,0,.75);
}

/* -------- BREADCRUMB PILL (POLICY MATCH) -------- */
.lv-blog-crumbpill{
  display:inline-flex;
  align-items:center;
  padding:14px 22px;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 14px 35px rgba(0,0,0,.10);
  margin-top:18px;
}

.lv-blog-crumbpill a,
.lv-blog-crumbpill span{
  color:rgba(0,0,0,.78);
  font-weight:700;
  text-decoration:none;
}

.lv-blog-dot{
  margin:0 10px;
  opacity:.6;
}

/* -------- META (SINGLE) -------- */
.lv-blog-meta--single{
  margin-top:10px;
  font-size:13px;
  color:rgba(0,0,0,.7);
}

.lv-blog-cat{
  color:#d4af37;
  font-weight:900;
}

/* -------- RIGHT IMAGE PANEL -------- */
.lv-blog-hero-right{
  width:50%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
}

/* dark overlay */
.lv-blog-hero-right:after{
  content:"";
  position:absolute;
  left:0; top:0; right:0; bottom:0;
  background:rgba(0,0,0,.22);
}

/* -------- SINGLE FEATURED IMAGE -------- */
.lv-blog-single-thumb{
  margin-bottom:26px;
  border-radius:18px;
  overflow:hidden;
}

.lv-blog-single-thumb img{
  width:100%;
  display:block;
}

/* -------- RESPONSIVE (POLICY PARITY) -------- */
@media(max-width:992px){
  .lv-blog-hero-split{
    display:block;
  }

  .lv-blog-hero-left,
  .lv-blog-hero-right{
    display:block;
    width:100%;
    height:auto;
  }

  .lv-blog-hero-right{
    height:220px;
  }

  .lv-blog-hero-left .container{
    padding-top:40px;
    padding-bottom:30px;
  }

  .lv-blog-hero-left h1{
    font-size:42px;
  }
}

@media(max-width:640px){
  .lv-blog-hero-left h1{
    font-size:36px;
  }
}

/* =========================================================
   FIX: MATCH POLICY LEFT OFFSET (BOOTSTRAP ROW FEEL)
   SAFE — NO HTML CHANGE
   ========================================================= */

/* simulate .row + .col padding */
.lv-blog-hero-left .container{
  padding-left:115px;
  padding-right: 15px;
}

/* desktop stronger offset like policy col-lg-8 */
@media (min-width: 992px){
  .lv-blog-hero-left .container{
    padding-left: 115px;   /* 👈 THIS is the magic */
    padding-right: 15px;
  }
}