/* =========================================
   VICTÓRIA TLUSTAK — Website CSS
   ========================================= */

@font-face {
  font-family: 'Alta';
  src: url('../fonts/Alta_regular.woff2') format('woff2'),
       url('../fonts/Alta_regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --vt-bg: #F7F7F7;
  --vt-dark: #0F0F0F;
  --vt-accent: #BD6B31;
  --vt-accent-dark: #9C5726;
  --vt-surface: #FFFFFF;
  --vt-border: #CCCCCC;
  --vt-text: #0F0F0F;
  --vt-text-secondary: rgba(15,15,15,0.72);
  --vt-text-muted: rgba(15,15,15,0.65);
  --vt-text-faint: rgba(15,15,15,0.5);
  --vt-font-display: 'Alta', serif;
  --vt-font-body: 'Work Sans', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; font-family: var(--vt-font-body); color: var(--vt-text); background: var(--vt-bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: rgba(189,107,49,.22); color: var(--vt-dark); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vt-accent); text-decoration: none; }
a:hover { color: var(--vt-accent-dark); }
p { margin: 0; }
h1,h2,h3,h4 { margin: 0; }

.vt-container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
.vt-section { padding: 120px 0; }

/* === TYPOGRAPHY === */
.vt-h1 { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(32px,4.6vw,45px); line-height: 1.18; letter-spacing: -0.3px; }
.vt-h1 h1 { font-family: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; letter-spacing: inherit; margin: 0; }
.vt-h2 { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(26px,3.2vw,38px); line-height: 1.25; }
.vt-h2 h2 { font-family: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; margin: 0; }
.vt-accent { color: var(--vt-accent); }
.vt-lead { font-size: 18px; line-height: 1.7; color: var(--vt-text-muted); }

/* === BUTTONS === */
.vt-btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 6px; font-family: var(--vt-font-body); font-weight: 600; cursor: pointer; border: none; transition: background .2s,border-color .2s,color .2s; white-space: nowrap; line-height: 1; padding: 16px 28px; font-size: 16px; }
.vt-btn--primary { background: var(--vt-accent); color: var(--vt-bg); }
.vt-btn--primary:hover { background: var(--vt-accent-dark); color: var(--vt-bg); }
.vt-btn--ghost { background: transparent; color: var(--vt-dark); border: 1px solid var(--vt-dark); font-weight: 500; }
.vt-btn--ghost:hover { background: var(--vt-dark); color: var(--vt-bg); }
.vt-btn--dark { background: var(--vt-dark); color: var(--vt-bg); }
.vt-btn--dark:hover { background: var(--vt-accent); color: var(--vt-bg); }
.vt-btn--outline-light { background: transparent; color: var(--vt-bg); border: 1px solid var(--vt-bg); font-weight: 500; padding: 14px 26px; font-size: 15px; }
.vt-btn--outline-light:hover { background: var(--vt-bg); color: var(--vt-dark); }
.vt-btn--nav { background: var(--vt-accent); color: var(--vt-bg); padding: 11px 20px; font-size: 14px; }
.vt-btn--nav:hover { background: var(--vt-accent-dark); color: var(--vt-bg); }
.vt-btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* === HEADER === */
.vt-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(20px,4vw,48px); height: 84px; background: rgba(247,247,247,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--vt-border); }
.vt-header__logo { display: flex; flex-direction: column; line-height: 1; color: var(--vt-dark); text-decoration: none; }
.vt-header__logo img { height: 42px; width: auto; }
.vt-header__logo-name { font-family: var(--vt-font-display); font-weight: 400; font-size: 20px; letter-spacing: 0.2px; }
.vt-header__logo-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(15,15,15,.65); margin-top: 4px; }
.vt-header__nav { display: flex; gap: 22px; align-items: center; white-space: nowrap; }
.vt-header__nav a { font-size: 15px; color: var(--vt-dark); font-weight: 500; text-decoration: none; }
.vt-header__nav a:hover,.vt-header__nav a.is-active { color: var(--vt-accent); }
.vt-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.vt-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--vt-dark); }
.vt-mobile-menu { display: none; position: fixed; top: 84px; left: 0; right: 0; bottom: 0; z-index: 99; background: var(--vt-bg); padding: 32px clamp(20px,4vw,48px); flex-direction: column; gap: 24px; overflow-y: auto; }
.vt-mobile-menu.is-open { display: flex; }
.vt-mobile-menu a:not(.vt-btn) { font-family: var(--vt-font-display); font-size: 22px; color: var(--vt-dark); border-bottom: 1px solid var(--vt-border); padding-bottom: 16px; text-decoration: none; }
.vt-mobile-menu .vt-btn { margin-top: 8px; }

/* === HERO === */
.vt-hero { scroll-margin-top: 84px; display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 56px; align-items: center; padding: 168px clamp(20px,4vw,48px) 100px; max-width: 1240px; margin: 0 auto; }
.vt-hero__content h1,.vt-hero__content .vt-h1 { margin: 0; }
.vt-hero__lead { max-width: 540px; margin: 28px 0 0; }
.vt-hero__img-wrap { position: relative; width: 100%; height: auto; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: #E7E2D8; }
.vt-hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* === TRUST BAR === */
.vt-trust { background: var(--vt-dark); padding: 64px clamp(20px,4vw,48px); }
.vt-trust__grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 40px; }
.vt-trust__n { font-family: var(--vt-font-display); color: var(--vt-accent); font-size: 25px; letter-spacing: 1.5px; margin-bottom: 12px; }
.vt-trust__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 25px; margin-bottom: 8px; color: var(--vt-bg); }
.vt-trust__desc { color: rgba(247,247,247,.7); font-size: 15px; line-height: 1.5; }

/* === SOBRE === */
.vt-sobre { scroll-margin-top: 84px; padding: 120px clamp(20px,4vw,48px); max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 64px; align-items: center; }
.vt-sobre__img-wrap { position: relative; width: 100%; height: auto; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: #E7E2D8; }
.vt-sobre__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.vt-sobre__title { margin: 0 0 24px; }
.vt-sobre__body p { font-size: 17px; line-height: 1.75; color: var(--vt-text-secondary); margin: 0 0 18px; }
.vt-sobre__body p:last-child { margin-bottom: 28px; }
.vt-sobre__quote { border-left: 2px solid var(--vt-accent); padding-left: 16px; font-size: 15px; color: var(--vt-text-muted); margin-bottom: 32px; }

/* === ÁREAS DE ATUAÇÃO === */
.vt-areas { scroll-margin-top: 84px; background: var(--vt-bg); padding: 120px clamp(20px,4vw,48px) 0; border-top: 1px solid var(--vt-border); }
.vt-areas__title { text-align: center; margin: 0 0 56px; }
.vt-areas__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.vt-area-card { background: var(--vt-surface); border: 1px solid var(--vt-border); border-radius: 8px; overflow: hidden; }
.vt-area-card__img { width: 100%; height: 160px; background: #E7E2D8; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vt-area-card__img img { width: 100%; height: 100%; object-fit: cover; }
.vt-area-card__body { padding: 24px 24px 28px; }
.vt-area-card__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 19px; margin-bottom: 12px; }
.vt-area-card__desc { color: var(--vt-text-muted); font-size: 15px; line-height: 1.6; }
.vt-areas__footer { text-align: center; margin: 56px 0 0; font-size: 16px; color: var(--vt-text-secondary); }
.vt-areas__footer a { font-weight: 600; }

/* === COMO FUNCIONA === */
.vt-steps { scroll-margin-top: 84px; padding: 120px clamp(20px,4vw,48px); max-width: 1240px; margin: 0 auto; }
.vt-steps__title { text-align: center; margin: 0 0 56px; }
.vt-steps__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 36px; }
.vt-step__n { font-family: var(--vt-font-display); font-weight: 400; font-size: 40px; color: var(--vt-accent); line-height: 1; margin-bottom: 16px; }
.vt-step__title { font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.vt-step__desc { color: var(--vt-text-muted); font-size: 15px; line-height: 1.6; }

/* === DIFERENCIAIS === */
.vt-dif { background: var(--vt-dark); padding: 120px clamp(20px,4vw,48px); }
.vt-dif__inner { max-width: 900px; margin: 0 auto; }
.vt-dif__title { margin: 0 0 48px; color: var(--vt-bg); }
.vt-dif-item { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid rgba(247,247,247,.15); }
.vt-dif-item__n { font-family: var(--vt-font-display); font-size: 35px; color: var(--vt-accent); }
.vt-dif-item__title { font-weight: 600; font-size: 18px; margin-bottom: 8px; color: var(--vt-bg); }
.vt-dif-item__desc { color: rgba(247,247,247,.7); font-size: 15px; line-height: 1.65; }

/* === DEPOIMENTOS (placeholder) === */
.vt-testimonials { padding: 80px clamp(20px,4vw,48px); text-align: center; }
.vt-testimonials__title { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(22px,2.6vw,30px); margin: 0 0 12px; }
.vt-testimonials__note { font-style: italic; color: var(--vt-text-muted); font-size: 15px; margin: 0; }
.vt-testimonials__grid { max-width: 1240px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; text-align: left; }
.vt-testimonial-card { background: var(--vt-surface); border: 1px solid var(--vt-border); border-radius: 8px; padding: 28px 26px; }
.vt-testimonial-card__text { font-size: 15px; line-height: 1.7; color: var(--vt-text-secondary); margin: 0 0 18px; }
.vt-testimonial-card__name { font-weight: 600; font-size: 15px; color: var(--vt-text); }
.vt-testimonial-card__city { font-size: 13px; color: var(--vt-text-faint); margin-top: 2px; }

/* === BLOG (home) === */
.vt-blog-home { scroll-margin-top: 84px; padding: 100px clamp(20px,4vw,48px); max-width: 1240px; margin: 0 auto; }
.vt-blog-home__header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 48px; }
.vt-blog-home__desc { color: var(--vt-text-muted); font-size: 16px; margin: 12px 0 0; max-width: 480px; }
.vt-blog-home__see-all { font-weight: 600; font-size: 15px; white-space: nowrap; }
.vt-blog-home__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }

/* === BLOG CARD (shared: home + listing + continue reading) === */
.vt-blog-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.vt-blog-card__img { border-radius: 4px; overflow: hidden; aspect-ratio: 3/2; margin-bottom: 16px; background: #E7E2D8; }
.vt-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.vt-blog-card:hover .vt-blog-card__img img { transform: scale(1.03); }
.vt-blog-card__img--ph { display: flex; align-items: center; justify-content: center; }
.vt-blog-card__cat { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--vt-accent); margin-bottom: 6px; }
.vt-blog-card__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 16px; line-height: 1.3; margin-top: 6px; color: var(--vt-text); }
.vt-blog-card__excerpt { font-size: 14.5px; line-height: 1.6; color: var(--vt-text-muted); margin-top: 8px; }
.vt-blog-card__time { font-size: 13px; color: var(--vt-text-faint); margin-top: 10px; }

/* === INSTAGRAM === */
.vt-instagram { background: var(--vt-dark); padding: 100px clamp(20px,4vw,48px); text-align: center; }
.vt-instagram__title { color: var(--vt-bg); margin: 0 0 12px; }
.vt-instagram__desc { color: rgba(247,247,247,.7); font-size: 16px; margin: 0 0 32px; }
.vt-instagram__grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 14px; }
.vt-instagram__post { display: block; width: 100%; aspect-ratio: 4/5; background: rgba(247,247,247,.08); overflow: hidden; }
.vt-instagram__post img { width: 100%; height: 100%; object-fit: cover; }

/* === FAQ === */
.vt-faq { scroll-margin-top: 84px; padding: 110px clamp(20px,4vw,48px); max-width: 820px; margin: 0 auto; }
.vt-faq__title { text-align: center; margin: 0 0 48px; }
.vt-faq__item { border-bottom: 1px solid var(--vt-border); }
.vt-faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; padding: 24px 0; text-align: left; cursor: pointer; font-family: var(--vt-font-body); }
.vt-faq__q-text { font-weight: 600; font-size: 17px; color: var(--vt-dark); }
.vt-faq__sign { font-size: 22px; color: var(--vt-accent); flex-shrink: 0; }
.vt-faq__a { margin: 0 0 28px; color: var(--vt-text-muted); font-size: 15px; line-height: 1.7; max-width: 800px; display: none; }
.vt-faq__item.is-open .vt-faq__a { display: block; }

/* === CTA FINAL === */
.vt-cta-final { scroll-margin-top: 84px; background: var(--vt-dark); color: var(--vt-bg); padding: 120px clamp(20px,4vw,48px); text-align: center; }
.vt-cta-final__title { margin: 0 auto 20px; max-width: 720px; font-size: clamp(26px,3.6vw,42px); }
.vt-cta-final__desc { font-size: 17px; color: rgba(247,247,247,.7); margin: 0 auto 40px; max-width: 520px; }
.vt-cta-final .vt-btn { padding: 18px 32px; }

/* === FOOTER === */
.vt-footer { background: var(--vt-bg); padding: 56px clamp(20px,4vw,48px) 40px; border-top: 1px solid var(--vt-border); }
.vt-footer__inner { max-width: 1240px; margin: 0 auto; }
.vt-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; padding-bottom: 32px; border-bottom: 1px solid var(--vt-border); }
.vt-footer__logo { display: flex; flex-direction: column; line-height: 1; }
.vt-footer__logo-name { font-family: var(--vt-font-display); font-weight: 400; font-size: 18px; }
.vt-footer__logo-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(15,15,15,.65); margin-top: 6px; }
.vt-footer__nav { display: flex; flex-wrap: wrap; gap: 24px; }
.vt-footer__nav a { font-size: 14px; color: rgba(15,15,15,.72); text-decoration: none; }
.vt-footer__nav a:hover { color: var(--vt-accent); }
.vt-footer__bottom { padding-top: 28px; display: flex; flex-direction: column; gap: 6px; }
.vt-footer__reg { font-size: 14px; color: var(--vt-dark); font-weight: 600; }
.vt-footer__address { font-size: 14px; color: var(--vt-text-muted); }
.vt-footer__disclaimer { font-size: 12px; color: var(--vt-text-faint); margin-top: 14px; max-width: 640px; line-height: 1.6; }
.vt-footer__credit { font-size: 12px; color: var(--vt-text-faint); margin-top: 18px; }
.vt-footer__credit a { color: var(--vt-text-muted); font-weight: 500; }

/* === WHATSAPP FLOAT === */
.vt-wa-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,.18); z-index: 99; transition: transform .2s; }
.vt-wa-float:hover { transform: scale(1.08); }

/* === PLACEHOLDER === */
.vt-ph { display: flex; align-items: center; justify-content: center; color: #8A7B6B; font-size: 12px; text-align: center; padding: 8px; }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease,transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* =========================================
   BLOG LISTING PAGE
   ========================================= */
.vt-blog-page { padding: 168px 0 50px; }
.vt-blog-page__hero { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
.vt-blog-page__hero h1 { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(32px,4.6vw,54px); line-height: 1.15; max-width: 760px; margin-bottom: 22px; }
.vt-blog-page__hero p { font-size: 18px; line-height: 1.7; color: var(--vt-text-muted); max-width: 580px; }
.vt-eyebrow { display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--vt-accent); font-weight: 600; margin-bottom: 20px; }

.vt-cat-chips { display: flex; flex-wrap: wrap; gap: 10px; max-width: 1240px; margin: 40px auto 0; padding: 0 clamp(20px,4vw,48px); }
.vt-cat-chip { font-family: var(--vt-font-body); font-size: 13.5px; font-weight: 500; padding: 9px 18px; border-radius: 100px; cursor: pointer; border: 1px solid var(--vt-border); background: var(--vt-surface); color: var(--vt-text-secondary); text-decoration: none; transition: background .15s,border-color .15s,color .15s; }
.vt-cat-chip.is-active,.vt-cat-chip:hover { background: var(--vt-dark); border-color: var(--vt-dark); color: var(--vt-bg); }

.vt-blog-featured { max-width: 1240px; margin: 44px auto 0; padding: 0 clamp(20px,4vw,48px); }
.vt-blog-featured__card { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; background: var(--vt-surface); border: 1px solid var(--vt-border); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .2s; gap: 20px; }
.vt-blog-featured__card:hover { box-shadow: 0 24px 54px -30px rgba(15,15,15,.25); }
.vt-blog-featured__img { position: relative; aspect-ratio: 16/11; background: #E7E2D8; overflow: hidden; }
.vt-blog-featured__img img { width: 100%; height: 100%; object-fit: cover; }
.vt-blog-featured__img--ph { display: flex; align-items: center; justify-content: center; }
.vt-blog-featured__body { padding: 8px 48px 8px 0; }
.vt-blog-featured__meta { display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--vt-accent); font-weight: 600; margin-bottom: 16px; }
.vt-blog-featured__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 32px; line-height: 1.2; margin-bottom: 16px; }
.vt-blog-featured__desc { font-size: 16px; line-height: 1.65; color: var(--vt-text-muted); margin-bottom: 22px; }
.vt-blog-featured__cta { font-size: 15px; font-weight: 600; color: var(--vt-accent); }

.vt-blog-grid-section { max-width: 1240px; margin: 0 auto; padding: 56px clamp(20px,4vw,48px) 100px; }
.vt-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px 28px; }

/* =========================================
   ARTICLE PAGE
   ========================================= */
.vt-article-hdr { max-width: 760px; margin: 0 auto; padding: 168px clamp(20px,4vw,48px) 0; }
.vt-article-breadcrumb { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--vt-text-faint); margin-bottom: 26px; }
.vt-article-breadcrumb a { font-weight: 600; }
.vt-article-breadcrumb .cat { letter-spacing: .12em; text-transform: uppercase; color: var(--vt-accent); font-weight: 600; font-size: 11px; }
.vt-article__title { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(28px,4vw,42px); line-height: 1.2; margin-bottom: 24px; }
.vt-article__lead { font-size: 19px; line-height: 1.55; color: var(--vt-text-secondary); margin-bottom: 32px; }
.vt-article__byline { display: flex; align-items: center; gap: 16px; padding: 22px 0; border-top: 1px solid var(--vt-border); border-bottom: 1px solid var(--vt-border); }
.vt-article__avatar { width: 48px; height: 48px; border-radius: 50%; background: #E7E2D8; overflow: hidden; flex-shrink: 0; }
.vt-article__avatar img { width: 100%; height: 100%; object-fit: cover; }
.vt-article__author-name { font-weight: 600; font-size: 15px; line-height: 1.4; }
.vt-article__meta { font-size: 13px; color: var(--vt-text-faint); }
.vt-article-hero-img { max-width: 980px; margin: 40px auto 8px; padding: 0 clamp(20px,4vw,48px); }
.vt-article-hero-img__wrap { position: relative; aspect-ratio: 16/8; border-radius: 8px; overflow: hidden; background: #E7E2D8; }
.vt-article-hero-img__wrap img { width: 100%; height: 100%; object-fit: cover; }

.vt-prose { max-width: 800px; margin: 0 auto; padding: 40px clamp(20px,4vw,48px) 0; font-size: 18px; line-height: 1.78; color: var(--vt-text); }
.vt-prose p { margin-bottom: 24px; }
.vt-prose p:last-child { margin-bottom: 0; }
.vt-prose h2 { font-family: var(--vt-font-display); font-weight: 400; font-size: 28px; line-height: 1.25; margin: 40px 0 16px; color: var(--vt-dark); }
.vt-prose h3 { font-family: var(--vt-font-display); font-weight: 400; font-size: 22px; line-height: 1.3; margin: 32px 0 12px; color: var(--vt-dark); }
.vt-prose ul,.vt-prose ol { margin: 0 0 24px; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.vt-prose blockquote { margin: 36px 0; padding: 8px 0 8px 20px; border-left: 2px solid var(--vt-accent); font-family: var(--vt-font-display); font-size: 24px; line-height: 1.4; color: var(--vt-dark); }
.vt-prose a { text-decoration: underline; }
.vt-prose img { border-radius: 8px; width: 100%; margin: 24px 0; }

.vt-inline-cta { max-width: 800px; margin: 40px auto 0; padding: 0 clamp(20px,4vw,48px); }
.vt-inline-cta__box { background: var(--vt-surface); border: 1px solid var(--vt-border); border-radius: 8px; padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.vt-inline-cta__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 21px; margin-bottom: 4px; }
.vt-inline-cta__desc { font-size: 14.5px; color: var(--vt-text-muted); }

.vt-article-footer { max-width: 800px; margin: 40px auto 0; padding: 0 clamp(20px,4vw,48px); }
.vt-article-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; border-top: 1px solid var(--vt-border); flex-wrap: wrap; }
.vt-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.vt-tag { font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 100px; background: var(--vt-surface); border: 1px solid var(--vt-border); color: var(--vt-text-secondary); }
.vt-share { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--vt-text-faint); }
.vt-share a { font-weight: 600; }

.vt-continue { max-width: 1240px; margin: 0 auto; padding: 80px clamp(20px,4vw,48px) 100px; }
.vt-continue__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 30px; margin-bottom: 36px; }
.vt-continue__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* === MOBILE === */
@media (max-width: 1080px) {
  .vt-header__nav { display: none; }
  .vt-btn--nav { display: none; }
  .vt-nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .vt-blog-grid,.vt-continue__grid { grid-template-columns: repeat(2,1fr); }
  .vt-blog-featured__card { grid-template-columns: 1fr; gap: 0; }
  .vt-blog-featured__body { padding: 24px; }
  .vt-blog-featured__title { font-size: 24px; }
  .vt-hero__img-wrap { order: -1; }
  .vt-instagram__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .vt-blog-grid,.vt-continue__grid { grid-template-columns: 1fr; }
  .vt-blog-home__header { flex-direction: column; align-items: flex-start; }
  .vt-instagram__desc,.vt-instagram__title { text-align: center; }
}
