/* Commit 8 · consent manager and blocked external content */
.external-consent-placeholder {
  width: 100%; min-height: 360px; display: grid; place-items: center; padding: 28px;
  background: var(--vc-surface-soft); border: 1px solid var(--vc-border); text-align: center;
}
.external-consent-placeholder-compact { min-height: 250px; }
.external-consent-placeholder-inner { max-width: 460px; display: grid; justify-items: center; gap: 12px; }
.external-consent-placeholder-inner strong { font-size: 1.1rem; font-weight: 500; }
.external-consent-placeholder-inner p { margin: 0; color: var(--vc-muted); font-size: .9rem; line-height: 1.55; }
.footer-consent-link { border: 0; padding: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; }
.footer-legal .footer-consent-link { font-size: .82rem; }
.footer-consent-link:hover { text-decoration: underline; }
.consent-banner {
  position: fixed; z-index: 10000; left: 20px; right: 20px; bottom: 20px; max-width: 1180px; margin: auto;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: end;
  padding: 26px 30px; background: #fffdf9; border: 1px solid var(--vc-border-strong);
  box-shadow: 0 24px 80px rgba(34,29,25,.18);
}
.consent-banner h2, .consent-modal h2 { margin: 0 0 10px; font-size: 1.35rem; font-weight: 500; letter-spacing: -.03em; }
.consent-banner p, .consent-modal p { margin: 0; color: var(--vc-muted); font-size: .9rem; line-height: 1.55; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.consent-actions .btn { min-height: 44px; }
.consent-links { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; font-size: .78rem; text-decoration: underline; }
.consent-close { position: absolute; top: 10px; right: 12px; border: 0; background: transparent; cursor: pointer; font-size: 1.45rem; color: var(--vc-muted); }
.consent-overlay { position: fixed; z-index: 10001; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(34,29,25,.46); }
.consent-modal { position: relative; width: min(620px, 100%); max-height: min(760px, calc(100vh - 40px)); overflow: auto; padding: 34px; background: #fffdf9; border: 1px solid var(--vc-border-strong); }
.consent-option { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 20px 0; border-top: 1px solid var(--vc-border); }
.consent-option:first-of-type { margin-top: 24px; }
.consent-option strong { display: block; margin-bottom: 5px; font-weight: 500; }
.consent-option input { width: 22px; height: 22px; accent-color: var(--vc-green); }
.consent-always { color: var(--vc-green); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.consent-modal > .btn { width: 100%; margin-top: 24px; }
@media (max-width: 760px) {
  .consent-banner { left: 10px; right: 10px; bottom: 10px; grid-template-columns: 1fr; gap: 20px; padding: 22px; }
  .consent-actions { display: grid; grid-template-columns: 1fr; }
  .consent-actions .btn { width: 100%; }
  .consent-modal { padding: 26px 22px; }
  .external-consent-placeholder { min-height: 280px; }
}
