/* Privacy UI uses system fonts, including before optional Google Fonts consent. */
:root { --vg-privacy-accent: #a44813; --vg-privacy-ink: #1b1712; --vg-privacy-line: #dcd6c8; }
.vg-privacy-banner, .vg-privacy-dialog, .vg-embed-placeholder, .vg-privacy-status {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--vg-privacy-ink);
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  letter-spacing: normal;
  box-sizing: border-box;
}
.vg-privacy-banner *, .vg-privacy-dialog *, .vg-embed-placeholder * { box-sizing: border-box; }
.vg-privacy-banner[hidden], .vg-embed-placeholder[hidden] { display: none !important; }
.vg-privacy-banner {
  position: fixed; z-index: 1500;
  inset: auto 16px max(16px, env(safe-area-inset-bottom));
  width: calc(100% - 32px); max-width: 1100px;
  margin: 0 auto; padding: 22px 24px;
  background: #fff; border: 1px solid var(--vg-privacy-line); border-radius: 14px;
  box-shadow: 0 12px 55px rgba(27,23,18,.2);
  max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px);
  overflow-y: auto; overscroll-behavior: contain;
  display: grid; grid-template-columns: minmax(0, 1fr) 245px; gap: 26px; align-items: center;
}
.vg-privacy-banner-content { min-width: 0; }
.vg-privacy-banner h2, .vg-privacy-dialog h2 {
  font-family: inherit; font-weight: 700; font-size: 21px;
  line-height: 1.2; text-transform: none; letter-spacing: -.25px;
  color: var(--vg-privacy-ink); margin: 0 0 10px;
}
.vg-privacy-banner p { margin: 0; font-size: 14px; line-height: 1.55; color: #49443d; }
.vg-privacy-actions { display: grid; gap: 8px; }
.vg-privacy-btn {
  -webkit-appearance: none; appearance: none; border: 1px solid var(--vg-privacy-accent);
  background: var(--vg-privacy-accent); color: #fff; border-radius: 7px;
  min-height: 44px; padding: 11px 16px; width: 100%;
  font-family: inherit; font-size: 14px; font-weight: 650; line-height: 1.3;
  letter-spacing: normal; text-transform: none; text-align: center; white-space: normal;
  cursor: pointer; box-shadow: none; margin: 0;
}
.vg-privacy-btn:hover { background: #87390f; border-color: #87390f; }
.vg-privacy-btn-secondary { background: #fff; border-color: #aaa295; color: var(--vg-privacy-ink); }
.vg-privacy-btn-secondary:hover { background: #f7f5f0; border-color: #776e61; }
.vg-privacy-banner a, .vg-privacy-dialog a, .vg-embed-placeholder a { text-decoration: underline; text-underline-offset: 3px; }
.vg-privacy-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 12px; font-size: 13px; }
.vg-privacy-links a { color: #574f44; padding-block: 3px; }
.vg-privacy-dialog {
  position: fixed; inset: 0; margin: auto;
  width: min(700px, calc(100% - 32px)); max-width: none;
  max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px);
  padding: 26px; border: 1px solid var(--vg-privacy-line); border-radius: 14px;
  background: #fff; overflow-y: auto; overscroll-behavior: contain;
  box-shadow: 0 20px 100px rgba(0,0,0,.3);
}
.vg-privacy-dialog::backdrop { background: rgba(27,23,18,.5); }
.vg-dialog-header { display: flex; align-items: flex-start; gap: 16px; justify-content: space-between; }
.vg-dialog-title { padding-top: 9px; min-width: 0; }
.vg-dialog-close {
  flex: 0 0 44px; width: 44px; height: 44px; padding: 0;
  display: grid; place-items: center;
  font-family: inherit; font-size: 29px; line-height: 1;
  border: 1px solid #c9c2b6; border-radius: 7px; background: #fff; color: #28221b; cursor: pointer;
}
.vg-dialog-close:hover { background: #f7f5f0; }
.vg-dialog-intro { margin: 8px 0 18px; color: #49443d; font-size: 14px; }
.vg-service { border: 1px solid var(--vg-privacy-line); border-radius: 9px; padding: 15px; margin: 12px 0; background: #fcfbf8; }
.vg-service-top { display: flex; align-items: center; gap: 10px; }
.vg-service-title { font-size: 15px; font-weight: 700; line-height: 1.35; flex: 1 1 auto; cursor: pointer; }
.vg-service-top input[type="checkbox"] { width: 24px; height: 24px; flex: 0 0 24px; margin: 0; cursor: pointer; accent-color: var(--vg-privacy-accent); }
.vg-service-top input:disabled { cursor: default; }
.vg-always { font-size: 11px; color: #5c574c; flex: 0 0 auto; }
.vg-service-description { font-size: 13px; color: #49443d; line-height: 1.55; margin: 10px 0 8px; }
.vg-service-details { margin-top: 5px; font-size: 12px; color: #5c574c; overflow-wrap: anywhere; }
.vg-service-details summary { cursor: pointer; padding: 5px 0; font-weight: 600; }
.vg-service-details p { margin: 7px 0; }
.vg-service-details a { display: inline-block; padding: 5px 0; }
.vg-privacy-note { font-size: 12px; line-height: 1.6; margin: 12px 0; color: #5c574c; }
.vg-dialog-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 20px; }
.vg-privacy-status:not(:empty) {
  position: fixed; z-index: 1501; bottom: max(16px, env(safe-area-inset-bottom)); right: 16px;
  max-width: min(430px, calc(100% - 32px)); padding: 14px 18px;
  background: #fff; border: 1px solid var(--vg-privacy-line); border-radius: 8px;
  box-shadow: 0 5px 22px rgba(27,23,18,.18); font-size: 13px; margin: 0;
  pointer-events: none;
}
.vg-consent-slot {
  position: relative !important; padding: 0 !important; height: auto !important;
  width: 100% !important; max-width: 100%; min-width: 0;
  aspect-ratio: 16 / 9; min-height: 255px;
}
.vg-consent-media { position: absolute; inset: 0; width: 100%; height: 100%; background: #ece8de; }
.vg-consent-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vg-embed-placeholder {
  position: absolute; inset: 0; overflow-y: auto;
  display: flex; align-items: center; justify-content: center;
  padding: 22px; background: #ece8de;
}
.vg-embed-inner { max-width: 530px; width: 100%; text-align: center; margin: auto; }
.vg-embed-symbol { display: block; font-size: 26px; line-height: 1; color: var(--vg-privacy-accent); margin-bottom: 10px; }
.vg-embed-placeholder strong { display: block; font-family: inherit; font-size: 17px; line-height: 1.35; }
.vg-embed-placeholder p { font-size: 13px; color: #49443d; margin: 8px 0 12px; line-height: 1.5; }
.vg-embed-placeholder .vg-privacy-btn { width: auto; min-width: 180px; }
.vg-embed-placeholder .vg-watch-link { display: block; width: fit-content; margin: 6px auto 0; padding: 5px 0; font-size: 12px; color: #49443d; }
.vg-privacy-banner :focus-visible, .vg-privacy-dialog :focus-visible, .vg-embed-placeholder :focus-visible, [data-vg-open-consent]:focus-visible {
  outline: 3px solid #673006; outline-offset: 3px;
}
html:not(.vg-external-fonts-enabled) :is(h1,h2,h3,h4,.headline) { font-weight: 750; }
.vg-privacy-banner h2, .vg-privacy-dialog h2 { font-weight: 700 !important; }
@media (max-width: 760px) {
  .vg-privacy-banner { grid-template-columns: minmax(0, 1fr); gap: 15px; padding: 19px; }
  .vg-privacy-banner .vg-privacy-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vg-privacy-banner .vg-privacy-btn { padding-inline: 8px; font-size: 13px; }
}
@media (max-width: 520px) {
  .vg-privacy-banner { inset: auto 10px max(10px, env(safe-area-inset-bottom)); width: calc(100% - 20px); padding: 17px; gap: 13px; border-radius: 10px; }
  .vg-privacy-banner h2 { font-size: 20px; }
  .vg-privacy-banner p { font-size: 13px; }
  .vg-privacy-banner .vg-privacy-actions { grid-template-columns: 1fr; }
  .vg-privacy-banner .vg-privacy-btn { font-size: 14px; }
  .vg-privacy-dialog { width: calc(100% - 20px); max-height: calc(100vh - 20px); max-height: calc(100dvh - 20px); padding: 17px; border-radius: 10px; }
  .vg-privacy-dialog h2 { font-size: 20px; }
  .vg-dialog-actions { grid-template-columns: 1fr; }
  .vg-service { padding: 12px; }
  .vg-service-top { gap: 8px; }
  .vg-service-title { font-size: 14px; }
  .vg-always { max-width: 66px; text-align: right; font-size: 10px; }
  .vg-embed-placeholder { padding: 18px; }
  .vg-consent-slot { min-height: 250px; }
  .vg-embed-symbol { font-size: 22px; margin-bottom: 8px; }
}
@media (prefers-reduced-motion: reduce) { .vg-privacy-dialog, .vg-privacy-banner { scroll-behavior: auto; } }

/* Brand integration, version 20260917-cookie2. No font files or external URLs. */
.vg-privacy-banner {
  background: #f7f5f0;
  border-top: 4px solid #e0721f;
  border-radius: 12px;
  box-shadow: 0 15px 60px rgba(27,23,18,.22);
}
.vg-privacy-banner .vg-privacy-brand {
  color: #a44813; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; line-height: 1.5; margin: 0 0 9px;
}
.vg-privacy-banner .vg-privacy-btn,
.vg-dialog-actions .vg-privacy-btn {
  min-height: 46px; border-radius: 8px;
}
.vg-privacy-dialog {
  border-top: 4px solid #e0721f;
  z-index: 1600;
}
.vg-privacy-dialog .vg-service-top input[type="checkbox"] {
  -webkit-appearance: none; appearance: none;
  position: relative; width: 44px; height: 26px; flex-basis: 44px;
  border: 1px solid #8e877c; border-radius: 20px; background: #e8e3d9;
}
.vg-service-top input[type="checkbox"]::before {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%; background: #5c574c;
  transition: transform .15s ease;
}
.vg-privacy-dialog .vg-service-top input[type="checkbox"]:checked {
  background: #a44813; border-color: #a44813;
}
.vg-service-top input[type="checkbox"]:checked::before { transform: translateX(18px); background: white; }
.vg-privacy-dialog .vg-service-top input[type="checkbox"]:disabled {
  background: #e8e3d9; border-color: #b5ada0; opacity: 1;
}
.vg-service-top input[type="checkbox"]:disabled::before { background: #5c574c; }
.vg-privacy-nojs { display: block; max-width: 1100px; margin: 16px auto; padding: 16px; font-family: sans-serif; font-size: 14px; }
/* Suppress only the obsolete informational notice, not the new choices. */
.cookie-banner { display: none !important; }
/* Keep branding readable with system fonts before external fonts are enabled. */
html:not(.vg-external-fonts-enabled) body { font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif; }
html:not(.vg-external-fonts-enabled) :is(h1,h2,h3,h4,.headline,.tile-name,.review-card .topic) {
  font-family: Impact,'Avenir Next Condensed','Arial Narrow',sans-serif;
}
html:not(.vg-external-fonts-enabled) :is(input,textarea,select,button) {
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
}
html:not(.vg-external-fonts-enabled) :is(.vg-privacy-banner,.vg-privacy-dialog) h2 {
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
}
@media (forced-colors: active) {
  .vg-privacy-dialog .vg-service-top input[type="checkbox"] { appearance: auto; width: 24px; flex-basis: 24px; }
  .vg-service-top input[type="checkbox"]::before { display: none; }
}
@media (prefers-reduced-motion: reduce) { .vg-service-top input[type="checkbox"]::before { transition: none; } }

/* Merged into the current upload, 20260918-andy-cookie1. */
.vg-privacy-noscript { margin: 18px auto; padding: 12px 18px; max-width: 1100px; font: 14px/1.5 system-ui,sans-serif; }
.vg-privacy-noscript a { text-decoration: underline; }
@media print {
  .vg-privacy-banner, .vg-privacy-dialog, .vg-privacy-status { display: none !important; }
}

.vg-embed-placeholder .vg-video-settings { display: inline-block; text-decoration: none; }
