:root{
  --bd-green:#2f8737;
  --bd-green-dark:#0b5d31;
  --bd-green-deep:#07502a;
  --bd-soft:#eef7e9;
  --bd-text:#172019;
  --bd-muted:#5d6961;
  --bd-line:#dfe9dc;
  --bd-border:rgba(53,99,56,.14);
}

.bd-page{
  font-family:"DM Sans",sans-serif;
  background:#fff;
  color:var(--bd-text);
  padding-bottom:55px;
}

/* HERO - SAME PREMIUM LIGHT STYLE AS BLOG PAGE */
.bd-hero{
  position:relative;
  min-height:360px;
  overflow:hidden;
  background:#f4faef;
}

.bd-hero>img{
  position:absolute;
  inset:0 0 0 auto;
  width:54%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:1;
}

.bd-hero__overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(90deg, rgba(245, 250, 238, 1) 0%, rgba(245, 250, 238, .99) 42%, rgb(245 250 238) 50%, rgb(245 250 238 / 73%) 63%, rgb(245 250 238 / 22%) 76%);
}

.bd-hero::before{
  content:"";
  position:absolute;
  z-index:3;
  left:45%;
  top:-120px;
  width:245px;
  height:600px;
  background:#f4faef;
  border-radius:0 0 75% 0;
  transform:rotate(12deg);
  box-shadow:
    18px 0 0 #0b5d31,
    25px 0 0 #83c358;
  pointer-events:none;
}

.bd-hero::after{
  content:"";
  position:absolute;
  z-index:3;
  left:31%;
  top:95px;
  width:90px;
  height:70px;
  background-image:
    radial-gradient(#0b5d31 1.4px, transparent 1.5px);
  background-size:13px 13px;
  opacity:.6;
}

.bd-hero__content{
  position:relative;
  z-index:5;
  width:min(1420px,calc(100% - 44px));
  margin:0 auto;
  padding-top:100px;
  color:#162319;
}

.bd-kicker{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  margin-bottom:18px;
  padding:0 14px 0 37px;
  border:1px solid #d4e5cf;
  border-radius:999px;
  background:
    radial-gradient(
      circle at 18px 50%,
      #0b5d31 0 5px,
      transparent 6px
    ),
    rgba(255,255,255,.75);
  color:#0b5d31;
  font-size:12px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
  box-shadow:0 7px 20px rgba(33,78,37,.06);
}

.bd-hero h1{
  margin:0;
  color:#0b5d31;
  font-size:56px;
  line-height:1;
  letter-spacing:-1.8px;
  font-weight:700;
}

.bd-hero h1::after{
  content:"";
  display:block;
  width:52px;
  height:3px;
  margin-top:18px;
  border-radius:10px;
  background:linear-gradient(90deg,#0b5d31,#80bc58);
}

.bd-breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-top:20px;
  font-size:13px;
}

.bd-breadcrumb a{
  color:#34443a;
  font-weight:600;
  text-decoration:none;
}

.bd-breadcrumb a:hover{
  color:#0b5d31;
}

.bd-breadcrumb i{
  color:#7e9184;
  font-size:10px;
}

.bd-breadcrumb span{
  color:#0b5d31;
  font-weight:700;
}

/* HERO RESPONSIVE */
@media(max-width:1000px){
  .bd-hero{
    min-height:340px;
  }

  .bd-hero>img{
    width:58%;
  }

  .bd-hero::before{
    left:47%;
    width:210px;
  }

  .bd-hero::after{
    left:33%;
  }

  .bd-hero h1{
    font-size:48px;
  }
}

@media(max-width:700px){
  .bd-hero{
    min-height:350px;
  }

  .bd-hero>img{
    width:100%;
    height:100%;
    opacity:.27;
    object-position:center;
  }

  .bd-hero__overlay{
    background:
      linear-gradient(
        180deg,
        rgba(246,251,240,.99) 0%,
        rgba(246,251,240,.97) 58%,
        rgba(246,251,240,.83) 100%
      );
  }

  .bd-hero::before{
    display:none;
  }

  .bd-hero::after{
    left:auto;
    right:25px;
    top:70px;
  }

  .bd-hero__content{
    width:calc(100% - 28px);
    padding-top:85px;
  }

  .bd-hero h1{
    font-size:44px;
  }
}

@media(max-width:480px){
  .bd-hero{
    min-height:320px;
  }

  .bd-hero__content{
    padding-top:100px;
  }

  .bd-kicker{
    min-height:30px;
    padding:0 11px 0 33px;
    font-size:10px;
  }

  .bd-hero h1{
    font-size:38px;
  }

  .bd-breadcrumb{
    margin-top:16px;
    font-size:12px;
  }
}


/* LAYOUT */
.bd-layout{
  width:min(1240px,calc(100% - 44px));
  margin:8px auto 0;
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:28px;
  align-items:start;
}

.bd-article{
  min-width:0;
}

.bd-category{
  display:inline-flex;
  min-height:28px;
  align-items:center;
  padding:0 11px;
  border-radius:999px;
  background:#eef7e9;
  color:#1d7134;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
}

.bd-article>h2{
  max-width:820px;
  margin:14px 0 0;
  color:#173d24;
  font-size:37px;
  line-height:1.13;
  font-weight:700;
}

.bd-meta-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  margin-top:16px;
  padding-bottom:14px;
  border-bottom:1px solid #e4ebe1;
}

.bd-meta,
.bd-share{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}

.bd-meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#778179;
  font-size:11px;
}

.bd-share>span{
  color:#7d887f;
  font-size:11px;
}

.bd-share a{
  width:29px;
  height:29px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#eef7e9;
  color:#176c32;
  font-size:11px;
  text-decoration:none;
}

.bd-main-image{
  width:100%;
  height:420px;
  margin-top:18px;
  border-radius:15px;
  object-fit:cover;
}

.bd-copy{
  margin-top:20px;
}

.bd-copy p,
.bd-copy li{
  color:#566259;
  font-size:14px;
  line-height:1.72;
}

.bd-copy p{
  margin:0 0 14px;
}

.bd-copy h3{
  margin:24px 0 9px;
  color:#164d29;
  font-size:21px;
  line-height:1.3;
  font-weight:700;
}

.bd-copy h3 i{
  margin-right:7px;
  color:#2f8737;
  font-size:17px;
}

.bd-content-image{
  width:100%;
  height:360px;
  margin:18px 0 2px;
  border-radius:14px;
  object-fit:cover;
}

/* FAQ */
.bd-faq{
  margin-top:28px;
}

.bd-faq>h3{
  margin:0 0 12px;
  color:#164d29;
  font-size:23px;
  font-weight:700;
}

.bd-faq-item{
  overflow:hidden;
  margin-bottom:9px;
  border:1px solid #dfe8dc;
  border-radius:8px;
  background:#fff;
}

.bd-faq-item button{
  width:100%;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  padding:0 15px;
  border:0;
  background:#fff;
  color:#26332a;
  font:600 13px/1.3 "DM Sans",sans-serif;
  text-align:left;
  cursor:pointer;
}

.bd-faq-item button i{
  color:#177138;
  transition:transform .2s ease;
}

.bd-faq-item.active button i{
  transform:rotate(45deg);
}

.bd-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.bd-faq-answer p{
  margin:0;
  padding:0 15px 15px;
  color:#657068;
  font-size:13px;
  line-height:1.6;
}

/* SIDEBAR */
.bd-sidebar{
  position:sticky;
  top:105px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.bd-search-card,
.bd-side-card,
.bd-expert-card{
  border:1px solid var(--bd-border);
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 24px rgba(39,74,41,.04);
}

.bd-search-card{
  display:grid;
  grid-template-columns:1fr 44px;
  overflow:hidden;
}

.bd-search-card input{
  min-height:48px;
  padding:0 13px;
  border:0;
  outline:0;
  color:#424e46;
  font:500 12px/1 "DM Sans",sans-serif;
}

.bd-search-card button{
  border:0;
  background:#0b5d31;
  color:#fff;
}

.bd-side-card{
  padding:17px;
}

.bd-side-card>h3{
  margin:0 0 14px;
  color:#164d29;
  font-size:18px;
  font-weight:700;
}

.bd-recent{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:10px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid #e9eee7;
  text-decoration:none;
}

.bd-recent:last-child{
  border-bottom:0;
}

.bd-recent img{
  width:72px;
  height:62px;
  border-radius:7px;
  object-fit:cover;
}

.bd-recent strong{
  display:block;
  color:#28332b;
  font-size:11px;
  line-height:1.35;
}

.bd-recent span{
  display:block;
  margin-top:5px;
  color:#8a938d;
  font-size:9px;
}

.bd-expert-card{
  padding:22px;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 90% 85%,rgba(178,224,142,.22),transparent 28%),
    linear-gradient(145deg,#07542d,#0d6c37);
}

.bd-expert-card>span{
  color:#c1e698;
  font-size:12px;
  font-weight:700;
}

.bd-expert-card h3{
  margin:8px 0 0;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
}

.bd-expert-card p{
  margin:9px 0 0;
  color:rgba(255,255,255,.84);
  font-size:12px;
  line-height:1.55;
}

.bd-expert-card a{
  min-height:40px;
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 13px;
  border-radius:7px;
  background:#fff;
  color:#145b2e;
  font-size:11px;
  font-weight:700;
  text-decoration:none;
}

.bd-category-list{
  display:flex;
  flex-direction:column;
}

.bd-category-list a{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #edf1eb;
  color:#526057;
  font-size:12px;
  text-decoration:none;
}

.bd-category-list a:last-child{
  border-bottom:0;
}

.bd-category-list b{
  min-width:27px;
  min-height:22px;
  display:grid;
  place-items:center;
  border-radius:5px;
  background:#eef7e9;
  color:#24733a;
  font-size:10px;
}

.bd-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.bd-tags a{
  padding:7px 10px;
  border-radius:6px;
  background:#eef7e9;
  color:#35603e;
  font-size:10px;
  font-weight:600;
  text-decoration:none;
}

/* CTA */
.bd-cta{
  width:min(1240px,calc(100% - 44px));
  margin:34px auto 0;
  min-height:145px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:26px 32px;
  border-radius:18px;
  background:linear-gradient(110deg,#07542d,#0d6a34);
  color:#fff;
}

.bd-cta span{
  color:#c2e89c;
  font-size:12px;
  font-weight:700;
}

.bd-cta h2{
  max-width:680px;
  margin:5px 0 0;
  font-size:27px;
  line-height:1.2;
  font-weight:700;
}

.bd-cta a{
  min-width:175px;
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius:9px;
  background:#fff;
  color:#145b2e;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .bd-layout{
    grid-template-columns:1fr;
  }

  .bd-sidebar{
    position:relative;
    top:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){

  .bd-layout,
  .bd-cta{
    width:calc(100% - 20px);
  }

  .bd-article>h2{
    font-size:30px;
  }

  .bd-meta-row{
    align-items:flex-start;
    flex-direction:column;
  }

  .bd-main-image{
    height:310px;
  }

  .bd-content-image{
    height:280px;
  }

  .bd-sidebar{
    grid-template-columns:1fr;
  }

  .bd-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:480px){
  .bd-article>h2{
    font-size:26px;
  }

  .bd-main-image,
  .bd-content-image{
    height:230px;
  }

  .bd-copy h3{
    font-size:19px;
  }

  .bd-copy p,
  .bd-copy li{
    font-size:13px;
  }

  .bd-cta{
    padding:22px 18px;
  }

  .bd-cta h2{
    font-size:23px;
  }

  .bd-cta a{
    width:100%;
  }
}
