

.vpblog{
  font-size:16px;
  line-height:1.75;
  color:#2b2b2b;
  max-width:1120px;
  margin:0 auto;
}

.vpblog *{
  box-sizing:border-box;
}

.vpblog p{
  margin:0 0 18px;
}

.vpblog a{
  color:#7a4f1e;
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid rgba(122,79,30,.25);
}

.vpblog a:hover{
  color:#111;
  border-bottom-color:#111;
}

/* HERO */
.vpblog-hero{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  padding:42px 36px;
  margin:25px 0 38px;
  background:
    radial-gradient(circle at 90% 10%, rgba(199,169,123,.32), transparent 32%),
    linear-gradient(135deg,#fff8ee 0%,#eef3ff 55%,#f7f7f7 100%);
  border:1px solid #eadfcd;
  box-shadow:0 18px 45px rgba(34,22,10,.10);
}

.vpblog-hero:before{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(138,98,48,.12);
}

.vpblog-hero h1{
  position:relative;
  font-size:44px;
  line-height:1.1;
  margin:14px 0 18px;
  font-weight:900;
  color:#111;
  letter-spacing:-1px;
}

.vpblog-lead{
  position:relative;
  max-width:900px;
  font-size:20px;
  line-height:1.65;
  color:#3b3b3b;
}

/* CHIPS */
.vpblog-chips{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}

.vpblog-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 13px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:13px;
  font-weight:800;
  box-shadow:0 6px 15px rgba(0,0,0,.10);
}

.vpblog-chip.is-soft{
  background:#fff;
  color:#2a2a2a;
  border:1px solid #e4ded5;
}

.vpblog-chip.is-green{
  background:#eef8ef;
  color:#236b2d;
  border:1px solid #cfe8d2;
}

.vpblog-chip.is-blue{
  background:#eef5ff;
  color:#245b9c;
  border:1px solid #d5e6fb;
}

.vpblog-chip.is-brown{
  background:#f5ecdf;
  color:#7a4f1e;
  border:1px solid #e2cfb6;
}

/* CARDS */
.vpblog-card{
  position:relative;
  background:#fff;
  border:1px solid #ececec;
  border-radius:28px;
  padding:32px;
  margin:28px 0;
  box-shadow:0 12px 34px rgba(0,0,0,.065);
  overflow:hidden;
}

.vpblog-card:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:7px;
  height:100%;
  background:linear-gradient(180deg,#c7a97b,#8a6230);
}

.vpblog-card h2,
.vpblog-card h3,
.vpblog-card h4,
.vpblog-card h5{
  color:#111;
  line-height:1.3;
}

.vpblog-card h2{
  font-size:30px;
  margin:0 0 18px;
  font-weight:900;
}

.vpblog-card h3{
  font-size:26px;
  margin:0 0 18px;
  font-weight:900;
}

.vpblog-card h4{
  font-size:22px;
  margin:24px 0 12px;
  font-weight:900;
}

.vpblog-card h5{
  font-size:18px;
  margin:20px 0 10px;
  font-weight:900;
}

/* CARD VARIANTS */
.vpblog-card.is-blue{
  background:linear-gradient(135deg,#f7fbff,#fff);
  border-color:#dbeaff;
}

.vpblog-card.is-green{
  background:linear-gradient(135deg,#f6fff7,#fff);
  border-color:#dceedd;
}

.vpblog-card.is-dark{
  background:linear-gradient(135deg,#111,#2d2d2d);
  color:#fff;
  border:none;
}

.vpblog-card.is-dark h2,
.vpblog-card.is-dark h3,
.vpblog-card.is-dark h4,
.vpblog-card.is-dark p,
.vpblog-card.is-dark li{
  color:#fff;
}

/* GRID */
.vpblog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:18px;
  margin:24px 0;
}

.vpblog-mini{
  background:#f8fafc;
  border:1px solid #e8edf3;
  border-radius:22px;
  padding:22px;
  box-shadow:0 8px 22px rgba(0,0,0,.045);
  transition:transform .25s ease, box-shadow .25s ease;
}

.vpblog-mini:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.075);
}

.vpblog-mini i{
  font-size:24px;
  color:#8a6230;
  margin-bottom:12px;
}

.vpblog-mini h4{
  margin:0 0 10px;
  font-size:20px;
}

/* INFO BOXES */
.vpblog-note{
  background:#fff8ec;
  border:1px solid #ead8bd;
  border-left:6px solid #8a6230;
  border-radius:18px;
  padding:21px 23px;
  margin:24px 0;
  box-shadow:0 8px 22px rgba(138,98,48,.08);
}

.vpblog-note i{
  color:#8a6230;
  margin-right:6px;
}

.vpblog-alert{
  background:#eef5ff;
  border:1px solid #d5e6fb;
  border-left:6px solid #245b9c;
  border-radius:18px;
  padding:21px 23px;
  margin:24px 0;
}

.vpblog-eco{
  background:#f2fbf3;
  border:1px solid #d8ecd9;
  border-left:6px solid #2f7d37;
  border-radius:18px;
  padding:21px 23px;
  margin:24px 0;
}

/* TIMELINE */
.vpblog-timeline{
  position:relative;
  margin:28px 0;
  padding-left:24px;
}

.vpblog-timeline:before{
  content:"";
  position:absolute;
  left:6px;
  top:0;
  width:3px;
  height:100%;
  background:linear-gradient(#c7a97b,#8a6230);
  border-radius:8px;
}

.vpblog-step{
  position:relative;
  background:#fff;
  border:1px solid #ececec;
  border-radius:18px;
  padding:18px 20px;
  margin:0 0 16px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.vpblog-step:before{
  content:"";
  position:absolute;
  left:-25px;
  top:22px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#8a6230;
  border:3px solid #fff;
  box-shadow:0 0 0 2px #c7a97b;
}

/* TABLE */
.vpblog-table-wrap{
  overflow-x:auto;
  margin:24px 0;
}

.vpblog-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid #e6e6e6;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
}

.vpblog-table th{
  background:#111;
  color:#fff;
  padding:15px;
  text-align:left;
  font-weight:800;
}

.vpblog-table td{
  padding:15px;
  border-top:1px solid #eee;
  vertical-align:top;
}

.vpblog-table tr:nth-child(even) td{
  background:#fafafa;
}

/* FAQ ACCORDION */
.vpblog-faq{
  border:1px solid #e8e8e8;
  border-radius:18px;
  background:#fff;
  margin:14px 0;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.vpblog-faq button{
  width:100%;
  border:0;
  background:#fff;
  color:#111;
  text-align:left;
  padding:18px 48px 18px 20px;
  font-weight:900;
  font-size:17px;
  position:relative;
  cursor:pointer;
}

.vpblog-faq button:after{
  content:"\f078";
  font-family:FontAwesome;
  position:absolute;
  right:20px;
  top:18px;
  color:#8a6230;
  transition:transform .25s ease;
}

.vpblog-faq.is-open button:after{
  transform:rotate(180deg);
}

.vpblog-faq-content{
  display:none;
  padding:0 20px 18px;
}

.vpblog-faq.is-open .vpblog-faq-content{
  display:block;
}

/* REVEAL ANIMATION */
.vpblog-reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease;
}

.vpblog-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* CTA */
.vpblog-cta{
  background:linear-gradient(135deg,#8a6230,#c7a97b);
  color:#fff;
  border-radius:28px;
  padding:30px;
  margin:34px 0;
  box-shadow:0 14px 36px rgba(138,98,48,.22);
}

.vpblog-cta h3{
  color:#fff;
  margin-top:0;
}

.vpblog-cta a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  color:#111;
  border:0;
  border-radius:999px;
  padding:11px 18px;
  font-weight:900;
  margin-top:8px;
}

/* MOBILE */
@media(max-width:768px){
  .vpblog{
    font-size:15.5px;
  }

  .vpblog-hero{
    padding:30px 22px;
    border-radius:24px;
  }

  .vpblog-hero h1{
    font-size:34px;
  }

  .vpblog-lead{
    font-size:18px;
  }

  .vpblog-card{
    padding:25px 20px;
    border-radius:22px;
  }

  .vpblog-card h2{
    font-size:26px;
  }

  .vpblog-card h3{
    font-size:23px;
  }
}