/* ============================================================================
   BOM VENDEDOR — BLOG DE REVIEWS · blog-theme.css
   Design System (Fase 1). Paleta oficial .com.br + Poppins/Inter.
   Tokens em :root → fácil re-tema. Mobile-first com breakpoints.
   ============================================================================ */

:root{
  /* Cores da marca */
  --bv-green:#0D3B36;        /* verde escuro primário */
  --bv-green-700:#0A2D2A;
  --bv-emerald:#0FA67A;      /* ação */
  --bv-emerald-600:#0A8161;
  --bv-orange:#FF6A00;       /* CTA principal */
  --bv-orange-600:#E55F00;

  /* Neutros */
  --bv-ink:#1F2937;
  --bv-ink-soft:#334155;
  --bv-muted:#64748B;
  --bv-line:#E5E7EB;
  --bv-bg:#FFFFFF;
  --bv-bg-soft:#F5F8F7;
  --bv-bg-mute:#EEF2F4;

  /* Tipografia */
  --bv-font-head:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --bv-font-body:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;

  /* Formas */
  --bv-radius:16px;
  --bv-radius-sm:12px;
  --bv-radius-lg:22px;
  --bv-shadow:0 12px 28px rgba(15,23,42,.08);
  --bv-shadow-sm:0 6px 16px rgba(15,23,42,.06);
  --bv-container:1200px;
}

/* ---------- Reset enxuto ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;font-family:var(--bv-font-body);color:var(--bv-ink);
  background:var(--bv-bg);line-height:1.6;font-size:16px;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--bv-font-head);color:var(--bv-ink);line-height:1.25;margin:0}
button{font-family:inherit}

/* ---------- Layout ---------- */
.bv-container{max-width:var(--bv-container);margin:0 auto;padding:0 20px}
.bv-section{padding:42px 0}
.bv-kicker{font-family:var(--bv-font-head);font-size:13px;font-weight:600;color:var(--bv-emerald);
  text-transform:uppercase;letter-spacing:.06em;margin-bottom:4px}
.bv-h2{font-size:27px;font-weight:700;margin-bottom:20px}

/* ---------- Botões ---------- */
.bv-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border:0;border-radius:var(--bv-radius-sm);padding:12px 18px;font-weight:700;font-size:15px;
  cursor:pointer;transition:transform .12s ease,opacity .2s ease,background .2s ease}
.bv-btn:hover{transform:translateY(-1px)}
.bv-btn--emerald{background:var(--bv-emerald);color:#fff}
.bv-btn--emerald:hover{background:var(--bv-emerald-600)}
.bv-btn--cta{background:var(--bv-orange);color:#fff}
.bv-btn--cta:hover{background:var(--bv-orange-600)}
.bv-btn--ghost{background:#fff;color:var(--bv-green);border:1.5px solid var(--bv-line)}
.bv-btn--block{width:100%}

/* ============================================================================
   HEADER
   ============================================================================ */
.bv-header{position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid var(--bv-line)}
.bv-header__row{display:flex;align-items:center;gap:20px;padding:14px 0}
.bv-brand{display:flex;align-items:center;gap:12px;flex:none}
.bv-brand__logo{height:38px;width:auto}
.bv-brand__tagline{font-size:12px;color:var(--bv-muted);line-height:1.2;max-width:160px}
.bv-search{flex:1;max-width:560px;position:relative}
.bv-search input{width:100%;border:1.5px solid var(--bv-line);border-radius:999px;
  padding:11px 16px 11px 42px;font-size:15px;outline:none;background:var(--bv-bg-soft)}
.bv-search input:focus{border-color:var(--bv-emerald);background:#fff}
.bv-search__icon{position:absolute;left:15px;top:50%;transform:translateY(-50%);color:var(--bv-muted)}
.bv-header__spacer{flex:1}

/* ============================================================================
   HERO
   ============================================================================ */
.bv-hero{position:relative;background:linear-gradient(135deg,var(--bv-green),var(--bv-green-700));
  color:#fff;text-align:center;padding:64px 20px 76px;overflow:hidden}
.bv-hero::after{content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 80% 20%,rgba(15,166,122,.35),transparent 45%);pointer-events:none}
.bv-hero__inner{position:relative;z-index:1;max-width:760px;margin:0 auto}
.bv-hero h1{color:#fff;font-size:40px;font-weight:700;margin-bottom:14px}
.bv-hero p{color:rgba(255,255,255,.86);font-size:18px;margin:0 auto 26px;max-width:560px}
.bv-hero .bv-search{max-width:600px;margin:0 auto}
.bv-hero .bv-search input{background:#fff;border-color:transparent;box-shadow:var(--bv-shadow)}

/* ============================================================================
   HOME — duas colunas (conteúdo + categorias)
   ============================================================================ */
.bv-home-grid{display:grid;grid-template-columns:1fr 340px;gap:34px;align-items:start}

/* Cards de post (rankings/reviews) */
.bv-cards{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.bv-card{display:flex;gap:14px;background:#fff;border:1px solid var(--bv-line);
  border-radius:var(--bv-radius);padding:14px;box-shadow:var(--bv-shadow-sm);
  transition:box-shadow .2s ease,transform .12s ease}
.bv-card:hover{box-shadow:var(--bv-shadow);transform:translateY(-2px)}
.bv-card__thumb{flex:none;width:84px;height:84px;border-radius:var(--bv-radius-sm);
  object-fit:cover;background:var(--bv-bg-mute)}
.bv-card__body{min-width:0;display:flex;flex-direction:column;justify-content:center}
.bv-card__cat{font-size:12px;color:var(--bv-emerald);font-weight:600;text-transform:uppercase;letter-spacing:.04em}
.bv-card__title{font-family:var(--bv-font-head);font-weight:600;font-size:16px;color:var(--bv-ink);
  margin:3px 0;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.bv-card__meta{font-size:13px;color:var(--bv-muted)}
.bv-badge{display:inline-block;background:#FFF3E8;color:var(--bv-orange-600);
  font-size:11px;font-weight:700;padding:3px 9px;border-radius:999px;margin-top:5px}

/* Estado vazio (sem posts ainda) */
.bv-empty{border:1.5px dashed var(--bv-line);border-radius:var(--bv-radius);
  padding:34px;text-align:center;color:var(--bv-muted);background:var(--bv-bg-soft)}
.bv-empty strong{display:block;color:var(--bv-ink-soft);font-family:var(--bv-font-head);margin-bottom:6px}

/* Coluna de categorias */
.bv-catbox{background:#fff;border:1px solid var(--bv-line);border-radius:var(--bv-radius-lg);
  padding:10px;box-shadow:var(--bv-shadow-sm)}
.bv-catbox__title{font-family:var(--bv-font-head);font-weight:700;font-size:18px;
  padding:12px 14px 8px;color:var(--bv-ink)}
.bv-cat{display:flex;align-items:center;gap:12px;padding:12px 14px;border-radius:var(--bv-radius-sm);
  transition:background .15s ease}
.bv-cat:hover{background:var(--bv-bg-soft)}
.bv-cat__ico{flex:none;width:38px;height:38px;border-radius:10px;display:grid;place-items:center;
  background:var(--bv-bg-mute);color:var(--bv-green);font-weight:700;font-family:var(--bv-font-head)}
.bv-cat__txt{min-width:0;flex:1}
.bv-cat__name{font-weight:600;font-size:15px;color:var(--bv-ink)}
.bv-cat__sub{font-size:12.5px;color:var(--bv-muted);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.bv-cat__arrow{color:var(--bv-muted);flex:none}

/* ============================================================================
   NEWSLETTER
   ============================================================================ */
.bv-news{background:var(--bv-bg-soft);border-top:1px solid var(--bv-line)}
.bv-news__card{background:linear-gradient(135deg,var(--bv-emerald),var(--bv-emerald-600));
  color:#fff;border-radius:var(--bv-radius-lg);padding:34px;display:flex;gap:24px;
  align-items:center;justify-content:space-between;flex-wrap:wrap;box-shadow:var(--bv-shadow)}
.bv-news__txt h3{color:#fff;font-size:23px;margin-bottom:6px}
.bv-news__txt p{margin:0;color:rgba(255,255,255,.85)}
.bv-news__form{display:flex;gap:10px;flex-wrap:wrap;min-width:300px;flex:1;max-width:520px}
.bv-news__form input{flex:1;min-width:200px;border:0;border-radius:var(--bv-radius-sm);
  padding:13px 16px;font-size:15px;outline:none}
.bv-alert{border-radius:var(--bv-radius-sm);padding:12px 16px;font-size:14px;margin-bottom:14px}
.bv-alert--ok{background:#E8F7F1;color:#065F46;border:1px solid #A7E5CF}
.bv-alert--err{background:#FEF2F2;color:#991B1B;border:1px solid #FECACA}

/* ============================================================================
   FOOTER
   ============================================================================ */
.bv-footer{background:var(--bv-green-700);color:#CBD5E1;padding:44px 0 26px;margin-top:10px}
.bv-footer__logo{height:30px;margin-bottom:14px}
.bv-footer p{margin:0 0 18px;max-width:520px;color:#94A3B8;font-size:14px}
.bv-footer__links{display:flex;flex-wrap:wrap;gap:14px 26px;margin-bottom:22px}
.bv-footer__links a{color:#CBD5E1;font-size:14px}
.bv-footer__links a:hover{color:#fff}
.bv-footer__social{display:flex;gap:12px}
.bv-footer__social a{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);
  display:grid;place-items:center;transition:background .2s ease}
.bv-footer__social a:hover{background:var(--bv-emerald)}
.bv-footer__bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:22px;padding-top:18px;
  font-size:13px;color:#7C8BA0}

/* ============================================================================
   RESPONSIVO
   ============================================================================ */
@media (max-width:980px){
  .bv-home-grid{grid-template-columns:1fr}
  .bv-catbox{order:-1}
}
@media (max-width:760px){
  .bv-hero h1{font-size:30px}
  .bv-hero p{font-size:16px}
  .bv-cards{grid-template-columns:1fr}
  .bv-h2{font-size:22px}
  .bv-news__card{padding:24px}
}
@media (max-width:560px){
  .bv-header__row{flex-wrap:wrap;gap:12px}
  .bv-search{order:3;flex-basis:100%;max-width:none}
  .bv-brand__tagline{display:none}
  .bv-hero{padding:46px 16px 54px}
  .bv-card__thumb{width:68px;height:68px}
}

/* ============================================================================
   FASE 3 — PÁGINA DO REVIEW (post.php)
   ============================================================================ */
.bv-breadcrumb{font-size:13px;color:var(--bv-muted);padding:16px 0 0;display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.bv-breadcrumb a{color:var(--bv-muted)}
.bv-breadcrumb a:hover{color:var(--bv-emerald)}
.bv-breadcrumb .sep{opacity:.5}
.bv-breadcrumb .cur{color:var(--bv-ink-soft);font-weight:600}

.bv-article{max-width:880px;margin:0 auto}
.bv-review__cat{font-family:var(--bv-font-head);font-size:13px;font-weight:600;color:var(--bv-emerald);text-transform:uppercase;letter-spacing:.05em}
.bv-review__title{font-size:34px;font-weight:700;margin:8px 0 10px;line-height:1.2}
.bv-review__sub{font-size:18px;color:var(--bv-ink-soft);margin:0 0 18px}
.bv-authorline{display:flex;align-items:center;gap:12px;flex-wrap:wrap;color:var(--bv-muted);font-size:14px;border-top:1px solid var(--bv-line);border-bottom:1px solid var(--bv-line);padding:14px 0;margin-bottom:24px}
.bv-authorline__av{width:42px;height:42px;border-radius:50%;object-fit:cover;background:var(--bv-bg-mute)}
.bv-authorline strong{color:var(--bv-ink)}
.bv-authorline .dot{opacity:.5}
.bv-cover{width:100%;border-radius:var(--bv-radius);margin-bottom:26px;box-shadow:var(--bv-shadow-sm)}

/* Conteúdo HTML (prose) */
.bv-prose{font-size:17px;color:var(--bv-ink-soft);line-height:1.75}
.bv-prose h2{font-size:25px;margin:34px 0 12px}
.bv-prose h3{font-size:20px;margin:26px 0 10px}
.bv-prose p{margin:0 0 16px}
.bv-prose ul,.bv-prose ol{margin:0 0 16px;padding-left:22px}
.bv-prose li{margin-bottom:6px}
.bv-prose a{color:var(--bv-emerald-600);text-decoration:underline}
.bv-prose img{border-radius:var(--bv-radius-sm);margin:18px 0}

/* Bloco de ranking */
.bv-rank-head{display:flex;align-items:center;gap:12px;margin:40px 0 18px}
.bv-rank-head h2{font-size:26px}
.bv-rank-head .line{flex:1;height:1px;background:var(--bv-line)}

.bv-prod{border:1px solid var(--bv-line);border-radius:var(--bv-radius-lg);background:#fff;box-shadow:var(--bv-shadow-sm);padding:22px;margin-bottom:22px;position:relative;overflow:hidden}
.bv-prod--top{border-color:#FFD9BC;box-shadow:0 14px 34px rgba(255,106,0,.12)}
.bv-prod__rankbar{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.bv-prod__no{width:46px;height:46px;border-radius:12px;background:var(--bv-green);color:#fff;display:grid;place-items:center;font-family:var(--bv-font-head);font-weight:700;font-size:18px;flex:none}
.bv-prod--top .bv-prod__no{background:var(--bv-orange)}
.bv-prod__selo{background:#FFF3E8;color:var(--bv-orange-600);font-size:12px;font-weight:700;padding:4px 11px;border-radius:999px}
.bv-prod__grid{display:grid;grid-template-columns:230px 1fr;gap:22px;align-items:start}
.bv-prod__media{text-align:center}
.bv-prod__img{width:100%;height:200px;object-fit:contain;background:var(--bv-bg-soft);border-radius:var(--bv-radius-sm);padding:10px}
.bv-prod__gallery{display:flex;gap:6px;justify-content:center;margin-top:8px;flex-wrap:wrap}
.bv-prod__gallery img{width:46px;height:46px;object-fit:cover;border-radius:8px;border:1px solid var(--bv-line)}
.bv-prod__name{font-size:21px;font-weight:700;margin:0}
.bv-prod__brand{color:var(--bv-muted);font-size:14px;margin:2px 0 8px}
.bv-prod__blocktitle{font-family:var(--bv-font-head);font-weight:600;font-size:16px;color:var(--bv-emerald-600);margin:12px 0 6px}
.bv-prod__desc{font-size:15px;color:var(--bv-ink-soft);line-height:1.65}
.bv-prod__desc ul{padding-left:20px;margin:8px 0}

/* Estrelas (clip de gradiente — meia estrela precisa) */
.bv-stars{font-size:18px;letter-spacing:2px;line-height:1;background:linear-gradient(90deg,#F5A623 var(--pct,0%),#D7DCE2 var(--pct,0%));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}
.bv-rating{display:flex;align-items:center;gap:8px;margin-bottom:6px}
.bv-rating b{font-size:15px;color:var(--bv-ink)}

/* Prós e contras */
.bv-proscons{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:16px 0}
.bv-pc{border-radius:var(--bv-radius-sm);padding:14px 16px}
.bv-pc--pro{background:#ECFDF5;border:1px solid #A7F3D0}
.bv-pc--con{background:#FEF2F2;border:1px solid #FECACA}
.bv-pc h5{font-family:var(--bv-font-head);font-size:13px;text-transform:uppercase;letter-spacing:.04em;margin:0 0 8px}
.bv-pc--pro h5{color:#047857}.bv-pc--con h5{color:#B91C1C}
.bv-pc ul{list-style:none;margin:0;padding:0}
.bv-pc li{position:relative;padding-left:22px;margin-bottom:6px;font-size:14px;color:var(--bv-ink-soft)}
.bv-pc--pro li::before{content:"✓";position:absolute;left:0;color:#10B981;font-weight:700}
.bv-pc--con li::before{content:"✕";position:absolute;left:0;color:#EF4444;font-weight:700}

/* Specs */
.bv-specs{width:100%;border-collapse:collapse;margin:14px 0;font-size:14px}
.bv-specs tr{border-bottom:1px solid var(--bv-line)}
.bv-specs td{padding:9px 4px}
.bv-specs td:first-child{color:var(--bv-muted);width:42%;font-weight:500}
.bv-specs td:last-child{color:var(--bv-ink);font-weight:600}

/* Botões de loja / afiliado */
.bv-stores{display:flex;flex-direction:column;gap:9px;margin-top:16px}
.bv-store{display:flex;align-items:center;justify-content:space-between;gap:12px;border:1.5px solid var(--bv-line);border-radius:var(--bv-radius-sm);padding:11px 14px;transition:border-color .15s ease,box-shadow .15s ease;background:#fff}
.bv-store:hover{border-color:var(--bv-emerald);box-shadow:var(--bv-shadow-sm)}
.bv-store__loja{font-weight:600;font-size:15px;color:var(--bv-ink)}
.bv-store__price{font-size:13px;color:var(--bv-muted)}
.bv-store__go{background:var(--bv-orange);color:#fff;font-weight:700;font-size:14px;padding:9px 18px;border-radius:999px;white-space:nowrap;display:inline-flex;align-items:center;gap:6px}
.bv-store:hover .bv-store__go{background:var(--bv-orange-600)}
.bv-prod__priceline{font-size:14px;color:var(--bv-muted);margin-top:14px}
.bv-prod__priceline strong{color:var(--bv-ink);font-size:17px}

/* FAQ (accordion nativo com <details>) */
.bv-faq{max-width:880px;margin:40px auto 0}
.bv-faq__item{border:1px solid var(--bv-line);border-radius:var(--bv-radius-sm);margin-bottom:10px;background:#fff;overflow:hidden}
.bv-faq__item summary{cursor:pointer;padding:16px 18px;font-family:var(--bv-font-head);font-weight:600;font-size:16px;color:var(--bv-ink);list-style:none;display:flex;justify-content:space-between;align-items:center;gap:12px}
.bv-faq__item summary::-webkit-details-marker{display:none}
.bv-faq__item summary::after{content:"+";font-size:22px;color:var(--bv-emerald);flex:none;transition:transform .2s ease}
.bv-faq__item[open] summary::after{content:"–"}
.bv-faq__body{padding:0 18px 18px;color:var(--bv-ink-soft);font-size:15px;line-height:1.7}
.bv-faq__expert{display:flex;align-items:center;gap:8px;margin-top:12px;font-size:13px;color:var(--bv-emerald-600);font-weight:600}
.bv-faq__expert img{width:28px;height:28px;border-radius:50%;object-fit:cover}

/* Box do autor */
.bv-authorbox{display:flex;gap:18px;align-items:flex-start;background:var(--bv-bg-soft);border:1px solid var(--bv-line);border-radius:var(--bv-radius-lg);padding:22px;margin:40px auto 0;max-width:880px}
.bv-authorbox__av{width:74px;height:74px;border-radius:50%;object-fit:cover;flex:none;background:var(--bv-bg-mute)}
.bv-authorbox__name{font-family:var(--bv-font-head);font-weight:700;font-size:18px}
.bv-authorbox__role{color:var(--bv-emerald-600);font-size:13.5px;font-weight:600;margin-bottom:8px}
.bv-authorbox__bio{font-size:14.5px;color:var(--bv-ink-soft);margin:0}

/* Disclosure de afiliado */
.bv-afdisc{font-size:12.5px;color:var(--bv-muted);background:var(--bv-bg-soft);border:1px dashed var(--bv-line);border-radius:var(--bv-radius-sm);padding:11px 14px;margin:0 auto 22px;max-width:880px}

@media (max-width:760px){
  .bv-review__title{font-size:26px}
  .bv-prod__grid{grid-template-columns:1fr}
  .bv-prod__img{height:170px}
  .bv-proscons{grid-template-columns:1fr}
}

/* ============================================================================
   FASE 3B — Categoria, busca e paginação
   ============================================================================ */
.bv-pagehead{padding:26px 0 6px}
.bv-pagehead h1{font-size:30px;font-weight:700}
.bv-pagehead p{color:var(--bv-muted);margin:8px 0 0;max-width:680px}
.bv-subcats{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 6px}
.bv-subcat{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1.5px solid var(--bv-line);
  border-radius:999px;padding:9px 16px;font-size:14px;font-weight:600;color:var(--bv-ink);transition:all .15s ease}
.bv-subcat:hover{border-color:var(--bv-emerald);color:var(--bv-emerald-600)}
.bv-subcat span{background:var(--bv-bg-mute);color:var(--bv-muted);font-size:11px;font-weight:700;padding:1px 8px;border-radius:999px}
.bv-cards--3{grid-template-columns:1fr 1fr 1fr}
.bv-pager{display:flex;gap:14px;align-items:center;justify-content:center;margin-top:34px;color:var(--bv-muted);font-size:14px}
.bv-result-meta{color:var(--bv-muted);font-size:14px;margin-bottom:18px}
@media (max-width:760px){ .bv-cards--3{grid-template-columns:1fr} .bv-pagehead h1{font-size:24px} }

/* ============================================================================
   FASE 4A — Slots de anúncio (BomAds)
   ============================================================================ */
.bv-ad-wrap{display:flex;flex-direction:column;align-items:center;gap:4px;margin:24px auto;text-align:center}
.bv-ad-label{font-size:10px;text-transform:uppercase;letter-spacing:.08em;color:var(--bv-muted);opacity:.7}
.bv-ad{max-width:100%;line-height:0}
.bv-ad img{max-width:100%;height:auto;border-radius:var(--bv-radius-sm)}
.bv-ad-wrap--side{margin:0 0 22px}

/* ============================================================================
   FASE 4C — Comentários
   ============================================================================ */
.bv-comments{max-width:880px;margin:46px auto 0}
.bv-comment{padding:16px 0;border-top:1px solid var(--bv-line)}
.bv-comment__head{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:6px}
.bv-comment__av{width:36px;height:36px;border-radius:50%;background:var(--bv-green);color:#fff;display:grid;place-items:center;font-weight:700;font-family:var(--bv-font-head);font-size:15px;flex:none}
.bv-comment__name{font-weight:600;color:var(--bv-ink)}
.bv-comment__date{font-size:12.5px;color:var(--bv-muted)}
.bv-comment__body{color:var(--bv-ink-soft);font-size:15px;line-height:1.65;white-space:pre-line}
.bv-comment__reply{display:inline-block;margin-top:8px;font-size:13px;font-weight:600;color:var(--bv-emerald-600)}
.bv-comment__stars{font-size:13px}
.bv-comment-empty{color:var(--bv-muted);font-size:14.5px;padding:14px 0}

.bv-cform{background:var(--bv-bg-soft);border:1px solid var(--bv-line);border-radius:var(--bv-radius-lg);padding:22px;margin-top:24px}
.bv-cform h3{font-size:18px;margin:0 0 4px}
.bv-cform .replying{font-size:13px;color:var(--bv-emerald-600);font-weight:600;margin-bottom:10px}
.bv-cform__row{display:grid;grid-template-columns:1fr 1fr 150px;gap:12px;margin-bottom:12px}
.bv-cform input,.bv-cform textarea,.bv-cform select{width:100%;border:1.5px solid var(--bv-line);border-radius:10px;padding:11px 13px;font-size:14.5px;font-family:inherit;outline:none;background:#fff}
.bv-cform input:focus,.bv-cform textarea:focus,.bv-cform select:focus{border-color:var(--bv-emerald)}
.bv-cform textarea{min-height:110px;resize:vertical}
.bv-hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}
@media (max-width:680px){ .bv-cform__row{grid-template-columns:1fr} }
