.cb-benefits {
  --cb-benefits-bg: #fcf8f5;
  --cb-benefits-text: #2f241b;
  --cb-benefits-muted: #6d6257;
  --cb-benefits-accent: #8d6a3d;
  --cb-benefits-item-bg: transparent;

  padding: 0px 20px 72px;
  background: var(--cb-benefits-bg);
  color: var(--cb-benefits-text);
}

.cb-benefits:after{content:""; position:absolute; bottom:0px; left:0px; width:100%; height:40%; background:#d4b1b4; z-index:0;}

.cb-benefits__container {
  margin: 0 auto;
  z-index:1; position:relative;
}

.cb-benefits__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(141, 106, 61, 0.10);
  color: var(--cb-benefits-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cb-benefits__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;  
  font-weight: 800;
  text-align:center;
  color:#000
}

.cb-benefits__description {
  margin-bottom: 30px;
  width:100%;
  text-align:center;
  display:flex; justify-content:center;
}

.cb-benefits__description p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  color: #000;
  text-align:center;
  width:100%;
  font-weight:400;
}

.cb-benefits__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: center;
  border-radius: 32px;
  padding: 77px 33px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  position:relative;
  margin-top:15%;
}

.cb-benefits--image-left .cb-benefits__content {
  order: 2;
}

.cb-benefits--image-left .cb-benefits__media {
  order: 1;
}

.cb-benefits--image-right .cb-benefits__content {
  order: 1;
}

.cb-benefits--image-right .cb-benefits__media {
  order: 2;
}

.cb-benefits__list {
  display: flex;
  flex-direction: column;
  gap:33px;
}

.cb-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-items: center;
}

.cb-benefits__item-icon {
  width: 110px;
  min-width: 110px;
  height: 110px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.cb-benefits__item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cb-benefits__item-body {
  min-width: 0;
}

.cb-benefits__item-title {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
}

.cb-benefits__item-text p {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: #000;
}

.cb-benefits__media {
  min-width: 0;
  position:absolute;
  width:45%;
  right:33px; bottom:66px;
  border-radius:28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.cb-benefits__main-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  
  border: solid 4px #fff;
}

.cb-benefits--theme-dark {
  --cb-benefits-bg: #241b14;
  --cb-benefits-text: #f8f2ea;
  --cb-benefits-muted: #d9cdc1;
  --cb-benefits-accent: #d2a56a;
}

@media (max-width: 991px) {
  .cb-benefits {
    width: 95%;
    margin-left: 2.5%;
  }
  .cb-benefits__container{
    border-radius:32px;
    padding: 56px 16px;
    background: #FDFBF7;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  }

  .cb-benefits__description{margin-bottom:0px;}

  .cb-benefits__box {    
    gap: 30px;
    padding: 0px 11px 0px;
    box-shadow:none;
    display:flex;
    flex-direction:column;
  }

  .cb-benefits__item-icon{width:88px; height:77px; min-width:77px;}
  .cb-benefits__media{ margin-bottom:22px; position:relative; order:1 !important; bottom:unset; top:unset; width:110%; height:450px; right:unset; left:unset; }
  .cb-benefits__main-image{height:100%;}
  .cb-benefits--image-right .cb-benefits__content{order:2;}
  

  .cb-benefits__item-title {
    font-size: 20px;
  }

  .cb-benefits__description p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 767px) {
  .cb-benefits__media{ margin-bottom:22px; position:relative; order:1 !important; bottom:unset; top:unset; width:130%; height:250px; right:unset; left:unset; }
}