/* article-page.css — стили для статей vavada.it (sicuro, bonus, vavada-vs-adm, recensione) */
/* Совместим с brand-DNA vavada.it: dark palette + gold/red accents */

:root {
  --vc-bg: #0f1320;
  --vc-bg-alt: #161b2b;
  --vc-bg-card: #1b2236;
  --vc-text: #e8eaf3;
  --vc-text-muted: #9aa3bd;
  --vc-text-dim: #6c7593;
  --vc-accent: #ffb648; /* gold */
  --vc-accent-2: #e54d4d; /* red */
  --vc-accent-hover: #ffd47a;
  --vc-border: #2b3450;
  --vc-border-soft: #1f2842;
  --vc-link: #74a8ff;
  --vc-link-hover: #ffb648;
  --vc-success: #4ade80;
  --vc-warning: #f59e0b;
  --vc-danger: #ef4444;
  --vc-radius: 8px;
  --vc-radius-lg: 14px;
  --vc-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* Reset & base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--vc-bg);
  color: var(--vc-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header (sticky top with logo + CTA) */
.sticky-top.vs_header-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vc-bg-alt);
  border-bottom: 1px solid var(--vc-border-soft);
  padding: 12px 0;
}

.sticky-top .container {
  max-width: 1200px;
}

.sticky-top .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-top .col-12 {
  flex: 1;
}

.sticky-top .col-md-4,
.sticky-top .col-md-8 {
  flex: initial;
}

.sticky-top .col-md-4 {
  width: auto;
}

.sticky-top .col-md-8 {
  flex: 1;
}

.vs_logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.vs_logo img {
  height: 36px;
  width: auto;
}

.sticky-top .d-flex {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.vs_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.vs_btn-bubble {
  background: var(--vc-bg-card);
  color: var(--vc-text);
  border: 1px solid var(--vc-border);
}

.vs_btn-bubble:hover {
  background: var(--vc-border);
  transform: translateY(-1px);
}

.vs_btn-bubble.red {
  background: linear-gradient(180deg, #ef5b5b, #c93030);
  color: #fff;
  border: 1px solid #b32a2a;
  box-shadow: 0 2px 12px rgba(229, 77, 77, 0.35);
}

.vs_btn-bubble.red:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

a {
  color: var(--vc-link);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--vc-link-hover);
  text-decoration: underline;
}

/* Breadcrumb */
.vc-it-breadcrumb-nav {
  background: var(--vc-bg-alt);
  border-bottom: 1px solid var(--vc-border-soft);
  padding: 10px 0;
  font-size: 14px;
  color: var(--vc-text-muted);
}

.vc-it-bc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-it-bc-list li {
  display: inline-flex;
  align-items: center;
}

.vc-it-bc-list li + li::before {
  content: "›";
  color: var(--vc-text-dim);
  margin-right: 8px;
}

.vc-it-bc-list li a {
  color: var(--vc-text-muted);
}

.vc-it-bc-list li[aria-current="page"] {
  color: var(--vc-accent);
  font-weight: 500;
}

/* Article main */
.vc-it-article-main {
  padding: 40px 0 80px;
  background: var(--vc-bg);
}

.vc-it-article-body {
  background: transparent;
}

/* Headings */
.vc-it-article-body h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 800;
  color: var(--vc-text);
  letter-spacing: -0.01em;
}

.vc-it-article-body h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  line-height: 1.3;
  margin: 48px 0 16px;
  font-weight: 700;
  color: var(--vc-text);
  padding-top: 8px;
  border-top: 2px solid var(--vc-border-soft);
  padding-block-start: 24px;
}

.vc-it-article-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 32px;
}

.vc-it-article-body h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.4;
  margin: 32px 0 12px;
  font-weight: 600;
  color: var(--vc-accent);
}

.vc-it-article-body h4 {
  font-size: 18px;
  margin: 24px 0 8px;
  font-weight: 600;
  color: var(--vc-text);
}

/* Paragraphs */
.vc-it-article-body p {
  margin: 0 0 16px;
  color: var(--vc-text);
}

.vc-it-article-body p em {
  color: var(--vc-text-muted);
  font-style: italic;
}

.vc-it-article-body strong {
  color: var(--vc-text);
  font-weight: 600;
}

/* Author byline (italic line near top) */
.vc-it-article-body > p:first-of-type em {
  display: block;
  color: var(--vc-text-muted);
  font-style: normal;
  font-size: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--vc-border-soft);
  margin-bottom: 20px;
}

/* Lists */
.vc-it-article-body ul,
.vc-it-article-body ol {
  margin: 0 0 16px;
  padding-left: 24px;
  color: var(--vc-text);
}

.vc-it-article-body li {
  margin: 6px 0;
}

.vc-it-article-body li::marker {
  color: var(--vc-accent);
}

.vc-it-article-body ul li::marker {
  content: "▸ ";
}

/* Tables */
.vc-it-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--vc-bg-card);
  border-radius: var(--vc-radius);
  overflow: hidden;
  box-shadow: var(--vc-shadow);
  font-size: 14px;
}

.vc-it-article-body table th,
.vc-it-article-body table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--vc-border-soft);
  vertical-align: top;
}

.vc-it-article-body table th {
  background: var(--vc-bg-alt);
  font-weight: 600;
  color: var(--vc-accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vc-it-article-body table tr:last-child td {
  border-bottom: none;
}

.vc-it-article-body table tr:hover td {
  background: rgba(255, 182, 72, 0.04);
}

/* Blockquote (responsible gambling block) */
.vc-it-article-body blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: rgba(255, 182, 72, 0.08);
  border-left: 4px solid var(--vc-accent);
  border-radius: var(--vc-radius);
  color: var(--vc-text);
}

.vc-it-article-body blockquote p {
  margin: 8px 0;
}

.vc-it-article-body blockquote p:first-child {
  margin-top: 0;
}

.vc-it-article-body blockquote p:last-child {
  margin-bottom: 0;
}

.vc-it-article-body blockquote strong {
  color: var(--vc-accent);
}

/* HR separators (---) */
.vc-it-article-body hr {
  border: none;
  height: 1px;
  background: var(--vc-border-soft);
  margin: 32px 0;
}

/* Inline code */
.vc-it-article-body code {
  background: var(--vc-bg-card);
  color: var(--vc-accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: "SF Mono", "Monaco", "Menlo", monospace;
}

/* Final CTA button (inserted via post-processing) */
.vc-it-cta-final {
  margin: 32px 0;
  text-align: center;
}

.vc-it-cta-final .vs_btn-bubble.red {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

/* Disclosure link in hero (if used) */
.vc-it-disclosure-link {
  color: var(--vc-text-muted);
  font-size: 13px;
  margin-left: 4px;
}

/* Footer */
.vc-it-footer {
  background: var(--vc-bg-alt);
  border-top: 1px solid var(--vc-border-soft);
  padding: 40px 0 24px;
  margin-top: 60px;
}

.vc-it-foot-legal {
  font-size: 13px;
  line-height: 1.6;
  color: var(--vc-text-muted);
}

.vc-it-foot-legal-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.vc-it-foot-legal-icon img {
  width: 64px;
  height: auto;
  flex-shrink: 0;
}

.vc-it-foot-legal-body {
  flex: 1;
  min-width: 280px;
}

.vc-it-foot-legal-body p {
  margin: 0 0 12px;
}

.vc-it-foot-legal-body strong {
  color: var(--vc-text);
}

.vc-it-foot-legal-body a {
  color: var(--vc-accent);
}

.vc-it-foot-legal-rg {
  padding: 12px;
  background: rgba(255, 182, 72, 0.06);
  border-radius: var(--vc-radius);
  border-left: 3px solid var(--vc-accent);
}

/* Italian flag stripe */
.vc-it-flag-strip {
  display: flex;
  height: 4px;
  margin: 24px 0 16px;
  border-radius: 2px;
  overflow: hidden;
}

.vc-it-flag-strip span {
  flex: 1;
}

.vc-it-flag-strip span:nth-child(1) {
  background: #008c45;
}

.vc-it-flag-strip span:nth-child(2) {
  background: #f4f5f0;
}

.vc-it-flag-strip span:nth-child(3) {
  background: #cd212a;
}

/* Lang switch */
.vc-it-lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--vc-border-soft);
  border-bottom: 1px solid var(--vc-border-soft);
  font-size: 14px;
}

.vc-it-lang-key {
  font-weight: 600;
  color: var(--vc-text);
  margin-right: 8px;
}

.vc-it-lang-switch a {
  color: var(--vc-text-muted);
  transition: color 0.15s ease;
}

.vc-it-lang-switch a:hover {
  color: var(--vc-accent);
}

/* Byline */
.vc-it-foot-byline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 12px;
  color: var(--vc-text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

.vc-it-foot-byline strong {
  color: var(--vc-text-muted);
}

.vc-it-foot-byline a {
  color: var(--vc-accent);
}

/* FAQ-style ### questions (h3 in FAQ block) — slight visual boost */
.vc-it-article-body h2 + .faq-item h3,
.vc-it-article-body h3 {
  font-size: 19px;
}

/* Author bio block (end of article — E-E-A-T signal) */
.vc-it-author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 48px 0 24px;
  padding: 24px;
  background: linear-gradient(135deg, var(--vc-bg-card) 0%, var(--vc-bg-alt) 100%);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  box-shadow: var(--vc-shadow);
  flex-wrap: wrap;
}

.vc-it-author-avatar {
  flex-shrink: 0;
}

.vc-it-author-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--vc-accent);
  box-shadow: 0 4px 16px rgba(255, 182, 72, 0.25);
  display: block;
}

.vc-it-author-body {
  flex: 1;
  min-width: 240px;
}

.vc-it-author-meta {
  margin-bottom: 12px;
}

.vc-it-author-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vc-accent);
  font-weight: 600;
  margin-bottom: 4px;
}

.vc-it-author-name {
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--vc-text);
  border-top: none;
  padding-top: 0;
}

.vc-it-author-title {
  font-size: 14px;
  color: var(--vc-text-muted);
  margin: 0 0 12px;
}

.vc-it-author-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--vc-text);
  margin: 0 0 12px;
}

.vc-it-author-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.vc-it-author-expertise li {
  font-size: 12px;
  background: rgba(255, 182, 72, 0.1);
  color: var(--vc-accent);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 182, 72, 0.2);
}

.vc-it-author-expertise li::marker {
  content: "";
}

.vc-it-author-cta {
  margin: 0;
  font-size: 14px;
}

.vc-it-author-cta a {
  color: var(--vc-accent);
  font-weight: 600;
}

.vc-it-author-cta a:hover {
  color: var(--vc-accent-hover);
}

@media (max-width: 720px) {
  .vc-it-author-block {
    padding: 18px;
    gap: 16px;
  }

  .vc-it-author-avatar img {
    width: 72px;
    height: 72px;
    border-width: 2px;
  }

  .vc-it-author-name {
    font-size: 20px;
  }
}

/* Reviews section (user reviews backing AggregateRating) */
.vc-it-reviews-section {
  background: var(--vc-bg-alt);
  padding: 60px 0;
  border-top: 1px solid var(--vc-border-soft);
  border-bottom: 1px solid var(--vc-border-soft);
}

.vc-it-reviews-h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--vc-text);
  margin: 0 0 24px;
  text-align: center;
}

.vc-it-reviews-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--vc-bg-card);
  border-radius: var(--vc-radius-lg);
  border: 1px solid var(--vc-border);
  flex-wrap: wrap;
}

.vc-it-reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  min-width: 140px;
}

.vc-it-reviews-score {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--vc-accent);
}

.vc-it-reviews-stars-big {
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--vc-accent);
  margin: 6px 0 4px;
}

.vc-it-reviews-count {
  font-size: 13px;
  color: var(--vc-text-muted);
}

.vc-it-reviews-count strong {
  color: var(--vc-text);
}

.vc-it-reviews-intro {
  flex: 1;
  min-width: 280px;
  margin: 0;
  color: var(--vc-text);
  font-size: 14px;
  line-height: 1.6;
}

.vc-it-reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.vc-it-reviews-hidden {
  display: contents;
}

.vc-it-review {
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  padding: 18px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.vc-it-review:hover {
  border-color: var(--vc-accent);
  transform: translateY(-2px);
}

.vc-it-review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.vc-it-review-author {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.vc-it-review-name {
  font-weight: 600;
  color: var(--vc-text);
}

.vc-it-review-city {
  color: var(--vc-text-dim);
  font-size: 12px;
}

.vc-it-review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.vc-it-review-stars {
  color: var(--vc-accent);
  font-size: 14px;
  letter-spacing: 1px;
}

.vc-it-review-date {
  font-size: 11px;
  color: var(--vc-text-dim);
}

.vc-it-review-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--vc-text);
  border: none;
  padding: 0;
}

.vc-it-review-body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--vc-text);
  margin: 0;
}

.vc-it-reviews-toggle {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 24px auto 16px;
  padding: 12px 24px;
  background: transparent;
  color: var(--vc-accent);
  border: 2px solid var(--vc-accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.vc-it-reviews-toggle:hover {
  background: var(--vc-accent);
  color: var(--vc-bg);
}

.vc-it-reviews-disclaimer {
  font-size: 12px;
  color: var(--vc-text-dim);
  text-align: center;
  max-width: 720px;
  margin: 16px auto 0;
  line-height: 1.6;
  padding: 0 16px;
}

@media (max-width: 720px) {
  .vc-it-reviews-section {
    padding: 40px 0;
  }

  .vc-it-reviews-summary {
    padding: 16px;
    gap: 16px;
  }

  .vc-it-reviews-score {
    font-size: 42px;
  }

  .vc-it-reviews-list {
    grid-template-columns: 1fr;
  }

  .vc-it-review {
    padding: 14px;
  }
}

/* Payment / Games hub cards */
.vc-it-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.vc-it-payment-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--vc-bg-card);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  text-decoration: none;
  color: var(--vc-text);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.vc-it-payment-card:hover:not(.vc-it-payment-card-placeholder) {
  border-color: var(--vc-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 182, 72, 0.15);
}

.vc-it-payment-card-placeholder {
  opacity: 0.65;
  cursor: default;
}

.vc-it-payment-card-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 182, 72, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 182, 72, 0.2);
}

.vc-it-payment-card-body {
  flex: 1;
  min-width: 0;
}

.vc-it-payment-card-body h3 {
  margin: 0 0 4px;
  font-size: 17px;
  color: var(--vc-text);
  border: none;
  padding: 0;
}

.vc-it-payment-card-body p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--vc-text-muted);
  line-height: 1.5;
}

.vc-it-payment-card-cta {
  font-size: 13px;
  color: var(--vc-accent);
  font-weight: 600;
}

@media (max-width: 720px) {
  .vc-it-payment-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile responsive */
@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }

  .sticky-top.vs_header-top {
    padding: 10px 0;
  }

  .sticky-top .d-flex {
    justify-content: flex-start;
  }

  .vs_btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .vc-it-article-body h1 {
    font-size: 26px;
  }

  .vc-it-article-body h2 {
    font-size: 22px;
    margin: 36px 0 12px;
  }

  .vc-it-article-body h3 {
    font-size: 18px;
  }

  .vc-it-article-body table {
    display: block;
    overflow-x: auto;
    font-size: 13px;
  }

  .vc-it-foot-legal-inner {
    flex-direction: column;
    gap: 16px;
  }

  .vc-it-foot-legal-icon img {
    width: 48px;
  }

  .vc-it-foot-byline {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .vc-it-article-body h1 {
    font-size: 22px;
  }

  .vc-it-article-body h2 {
    font-size: 19px;
  }
}

/* ============================================================
   AUTO-INJECTED by frontend-qa 2026-05-21
   Missing component styles for vavada.it
   ============================================================ */

/* App steps */
.vc-app-step { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--vc-border, #2b3450); }
.vc-app-step:last-child { border-bottom: none; }
.vc-app-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--vc-accent, #ffb648); color: #000; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vc-app-step-text { flex: 1; font-size: 14px; color: var(--vc-text, #e8eaf3); line-height: 1.5; }

/* Author card */
.vc-author-card { display: flex; gap: 14px; padding: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; margin: 20px 0; align-items: flex-start; }

/* Crypto icon/time */
.vc-crypto-icon { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.vc-crypto-time { font-size: 12px; color: var(--vc-text-muted, #9aa3bd); }

/* Final score + CTA */
.vc-final-score { text-align: center; padding: 20px; background: rgba(255,182,72,0.08); border: 1px solid rgba(255,182,72,0.2); border-radius: 10px; margin: 20px 0; }
.vc-final-score-num { font-size: 48px; font-weight: 900; color: var(--vc-accent, #ffb648); line-height: 1; }
.vc-final-score-of { font-size: 20px; color: var(--vc-text-muted, #9aa3bd); }
.vc-final-score-label { font-size: 14px; color: var(--vc-text-muted, #9aa3bd); margin-top: 6px; }
.vc-final-score-stars { color: var(--vc-accent, #ffb648); font-size: 20px; margin-top: 4px; }
.vc-final-reasons { list-style: none; padding: 0; margin: 12px 0; }
.vc-final-reasons li { padding: 6px 0 6px 24px; position: relative; font-size: 14px; }
.vc-final-reasons li::before { content: "✓"; position: absolute; left: 0; color: var(--vc-success, #4ade80); font-weight: 700; }
.vc-final-cta { text-align: center; padding: 24px 16px; background: rgba(255,182,72,0.06); border-radius: 10px; margin: 24px 0; }
.vc-final-cta-btn { display: inline-block; padding: 14px 32px; background: var(--vc-accent, #ffb648); color: #000; font-weight: 700; border-radius: 6px; text-decoration: none; font-size: 16px; }
.vc-final-cta-btn:hover { background: var(--vc-accent-hover, #ffd47a); }
.vc-final-cta-sub { font-size: 12px; color: var(--vc-text-muted, #9aa3bd); margin-top: 8px; }

/* Article CTA + list */
.vc-it-article-cta { display: inline-block; padding: 12px 24px; background: var(--vc-accent, #ffb648); color: #000; font-weight: 700; border-radius: 6px; text-decoration: none; font-size: 15px; margin: 12px 0; }
.vc-it-articles-list { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 12px; }
.vc-it-articles-list li { padding: 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--vc-border, #2b3450); border-radius: 6px; }
.vc-it-articles-list a { color: var(--vc-link, #74a8ff); text-decoration: none; font-size: 14px; }

/* Author hero */
.vc-it-author-hero { display: flex; gap: 20px; padding: 24px; background: var(--vc-bg-card, #1b2236); border-radius: 10px; margin: 20px 0; align-items: flex-start; }
.vc-it-author-hero-avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 2px solid var(--vc-accent, #ffb648); flex-shrink: 0; }
.vc-it-author-hero-body { flex: 1; min-width: 0; }
.vc-it-author-hero-label { font-size: 11px; color: var(--vc-accent, #ffb648); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.vc-it-author-hero-title { font-size: 22px; font-weight: 700; color: var(--vc-text, #e8eaf3); margin-bottom: 6px; }
.vc-it-author-hero-intro { font-size: 14px; color: var(--vc-text-muted, #9aa3bd); line-height: 1.6; }

/* Contact box */
.vc-it-contact-box { padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--vc-border, #2b3450); border-radius: 8px; margin: 16px 0; }
.vc-it-contact-email { color: var(--vc-link, #74a8ff); font-size: 14px; text-decoration: none; }
.vc-it-contact-email:hover { color: var(--vc-accent, #ffb648); }

/* Expertise + methods + transparency */
.vc-it-expertise-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin: 16px 0; }
.vc-it-method-list { list-style: none; padding: 0; margin: 12px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.vc-it-method-list li { padding: 4px 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--vc-border, #2b3450); border-radius: 4px; font-size: 13px; color: var(--vc-text-muted, #9aa3bd); }
.vc-it-transparency-box { padding: 16px; background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.2); border-radius: 8px; margin: 16px 0; font-size: 14px; color: var(--vc-text, #e8eaf3); line-height: 1.6; }

/* Meta item */
.vc-meta-item { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--vc-text-muted, #9aa3bd); }

/* Mobile feature */
.vc-mobile-feature { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--vc-border, #2b3450); }
.vc-mobile-feature:last-child { border-bottom: none; }

/* Promo */
.vc-promo-title { font-size: 18px; font-weight: 700; color: var(--vc-text, #e8eaf3); margin-bottom: 6px; }
.vc-promo-text { font-size: 14px; color: var(--vc-text-muted, #9aa3bd); line-height: 1.6; }

/* Pros/cons */
.vc-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
@media (max-width: 600px) { .vc-pros-cons { grid-template-columns: 1fr; } }

/* Provider tag */
.vc-provider-tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--vc-border, #2b3450); border-radius: 20px; font-size: 12px; color: var(--vc-text-muted, #9aa3bd); }

/* Verdict card */
.vc-verdict-card { padding: 20px; background: var(--vc-bg-card, #1b2236); border: 1px solid rgba(255,182,72,0.2); border-radius: 10px; margin: 20px 0; }

/* VIP name/cb */
.vc-vip-name { font-weight: 700; color: var(--vc-text, #e8eaf3); font-size: 15px; }
.vc-vip-cb { font-size: 12px; color: var(--vc-accent, #ffb648); }
