
:root {
  --vm-accent: #e42800;
  --vm-bg: #f4f5f7;
  --vm-card: #ffffff;
  --vm-text: #1a1a1a;
  --vm-muted: #6b7280;
  --vm-border: #e5e7eb;
  --vm-header: #111111;
  --vm-radius: 14px;
  --vm-font: "Montserrat", "Roboto", "Oswald", system-ui, -apple-system, sans-serif;
  --vm-safe-bottom: env(safe-area-inset-bottom, 0px);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body.vm-body {
  margin: 0;
  font-family: var(--vm-font);
  background: var(--vm-bg);
  color: var(--vm-text);
  line-height: 1.5;
  padding-bottom: calc(16px + var(--vm-safe-bottom));
}
a { color: var(--vm-accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.vm-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--vm-header); color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.vm-header-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  min-height: 52px;
}
.vm-logo {
  flex: 1; color: #fff !important; font-weight: 700; font-size: 15px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: "Oswald", var(--vm-font);
  letter-spacing: .02em;
}
.vm-burger, .vm-search-toggle {
  appearance: none; border: 0; background: transparent; color: #fff;
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer;
}
.vm-burger span {
  display: block; width: 18px; height: 2px; background: #fff; margin: 3px 0; border-radius: 1px;
}
.vm-search {
  display: flex; gap: 8px; padding: 0 12px 12px;
}
.vm-search[hidden] { display: none !important; }
.vm-search input {
  flex: 1; border: 0; border-radius: 10px; padding: 10px 12px; font-size: 16px;
}
.vm-search button {
  border: 0; background: var(--vm-accent); color: #fff;
  border-radius: 10px; padding: 0 14px; font-weight: 600;
}
.vm-cats {
  display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 0 12px 12px; scrollbar-width: none;
}
.vm-cats::-webkit-scrollbar { display: none; }
.vm-cats a {
  flex: 0 0 auto; color: #fff !important; background: rgba(255,255,255,.12);
  padding: 6px 12px; border-radius: 999px; font-size: 13px; white-space: nowrap;
}
.vm-cats a.is-active { background: var(--vm-accent); }

.vm-drawer[hidden], .vm-drawer-backdrop[hidden] { display: none !important; }
.vm-drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 80;
}
.vm-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw, 320px);
  background: #fff; z-index: 90; overflow-y: auto;
  box-shadow: 8px 0 30px rgba(0,0,0,.25);
}
.vm-drawer-inner { padding: 16px; }
.vm-drawer-close {
  float: right; border: 0; background: var(--vm-bg); width: 36px; height: 36px;
  border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer;
}
.vm-menu { clear: both; margin: 24px 0 0; padding: 0; list-style: none; }
.vm-menu ul { list-style: none; margin: 0; padding: 0 0 0 12px; }
.vm-menu a {
  display: block; padding: 12px 8px; color: var(--vm-text) !important;
  border-bottom: 1px solid var(--vm-border); font-weight: 600;
}
.vm-drawer-foot { margin-top: 24px; font-size: 14px; }
.vm-drawer-foot a { color: var(--vm-muted) !important; }

.vm-main { padding: 12px; max-width: 720px; margin: 0 auto; }
.vm-page-title h1 { font-size: 1.35rem; margin: 4px 0 14px; font-family: "Oswald", var(--vm-font); }

.vm-feed { display: grid; gap: 12px; }
.vm-card {
  background: var(--vm-card); border-radius: var(--vm-radius); overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.vm-card-link { color: inherit !important; display: block; }
.vm-card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.vm-card-body { padding: 12px 14px 14px; }
.vm-chip {
  display: inline-block; background: rgba(228,40,0,.1); color: var(--vm-accent);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 6px; margin-bottom: 6px;
}
.vm-card-title {
  margin: 0 0 6px; font-size: 1.05rem; line-height: 1.3;
  font-family: "Oswald", var(--vm-font); font-weight: 600;
}
.vm-card-meta { margin: 0 0 6px; color: var(--vm-muted); font-size: 12px; }
.vm-card-excerpt { margin: 0; color: #374151; font-size: 14px; }

.vm-article {
  background: var(--vm-card); border-radius: var(--vm-radius); padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.vm-article-header { margin-bottom: 12px; }
.vm-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--vm-muted); font-size: 12px; margin-bottom: 8px; }
.vm-article-title {
  margin: 0; font-size: 1.45rem; line-height: 1.25;
  font-family: "Oswald", "Abril Fatface", var(--vm-font);
}
.vm-hero { margin: 0 -16px 16px; }
.vm-hero img { width: 100%; }
.vm-content { font-size: 16px; line-height: 1.65; overflow-wrap: anywhere; }
.vm-content h2, .vm-content h3 { font-family: "Oswald", var(--vm-font); }
.vm-content iframe, .vm-content video { max-width: 100%; }
.vm-content .aligncenter { margin-left: auto; margin-right: auto; }
.vm-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.vm-tags a {
  background: var(--vm-bg); color: var(--vm-text) !important;
  padding: 4px 10px; border-radius: 999px; font-size: 12px;
}

.vm-comments { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--vm-border); }
.vm-comments-title { font-size: 1.1rem; font-family: "Oswald", var(--vm-font); }
.vm-comment-list { list-style: none; margin: 0; padding: 0; }
.vm-comment-list .comment {
  padding: 12px 0; border-bottom: 1px solid var(--vm-border);
}
.vm-comment-list .avatar { border-radius: 50%; }
.comment-form label { display: block; font-size: 13px; margin-bottom: 4px; }
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  width: 100%; border: 1px solid var(--vm-border); border-radius: 10px;
  padding: 10px 12px; font-size: 16px; margin-bottom: 10px;
}
.comment-form .form-submit { margin: 0; }
.comment-form input[type=submit],
.comment-form .submit {
  background: var(--vm-accent); color: #fff; border: 0; border-radius: 10px;
  padding: 12px 18px; font-weight: 700; width: 100%; font-size: 16px;
}

.navigation.pagination { display: flex; justify-content: center; gap: 6px; margin: 18px 0; }
.navigation.pagination .page-numbers {
  display: inline-flex; min-width: 36px; height: 36px; align-items: center; justify-content: center;
  background: #fff; border-radius: 10px; color: var(--vm-text) !important; font-weight: 600;
}
.navigation.pagination .current { background: var(--vm-accent); color: #fff !important; }

.vm-footer {
  text-align: center; padding: 24px 16px calc(20px + var(--vm-safe-bottom));
  color: var(--vm-muted); font-size: 13px;
}
.vm-footer a { color: var(--vm-muted) !important; }
.vm-empty { text-align: center; color: var(--vm-muted); padding: 40px 12px; }

/* WPBakery / Elementor leftovers on mobile content */
.vm-content .vc_row { margin: 0 0 12px !important; }
.vm-content .wpb_column { width: 100% !important; }


.vm-ad {
  background: var(--vm-card);
  border-radius: var(--vm-radius);
  overflow: hidden;
  padding: 8px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.vm-ad > div { width: 100%; }


.vm-brand {
  background: #111;
  line-height: 0;
}
.vm-brand a { display: block; }
.vm-brand img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 140px;
  object-position: center;
}
