/* ------------------------------------------------------------------
   TDG Warranty - public claim pages (house style shared with the
   core_charge public core-return flow, but under its own wz-* namespace so the
   two modules can never collide when both stylesheets are on one site).
   Loaded per page from the public templates - NOT part of a bundle, because
   the body background below is page specific.
   ------------------------------------------------------------------ */
body {
  background: #f5f8ff;
}
.wz-core-page {
  --wz-navy: #07164b;
  --wz-blue: #0b5cff;
  --wz-blue-dark: #0644c8;
  --wz-soft-blue: #edf4ff;
  --wz-border: #dbe5f4;
  --wz-muted: #647089;
  --wz-success: #10b981;
  min-height: 100vh;
  color: var(--wz-navy);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(11, 92, 255, .10), transparent 24rem),
    linear-gradient(180deg, #f7faff 0%, #eef5ff 100%);
}
.wz-core-topbar {
  height: 68px;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(219,229,244,.95);
  box-shadow: 0 3px 16px rgba(7,22,75,.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.wz-core-topbar .container-fluid {
  max-width: 1720px;
  height: 100%;
}
.wz-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eaf2ff, #fff);
  border: 1px solid #d8e5f8;
  color: var(--wz-blue);
  font-size: 22px;
}
.wz-brand-title {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}
.wz-brand-title span {
  color: #03a86b;
}
.wz-brand-subtitle {
  font-size: 10px;
  letter-spacing: .16em;
  color: #78849b;
  font-weight: 800;
  margin-top: 4px;
}
.wz-nav-link {
  color: var(--wz-navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
}
.wz-nav-link:hover {
  color: var(--wz-blue);
  background: var(--wz-soft-blue);
}
.wz-sign-in {
  border-radius: 6px;
  padding: 10px 28px;
  font-weight: 900;
  background: var(--wz-blue);
  border: 1px solid var(--wz-blue);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(11,92,255,.18);
}
.wz-sign-in:hover {
  background: var(--wz-blue-dark);
  border-color: var(--wz-blue-dark);
}
.wz-core-page {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: none;
  flex: 1 1 100%;
  grid-column: 1 / -1;
  float: none;
  clear: both;
}
/* Layout guard: website themes sometimes style `main`/`div` descendants
   (flex/grid/inline-block). Pin the page skeleton so the two-column grid
   always gets the full shell width. */
.wz-core-page .wz-shell {
  display: block !important;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 34px 18px 72px;
  float: none;
}
.wz-core-page .wz-shell > * {
  float: none;
  width: auto;
  max-width: none;
}
.wz-core-page .wz-shell > .wz-page-title,
.wz-core-page .wz-shell > .wz-page-subtitle {
  display: block;
  width: 100%;
}
.wz-page-title {
  font-size: clamp(30px, 2.45vw, 48px);
  font-weight: 950;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -.035em;
}
.wz-page-subtitle {
  color: #384563;
  margin: 8px 0 18px;
  font-size: 15px;
  font-weight: 600;
}
.wz-core-page .wz-content-grid {
  display: grid !important;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  width: 100%;
}
.wz-core-page .wz-content-grid > *,
.wz-core-page .wz-content-grid-reverse > * {
  min-width: 0;
  width: auto;
  max-width: none;
  float: none;
  display: block;
}
.wz-core-page .wz-main-column { display: block; min-width: 0; }
.wz-side-column {
  position: static;
  max-height: none;
  overflow: visible;
  min-width: 0;
}
.wz-card {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--wz-border);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(7,22,75,.08);
}
.wz-form-card {
  padding: 18px 20px 12px;
}
.wz-stepper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: start;
  gap: 0;
  padding: 0 16px 14px;
}
.wz-step {
  position: relative;
  text-align: center;
}
.wz-step:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c9d5e8;
  z-index: 0;
}
.wz-step:first-child:before { left: 50%; }
.wz-step:last-child:before { right: 50%; }
.wz-step.is-active:before,
.wz-step.is-done:before { background: var(--wz-blue); }
.wz-step-number {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 1px solid #cbd8ea;
  background: #fff;
  color: var(--wz-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: 12px;
}
.wz-step.is-active .wz-step-number,
.wz-step.is-done .wz-step-number {
  background: var(--wz-blue);
  color: #fff;
  border-color: var(--wz-blue);
}
.wz-step-label {
  font-size: 12px;
  font-weight: 900;
  color: var(--wz-navy);
}
.wz-section {
  border: 1px solid var(--wz-border);
  border-radius: 8px;
  padding: 13px 16px 16px;
  margin-bottom: 7px;
  background: rgba(255,255,255,.96);
}
.wz-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 12px;
}
.wz-section-number {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--wz-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 950;
}
.wz-form-label {
  font-size: 12px;
  font-weight: 850;
  color: #182854;
  margin-bottom: 5px;
}
.wz-required:after {
  content: " *";
  color: #e11d48;
}
.wz-core-page .form-control,
.wz-core-page .form-select {
  min-height: 34px;
  border-radius: 5px;
  border-color: #ccd8ea;
  font-size: 12px;
  color: #172554;
  font-weight: 600;
  box-shadow: none !important;
}
.wz-core-page textarea.form-control {
  min-height: 66px;
}
.wz-core-page .form-control:focus,
.wz-core-page .form-select:focus {
  border-color: var(--wz-blue);
}
.wz-help-text {
  font-size: 11px;
  color: #6b7892;
  margin-top: 4px;
  font-weight: 600;
}
.wz-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 12px;
}
.wz-method-option {
  border: 1px solid var(--wz-border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  min-height: 58px;
  background: #fff;
}
.wz-method-option:hover {
  border-color: var(--wz-blue);
  background: #f8fbff;
}
.wz-method-option input {
  width: 18px;
  height: 18px;
}
.wz-method-option:has(input:checked) {
  border-color: var(--wz-blue);
  box-shadow: 0 0 0 1px var(--wz-blue) inset;
  background: #fbfdff;
}
.wz-method-icon {
  font-size: 28px;
  color: #3868d9;
  width: 44px;
  text-align: center;
}
.wz-method-title {
  font-size: 13px;
  font-weight: 950;
}
.wz-method-text {
  font-size: 11px;
  color: #56637d;
  font-weight: 700;
}
.wz-evblock { border: 1.5px solid var(--wz-border); border-radius: 12px; padding: 12px 14px; background: #fff; height: 100%; }
.wz-evblock-title { font-weight: 700; font-size: 12.5px; color: #101828; margin-bottom: 8px; }
.wz-evblock-sub { font-size: 11px; color: #6b7280; margin: -4px 0 8px; }
.wz-evblock-chip { display: inline-block; background: #f3f4f6; border: 1px solid var(--wz-border); border-radius: 6px; padding: 2px 8px; font-size: 11.5px; color: #374151; }
.wz-pcard { border: 1.5px solid var(--wz-border); border-radius: 12px; padding: 14px 16px; margin-bottom: 12px; background: #fff; transition: border-color .15s; }
.wz-pcard.is-selected { border-color: #2b4eff; box-shadow: 0 0 0 3px rgba(43,78,255,.08); }
.wz-pcard-head { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.wz-pcard-head input[type="checkbox"] { width: 20px; height: 20px; flex: 0 0 auto; }
.wz-pcard-title { font-weight: 700; font-size: 14px; color: #101828; }
.wz-pcard-sub { font-size: 12px; color: #6b7280; }
.wz-pcard-body { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--wz-border); }
.wz-pcard.is-selected .wz-pcard-body { display: block; }
.wz-pcard-qty { max-width: 140px; }
.wz-pcard-serials input { margin-bottom: 8px; }
.wz-pcard-upload { border: 1.5px dashed var(--wz-border); border-radius: 10px; padding: 10px 14px; text-align: center; cursor: pointer; font-size: 13px; color: #6b7280; }
.wz-pcard-upload:hover { border-color: #2b4eff; color: #2b4eff; }
.wz-pcard-previews { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.wz-pcard-previews img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; border: 1px solid var(--wz-border); }
.wz-upload-zone {
  border: 2px dashed #77a4ff;
  border-radius: 7px;
  min-height: 44px;
  background: #fbfdff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  padding: 10px;
}
.wz-upload-zone.is-dragover,
.wz-upload-zone:hover {
  background: #edf4ff;
}
.wz-upload-icon {
  width: 34px;
  height: 24px;
  border-radius: 16px;
  background: var(--wz-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.wz-preview-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 11px;
}
.wz-preview-item {
  position: relative;
  width: 116px;
  height: 54px;
  border-radius: 8px;
  background: #eef2f7;
  border: 1px solid #d6dfed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #172554;
  text-align: center;
  padding: 4px;
}
.wz-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wz-remove-file {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: rgba(102,112,133,.75);
  color: #fff;
  line-height: 18px;
  padding: 0;
  font-size: 12px;
}
.wz-signature-box {
  border: 1px solid #cfd9ea;
  border-radius: 8px;
  min-height: 92px;
  background: #fff;
  position: relative;
}
#aeSignatureCanvas {
  width: 100%;
  height: 92px;
  display: block;
  touch-action: none;
}
.wz-clear-signature {
  position: absolute;
  right: 12px;
  bottom: 8px;
  border: 0;
  background: transparent;
  color: var(--wz-blue);
  font-weight: 900;
  font-size: 12px;
}
.wz-info-strip {
  border: 1px solid #bcd4ff;
  background: #edf5ff;
  border-radius: 6px;
  color: #394a69;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
}
.wz-actions {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  margin-top: 9px;
}
.wz-btn-outline {
  min-height: 34px;
  border-radius: 6px;
  border: 1px solid #8bb2ff;
  color: var(--wz-blue);
  background: #fff;
  font-weight: 950;
  font-size: 12px;
}
.wz-btn-primary {
  min-height: 34px;
  border-radius: 6px;
  border: 1px solid var(--wz-blue);
  color: #fff;
  background: var(--wz-blue);
  font-weight: 950;
  font-size: 12px;
}
.wz-btn-primary:hover {
  background: var(--wz-blue-dark);
}
.wz-side-card {
  padding: 24px 26px;
  margin-bottom: 12px;
}
.wz-side-title {
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 16px;
}
.wz-side-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e9f1ff;
  color: var(--wz-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.wz-how-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-bottom: 17px;
}
.wz-dot {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--wz-blue);
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}
.wz-how-title {
  font-size: 13px;
  font-weight: 950;
}
.wz-how-text,
.wz-check-row,
.wz-contact-text {
  font-size: 12px;
  color: #53617d;
  font-weight: 650;
}
.wz-check-row {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
}
.wz-check-row i {
  color: var(--wz-blue);
  margin-top: 2px;
}
.wz-track-card {
  background: #eef5ff;
  border-color: #8bb2ff;
}
.wz-success-panel,
.wz-track-panel {
  max-width: 760px;
  margin: 44px auto;
  padding: 34px;
}
.wz-ref-box {
  border: 1px solid #bcd4ff;
  background: #edf5ff;
  border-radius: 10px;
  padding: 18px;
  font-size: 28px;
  font-weight: 950;
  text-align: center;
  letter-spacing: .08em;
}

/* Same two-column grid as the submission page: the status/summary
   column on the left, main content on the right. Markup keeps main
   content first, so on small screens it still stacks content-first. */
.wz-core-page .wz-content-grid-reverse {
  display: grid !important;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  width: 100%;
}
.wz-content-grid-reverse > .wz-main-column { grid-column: 2; grid-row: 1; }
.wz-content-grid-reverse > .wz-side-column { grid-column: 1; grid-row: 1; }
.wz-core-page .wz-hstep-track { display: grid !important; }

.wz-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid transparent;
}
.wz-badge-success { background: #e7faf3; color: #067a55; border-color: #b6ecda; }
.wz-badge-info { background: #e9f1ff; color: var(--wz-blue-dark); border-color: #c8dcff; }

.wz-success-banner {
  background: #edfbf5;
  border: 1px solid #b6ecda;
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.wz-success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wz-success);
  color: #fff;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.wz-success-title { font-size: 19px; font-weight: 950; margin-bottom: 4px; }
.wz-success-ref { font-size: 22px; font-weight: 950; color: var(--wz-navy); }

.wz-hstep-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 6px 10px 0;
}
.wz-hstep {
  position: relative;
  text-align: center;
}
.wz-hstep:before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c9d5e8;
  z-index: 0;
}
.wz-hstep:first-child:before { left: 50%; }
.wz-hstep:last-child:before { right: 50%; }
.wz-hstep.is-done:before { background: var(--wz-success); }
/* Current step: line filled up to the node, grey after - without this
   the bar visually stops one step short of the highlighted circle */
.wz-hstep.is-current:before { background: linear-gradient(to right, var(--wz-success) 50%, #e2e5e9 50%); }
.wz-hstep.is-current:first-child:before { background: #e2e5e9; }
.wz-hstep-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 1px solid #cbd8ea;
  background: #fff;
  color: #97a3ba;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 15px;
}
.wz-hstep.is-done .wz-hstep-icon { background: var(--wz-success); border-color: var(--wz-success); color: #fff; }
.wz-hstep.is-current .wz-hstep-icon { background: var(--wz-blue); border-color: var(--wz-blue); color: #fff; box-shadow: 0 0 0 4px var(--wz-soft-blue); }
.wz-hstep-label { font-size: 12px; font-weight: 900; color: var(--wz-navy); }
.wz-hstep-date { font-size: 11px; color: #78849b; font-weight: 700; margin-top: 2px; }
.wz-hstep-current-tag { font-size: 11px; color: var(--wz-blue); font-weight: 900; margin-top: 2px; }

.wz-kv-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed #e3eaf5;
  font-size: 12px;
}
.wz-kv-row:last-child { border-bottom: 0; }
.wz-kv-label { color: #647089; font-weight: 700; }
.wz-kv-value { color: #182854; font-weight: 850; text-align: right; }

.wz-doc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #edf1f9;
}
.wz-doc-row:last-child { border-bottom: 0; }
.wz-doc-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #eef2f7;
  color: #56637d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.wz-doc-name { font-size: 12px; font-weight: 850; color: #182854; }
.wz-doc-meta { font-size: 11px; color: #8592ab; font-weight: 700; }
.wz-doc-pending {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  color: #8592ab;
}

.wz-dot-done { background: var(--wz-success); }
.wz-dot-pending { background: #c9d5e8; }
@media (max-width: 1200px) {
  .wz-core-page .wz-content-grid-reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .wz-content-grid-reverse > .wz-main-column,
  .wz-content-grid-reverse > .wz-side-column {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 768px) {
  .wz-hstep-track { overflow-x: auto; grid-template-columns: repeat(5, 92px); }
  .wz-success-banner { padding: 16px; }
}
@media (max-width: 1200px) {
  .wz-core-page .wz-content-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .wz-core-page .wz-side-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    width: 100%;
  }
  .wz-side-card {
    margin-bottom: 0;
  }
  .wz-method-grid {
    grid-template-columns: 1fr;
  }
  .o_public_warranty_claim_form .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .wz-core-topbar { height: auto; padding: 10px 0; position: relative; }
  .wz-nav { display: none !important; }
  .wz-brand-title { font-size: 22px; }
  .wz-core-page .wz-shell { padding: 22px 14px 52px; }
  .wz-page-title { font-size: 30px; margin-bottom: 16px; }
  .wz-core-page .wz-content-grid { gap: 14px; }
  .wz-core-page .wz-side-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .wz-side-card {
    padding: 16px;
    border-radius: 10px;
  }
  .wz-side-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .wz-side-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .wz-stepper { overflow-x: auto; grid-template-columns: repeat(7, 110px); padding-left: 0; padding-right: 0; }
  .wz-method-grid { grid-template-columns: 1fr; }
  .wz-actions { grid-template-columns: 1fr; }
  .wz-form-card { padding: 14px 12px 10px; }
}


/* ------------------------------------------------------------------
   Warranty-specific additions (same visual language as the core page)
   ------------------------------------------------------------------ */
.wz-qrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed #e3eaf5;
}
.wz-qrow:last-child { border-bottom: 0; }
.wz-qrow-label { font-size: 12.5px; font-weight: 800; color: #182854; }
.wz-yn {
  display: inline-flex;
  border: 1px solid #ccd8ea;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.wz-yn label {
  margin: 0;
  padding: 6px 0;
  width: 72px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: #56637d;
  cursor: pointer;
  position: relative;
}
.wz-yn label + label { border-left: 1px solid #ccd8ea; }
.wz-yn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.wz-yn label:has(input:checked) { background: var(--wz-blue); color: #fff; }
.wz-yn label:has(input:checked[value="no"]) { background: #384563; }
.wz-yn label:has(input:focus-visible) { outline: 2px solid var(--wz-blue); outline-offset: -2px; }
.wz-followup {
  grid-column: 1 / -1;
  padding: 6px 12px 10px;
  margin: -4px 0 4px;
  background: #f8fbff;
  border: 1px dashed #bcd4ff;
  border-radius: 6px;
}
.wz-evgrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.wz-evblock.is-filled { border-color: var(--wz-success); }
.wz-evblock.is-required .wz-evblock-title:after { content: " *"; color: #e11d48; }
.wz-evblock .wz-pcard-upload { min-height: 74px; display: flex; align-items: center; justify-content: center; }
.wz-evblock .wz-pcard-previews img { width: 100%; height: 74px; }
.wz-evblock .wz-pcard-previews { display: block; }
.wz-evblock .wz-pcard-previews:empty { display: none; }
.wz-evblock.is-filled .wz-pcard-upload { display: none; }
.wz-ev-change {
  display: none;
  font-size: 11px;
  font-weight: 800;
  color: var(--wz-blue);
  cursor: pointer;
  margin-top: 6px;
}
.wz-evblock.is-filled .wz-ev-change { display: inline-block; }
.wz-method-grid.wz-method-grid-3 { grid-template-columns: repeat(3, 1fr); }
.wz-method-option.is-locked { opacity: .55; pointer-events: none; }
.wz-detected {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #067a55;
  background: #e7faf3;
  border: 1px solid #b6ecda;
  border-radius: 100px;
  padding: 2px 10px;
}
.wz-sig-tabs { display: inline-flex; gap: 6px; margin-bottom: 8px; }
.wz-sig-tab {
  border: 1px solid #ccd8ea;
  background: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  color: #56637d;
  padding: 4px 12px;
}
.wz-sig-tab.is-active { border-color: var(--wz-blue); color: var(--wz-blue); background: var(--wz-soft-blue); }
.wz-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.wz-review-block {
  border: 1px solid var(--wz-border);
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
}
.wz-review-title {
  font-size: 12px;
  font-weight: 950;
  color: var(--wz-blue);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wz-review-title a { font-size: 11px; font-weight: 800; text-decoration: none; }
.wz-timeline-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #edf1f9;
}
.wz-timeline-row:last-child { border-bottom: 0; }
.wz-timeline-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e9f1ff;
  color: var(--wz-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.wz-timeline-title { font-size: 13px; font-weight: 900; color: var(--wz-navy); }
.wz-timeline-text { font-size: 12px; color: #53617d; font-weight: 650; }
.wz-timeline-date { font-size: 11px; color: #8592ab; font-weight: 700; }
.wz-hstep.is-declined .wz-hstep-icon { background: #e11d48; border-color: #e11d48; color: #fff; box-shadow: 0 0 0 4px #ffe4ea; }
.wz-hstep.is-declined:before { background: linear-gradient(to right, var(--wz-success) 50%, #e2e5e9 50%); }
.wz-unavailable { max-width: 640px; margin: 60px auto; padding: 40px 34px; text-align: center; }
@media (max-width: 1200px) {
  .wz-evgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wz-method-grid.wz-method-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wz-evgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wz-qrow { grid-template-columns: minmax(0, 1fr); }
  .wz-review-grid { grid-template-columns: minmax(0, 1fr); }
}
