.bl-page{
    background:#fff;
  }

  .bl-hero .c2-hero-media{
    background-position:center center;
    background-size:cover;
  }

  .bl-section{
    padding:34px 0 85px;
    background:#fff;
  }

  .bl-featured{
    margin-bottom:28px;
  }

  .bl-featured__card{
    display:grid;
    grid-template-columns: 1.02fr .98fr;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(185,145,47,.10);
    box-shadow:
      0 8px 20px rgba(16,24,40,.04),
      0 20px 42px rgba(16,24,40,.05);
    min-height:390px;
  }

  .bl-featured__media{
    position:relative;
    display:block;
    min-height:100%;
    overflow:hidden;
    background:#ece4d5;
  }

  .bl-featured__media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.12) 100%);
    pointer-events:none;
  }

  .bl-featured__media img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .4s ease;
  }

  .bl-featured__card:hover .bl-featured__media img{
    transform:scale(1.03);
  }

  .bl-featured__media--ph{
    width:100%;
    height:100%;
    min-height:390px;
    background:linear-gradient(135deg, #ddd3c2 0%, #efe9dd 50%, #d9cfbe 100%);
  }

  .bl-featured__content{
    position:relative;
    padding:30px 30px 26px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .bl-featured__content::before{
    content:"";
    position:absolute;
    left:30px;
    top:0;
    width:68px;
    height:4px;
    background:linear-gradient(90deg, #8d6d2f 0%, #c8a75b 50%, #8d6d2f 100%);
    border-radius:999px;
  }

  .bl-featured__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:14px;
  }

  .bl-featured__label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:10px;
    padding:7px 10px;
    border-radius:999px;
    background:linear-gradient(180deg, #fbf7ed 0%, #f4ebd6 100%);
    color:#8d6d2f;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    border:1px solid rgba(185,145,47,.16);
  }

  .bl-featured__date{
    font-size:11px;
    letter-spacing:.09em;
    text-transform:uppercase;
    color:#8b7850;
    font-weight:700;
  }

  .bl-featured__title{
    font-size: 30px;
    line-height: 1.5;
    margin: 0;
    color: #111;
    font-weight: 500;
   
  
  }

  .bl-featured__title a{
    text-decoration:none;
    color:inherit;
  }

  .bl-featured__title a:hover{
    color:#9f7b2f;
  }

  .bl-featured__excerpt{
    font-size:15px;
    line-height:1.85;
    color:#555;
    margin:0 0 22px;
    max-width:100%;
  }

  .bl-featured__actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-top:auto;
    padding-top:16px;
    border-top:1px solid rgba(0,0,0,.06);
  }

  .bl-featured__link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-weight:700;
    color:#111;
    text-decoration:none;
  }

  .bl-featured__link:hover{
    color:#9f7b2f;
  }

  .bl-featured__arrow{
    color:#b8912f;
    font-size:18px;
    line-height:1;
  }

  .bl-featured__mini{
    font-size:12px;
    color:#7f7f7f;
  }

  .bl-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:26px;
  }

  .bl-card{
    position:relative;
    background:#fff;
    border:1px solid rgba(185,145,47,.10);
    border-radius:22px;
    overflow:hidden;
    box-shadow:
      0 8px 20px rgba(16,24,40,.04),
      0 18px 38px rgba(16,24,40,.05);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    display:flex;
    flex-direction:column;
    height:100%;
  }

  .bl-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:4px;
    background:linear-gradient(90deg, #8d6d2f 0%, #c8a75b 50%, #8d6d2f 100%);
    z-index:2;
    opacity:.92;
  }

  .bl-card:hover{
    transform:translateY(-5px);
    border-color:rgba(185,145,47,.18);
    box-shadow:
      0 14px 30px rgba(16,24,40,.07),
      0 24px 48px rgba(16,24,40,.08);
  }

  .bl-card__media{
    position:relative;
    display:block;
    overflow:hidden;
    background:#e7dece;
  }

  .bl-card__media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.12) 100%);
    pointer-events:none;
  }

  .bl-card__media img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
  }

  .bl-card:hover .bl-card__media img{
    transform:scale(1.04);
  }

  .bl-card__media--ph{
    height:210px;
    background:linear-gradient(135deg, #ddd3c2 0%, #efe9dd 50%, #d9cfbe 100%);
  }

  .bl-card__body{
    padding:22px 22px 20px;
    display:flex;
    flex-direction:column;
    flex:1;
  }

  .bl-card__meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:13px;
  }

  .bl-card__date{
    font-size:11px;
    letter-spacing:.09em;
    text-transform:uppercase;
    color:#8b7850;
    font-weight:700;
  }

  .bl-card__badge{
    font-size:10px;
    padding:7px 9px;
    border-radius:999px;
    background:#f6f1e7;
    color:#8d6d2f;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
  }

  .bl-card__title{
    font-size:22px;
    line-height:1.3;
    margin:0 0 12px;
    font-weight:700;
    letter-spacing:-0.01em;
  }

  .bl-card__title a{
    color:#121212;
    text-decoration:none;
  }

  .bl-card__title a:hover{
    color:#9f7b2f;
  }

  .bl-card__excerpt{
    color:#555;
    font-size:14px;
    line-height:1.8;
    margin:0 0 18px;
  }

  .bl-card__foot{
    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding-top:14px;
    border-top:1px solid rgba(0,0,0,.06);
  }

  .bl-card__link{
    color:#111;
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:8px;
  }

  .bl-card__link:hover{
    color:#9f7b2f;
  }

  .bl-card__arrow{
    color:#b8912f;
    font-size:18px;
    line-height:1;
  }

  .bl-card__mini{
    font-size:11px;
    color:#8a8a8a;
    white-space:nowrap;
  }

  .bl-empty{
    background:#fff;
    border-radius:24px;
    padding:56px 26px;
    text-align:center;
    border:1px solid rgba(185,145,47,.10);
    box-shadow:
      0 8px 20px rgba(16,24,40,.04),
      0 18px 38px rgba(16,24,40,.05);
  }

  .bl-empty h3{
    margin:0 0 10px;
    font-size:30px;
    color:#101010;
  }

  .bl-empty p{
    margin:0;
    color:#666;
    line-height:1.8;
    font-size:15px;
  }

  .bl-paginate{
    margin-top:40px;
    display:flex;
    justify-content:center;
  }

  @media (max-width: 1199px){
    .bl-featured__card{
      grid-template-columns:1fr;
    }

    .bl-featured__media,
    .bl-featured__media--ph{
      min-height:300px;
      height:300px;
    }

    .bl-grid{
      grid-template-columns:repeat(2, minmax(0,1fr));
    }
  }

  @media (max-width: 767px){
    .bl-section{
      padding:24px 0 70px;
    }

    .bl-featured{
      margin-bottom:22px;
    }

    .bl-featured__media,
    .bl-featured__media--ph{
      min-height:220px;
      height:220px;
    }

    .bl-featured__content{
      padding:22px 18px 20px;
    }

    .bl-featured__content::before{
      left:18px;
      width:54px;
    }

    .bl-featured__title{
      font-size:26px;
    }

    .bl-featured__excerpt{
      font-size:14px;
      line-height:1.8;
    }

    .bl-featured__actions{
      flex-wrap:wrap;
      align-items:flex-start;
    }

    .bl-grid{
      grid-template-columns:1fr;
      gap:22px;
    }

    .bl-card__media img,
    .bl-card__media--ph{
      height:210px;
    }

    .bl-card__body{
      padding:20px 18px 18px;
    }

    .bl-card__title{
      font-size:21px;
    }

    .bl-card__excerpt{
      font-size:14px;
      line-height:1.75;
    }

    .bl-card__foot{
      flex-wrap:wrap;
      align-items:flex-start;
    }

    .bl-card__mini{
      white-space:normal;
    }
  }




/* BLOGS DETAIL PAGE */


  .bsd-page{
    background:#fff;
  }

  .bsd-hero .c2-hero-media{
    background-position:center center;
    background-size:cover;
  }

  .bsd-sticky-note{
    font-size:13px;
    color:#5a5a5a;
    font-weight:600;
  }

  .bsd-wrap{
    padding:34px 0 90px;
    background:#fff;
  }

  .bsd-grid{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 335px;
    gap:46px;
    align-items:start;
  }

  .bsd-main{
    min-width:0;
  }

  .bsd-cover{
    margin-bottom:30px;
  }

  .bsd-cover img{
    width:100%;
    display:block;
    max-height:540px;
    object-fit:cover;
    border-radius:0;
    box-shadow:none;
  }

  .bsd-article{
    padding:0;
    background:transparent;
    border:none;
    box-shadow:none;
  }

  .bsd-topmeta{
    display:flex;
    flex-wrap:wrap;
    gap:10px 14px;
    align-items:center;
    margin-bottom:14px;
  }

  .bsd-date{
    font-size:11px;
    letter-spacing:.10em;
    text-transform:uppercase;
    color:#8d6d2f;
    font-weight:700;
  }

  .bsd-chip{
    display:inline-flex;
    align-items:center;
    padding:7px 11px;
    border-radius:999px;
    background:#f6f1e7;
    color:#8d6d2f;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-weight:700;
    border:1px solid rgba(185,145,47,.14);
  }

  .bsd-title{
    font-size: 30px;
    line-height: 1.5;
    margin: 0;
    color: #111;
    font-weight: 500;
   
  }



  .bsd-intro{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin:0 0 26px;
    max-width:92%;
  }

  .bsd-content{
    font-size:16px;
    line-height:1.95;
    color:#333;
  }

  .bsd-content h2,
  .bsd-content h3,
  .bsd-content h4{
    color:#111;
    line-height:1.28;
    margin-top:30px;
    margin-bottom:14px;
    font-weight:700;
    letter-spacing:-0.01em;
  }

  .bsd-content h2{font-size:30px;}
  .bsd-content h3{font-size:24px;}
  .bsd-content h4{font-size:20px;}

  .bsd-content p{
    margin:0 0 18px;
  }

  .bsd-content ul,
  .bsd-content ol{
    margin:0 0 22px 22px;
  }

  .bsd-content li{
    margin-bottom:8px;
  }

  .bsd-content a{
    color:#9f7b2f;
    text-decoration:none;
    font-weight:600;
  }

  .bsd-content a:hover{
    color:#7b5d20;
  }

  .bsd-divider{
    margin:34px 0 0;
    padding-top:26px;
    border-top:1px solid rgba(0,0,0,.08);
  }

  .bsd-bottom-grid{
    display:grid;
    grid-template-columns:1fr auto;
    gap:22px;
    align-items:end;
  }

  .bsd-section-title{
    font-size:18px;
    line-height:1.2;
    color:#111;
    margin:0 0 14px;
    font-weight:700;
  }

  .bsd-keywords{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }

  .bsd-keyword{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    background:#faf7f0;
    color:#8d6d2f;
    border:1px solid rgba(185,145,47,.14);
    font-size:12px;
    line-height:1;
    font-weight:600;
  }

  .bsd-share-wrap{
    text-align:right;
  }

  .bsd-share{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:flex-end;
  }

  .bsd-share a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    color:#111;
    transition:all .2s ease;
    box-shadow:0 4px 12px rgba(16,24,40,.04);
  }

  .bsd-share a:hover{
    transform:translateY(-2px);
    border-color:rgba(185,145,47,.35);
    color:#8d6d2f;
  }

  .bsd-share svg{
    width:18px;
    height:18px;
    fill:currentColor;
  }

  .bsd-back-row{
    margin-top:22px;
    display:flex;
    justify-content:flex-start;
  }

  .bsd-back{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#111;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    padding:11px 16px;
    border-radius:999px;
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
    transition:all .2s ease;
  }

  .bsd-back:hover{
    color:#9f7b2f;
    border-color:rgba(185,145,47,.28);
  }

  .bsd-side{
    position:sticky;
    top:120px;
  }

  .bsd-sidecard{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(185,145,47,.10);
    box-shadow:
      0 10px 24px rgba(16,24,40,.04),
      0 20px 42px rgba(16,24,40,.05);
  }

  .bsd-sidehead{
    padding:20px 20px 14px;
    border-bottom:1px solid rgba(0,0,0,.06);
    background:linear-gradient(180deg, #fff 0%, #fcfaf5 100%);
  }

  .bsd-sidehead h3{
    margin:0;
    font-size:21px;
    line-height:1.2;
    color:#111;
    font-weight:700;
  }

  .bsd-sidehead p{
    margin:8px 0 0;
    font-size:13px;
    line-height:1.7;
    color:#666;
  }

  .bsd-sidebody{
    max-height:900px;
    overflow:auto;
    padding:6px 0;
  }

  .bsd-sidebody::-webkit-scrollbar{
    width:8px;
  }

  .bsd-sidebody::-webkit-scrollbar-thumb{
    background:rgba(141,109,47,.25);
    border-radius:999px;
  }

  .bsd-sideitem{
    display:flex;
    gap:12px;
    padding:14px 18px;
    text-decoration:none;
    border-bottom:1px solid rgba(0,0,0,.06);
    transition:background .2s ease;
  }

  .bsd-sideitem:last-child{
    border-bottom:none;
  }

  .bsd-sideitem:hover{
    background:#fcfaf5;
  }

  .bsd-side-thumb{
    width:82px;
    min-width:82px;
    height:66px;
    overflow:hidden;
    background:linear-gradient(135deg, #ddd3c2 0%, #efe9dd 50%, #d9cfbe 100%);
    box-shadow:0 4px 12px rgba(16,24,40,.05);
  }

  .bsd-side-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .bsd-sidecontent{
    min-width:0;
    flex:1;
  }

  .bsd-side-date{
    display:block;
    font-size:10px;
    line-height:1;
    letter-spacing:.09em;
    text-transform:uppercase;
    color:#8b7850;
    font-weight:700;
    margin-bottom:8px;
  }

  .bsd-side-title{
    display:block;
    font-size:14px;
    line-height:1.5;
    color:#111;
    font-weight:700;
    transition:color .2s ease;
  }

  .bsd-sideitem:hover .bsd-side-title{
    color:#9f7b2f;
  }

  .bsd-sidefoot{
    padding:16px 18px 18px;
    border-top:1px solid rgba(0,0,0,.06);
    background:#fff;
  }

  .bsd-sidefoot a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#111;
    text-decoration:none;
    font-weight:700;
    font-size:13px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid rgba(0,0,0,.08);
    transition:all .2s ease;
  }

  .bsd-sidefoot a:hover{
    color:#9f7b2f;
    border-color:rgba(185,145,47,.28);
  }

  @media (max-width: 991px){
    .bsd-grid{
      grid-template-columns:1fr;
      gap:28px;
    }

    .bsd-side{
      position:static;
    }

    .bsd-sidebody{
      max-height:none;
    }

    .bsd-bottom-grid{
      grid-template-columns:1fr;
      align-items:start;
    }

    .bsd-share-wrap{
      text-align:left;
    }

    .bsd-share{
      justify-content:flex-start;
    }
  }

  @media (max-width: 767px){
    .bsd-wrap{
      padding:24px 0 70px;
    }

    .bsd-cover{
      margin-bottom:22px;
    }

    .bsd-title{
      font-size:30px;
      max-width:100%;
    }

    .bsd-intro{
      font-size:15px;
      line-height:1.8;
      max-width:100%;
    }

    .bsd-content{
      font-size:15px;
      line-height:1.85;
    }

    .bsd-content h2{font-size:26px;}
    .bsd-content h3{font-size:22px;}
    .bsd-content h4{font-size:19px;}

    .bsd-sidehead{
      padding:18px 18px 14px;
    }

    .bsd-sideitem{
      padding:14px 16px;
    }

    .bsd-side-thumb{
      width:72px;
      min-width:72px;
      height:60px;
    }
  }
  .bsd-sidefollow{
  padding:16px 18px 18px;
  border-top:1px solid rgba(0,0,0,.06);
  background:#fff;
}

.bsd-sidefollow__head{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}

.bsd-sidefollow__logo{
  width:18px;
  height:auto;
  opacity:.9;
}

.bsd-sidefollow__head span{
  font-size:13px;
  font-weight:600;
  color:#111;
}

.bsd-sidefollow .form-preview{
  background:transparent !important;
  padding:0 !important;
  border:0 !important;
  box-shadow:none !important;
  margin:0 !important;
}

.bsd-sidefollow .preview-heading{
  display:none !important;
}

.bsd-sidefollow .preview-input-field{
  width:100% !important;
  margin-top:0 !important;
}

.bsd-sidefollow .preview-input-field input{
  width:100% !important;
  height:40px !important;
  border-radius:10px !important;
  border:1px solid rgba(0,0,0,.10) !important;
  background:#fff !important;
  color:#111 !important;
  font-size:13px !important;
  padding:0 12px !important;
  text-align:left !important;
  outline:none !important;
}

.bsd-sidefollow .preview-input-field input::placeholder{
  color:#777 !important;
  opacity:1 !important;
}

.bsd-sidefollow .preview-submit-button{
  margin-top:8px !important;
  width:100% !important;
}

.bsd-sidefollow .preview-submit-button button{
  width:100% !important;
  height:40px !important;
  border:0 !important;
  border-radius:10px !important;
  background:#111 !important;
  color:#fff !important;
  font-size:13px !important;
  font-weight:700 !important;
  transition:all .2s ease !important;
}

.bsd-sidefollow .preview-submit-button button:hover{
  background:#8d6d2f !important;
  cursor:pointer !important;
}

.bsd-sidefollow .powered-by-line{
  display:none !important;
}
