/* Static section for VitalThrives (white background) */
.vt-static { background: #ffffff; padding: 44px 16px; font-family: var(--vt-font-sans); color: var(--vt-black); }
.vt-static__wrap { max-width: var(--vt-max-width); margin: 0 auto; }
.vt-static__header { margin-bottom: 20px; text-align: left; }
.vt-static__header h2 { color: var(--vt-black); font-size: 1.8rem; margin: 0 0 6px; }
.vt-static__sub { color:#444; margin:0 0 18px; }

.vt-static__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.vt-static__card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); display:flex; flex-direction:column; transition: transform .16s ease, box-shadow .16s ease; }
.vt-static__card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(41,95,45,0.08); }

.vt-static__img { width:100%; height: 200px; object-fit: cover; display:block; }

.vt-static__body { padding: 14px 16px 18px; display:flex; flex-direction:column; gap:8px; flex:1 0 auto; }
.vt-static__tag { font-weight:700; color:var(--vt-green); font-size:0.85rem; }
.vt-static__title { margin:0; font-size:1.05rem; color:var(--vt-black); }
.vt-static__desc { margin:0; color:#444; font-size:0.95rem; }
.vt-static__link { margin-top:8px; font-weight:700; color:var(--vt-green); text-decoration:none; }

.vt-static__cta { margin-top:20px; display:flex; gap:12px; align-items:center; }
.vt-btn--primary { background: var(--vt-green); color: #fff; padding:10px 16px; border-radius:10px; display:inline-block; text-decoration:none; }
.vt-btn--outline { background:transparent; color:var(--vt-black); padding:10px 16px; border-radius:10px; display:inline-block; text-decoration:none; border:2px solid rgba(0,0,0,0.06); }

@media (max-width:1024px) { .vt-static__grid{ grid-template-columns: repeat(2,1fr); } .vt-static__header{text-align:center;} .vt-static__cta{justify-content:center;} }
@media (max-width:640px) { .vt-static__grid{ grid-template-columns: 1fr; } .vt-static { padding:32px 12px; } .vt-static__img{ height:180px; } .vt-static__header h2{ font-size:1.5rem; } }
