/* Scoped styles: they do not change normal RiPro or AnsPress content. */
.hz-guide,
.hz-guide * {
  box-sizing: border-box;
}

.hz-guide {
  --hz-ink: #12213b;
  --hz-muted: #516078;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: var(--hz-ink) !important;
  font-size: 16px;
  line-height: 1.85;
}

.hz-guide h2,
.hz-guide h3,
.hz-guide p,
.hz-guide li,
.hz-guide strong,
.hz-guide span {
  color: inherit !important;
}

.hz-guide p:last-child,
.hz-guide ul:last-child {
  margin-bottom: 0;
}

.hz-guide__panel {
  position: relative;
  overflow: hidden;
  margin: 0 0 18px;
  padding: 25px 28px;
  border: 1px solid #dbe4f0;
  border-radius: 18px;
  background: #fff;
  color: var(--hz-ink) !important;
  box-shadow: 0 8px 24px rgba(18, 33, 59, .07);
}

.hz-guide__panel h2,
.hz-guide__panel h3 {
  margin: 0 0 14px;
  font-weight: 800;
  line-height: 1.35;
}

.hz-guide__panel h2 { font-size: 25px; }
.hz-guide__panel h3 { font-size: 20px; }

.hz-guide__hero {
  padding: 32px 28px;
  text-align: center;
  color: #fff !important;
  border: 0;
  background: linear-gradient(120deg, #172957 0%, #2f63df 100%);
  box-shadow: 0 14px 30px rgba(31, 76, 174, .22);
}

.hz-guide__hero h2 {
  font-size: clamp(25px, 3vw, 34px);
  color: #fff !important;
}

.hz-guide__hero p { color: #f7faff !important; }

.hz-guide__alert {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 18px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  background: #ef3340;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
}

.hz-guide__note {
  border-color: #bcd4ff;
  border-left: 5px solid #2869ed;
  background: #edf5ff;
}

.hz-guide__warning {
  border-color: #ffcb93;
  border-left: 5px solid #ff6a00;
  background: #fff2df;
  color: #7b2c05 !important;
}

.hz-guide__warning h3 { color: #e94b0b !important; }

.hz-guide__form {
  border-color: #ffb9b9;
  background: #fff;
}

.hz-guide__form > h3 { color: #e3262e !important; }

.hz-guide__field {
  margin: 10px 0;
  padding: 17px 15px;
  border-radius: 13px;
  background: #fff5f5;
}

.hz-guide__field strong {
  display: block;
  margin-bottom: 5px;
  color: #d71920 !important;
}

.hz-guide__quality {
  padding: 30px;
  text-align: center;
  border: 0;
  background: linear-gradient(145deg, #111927, #1d2939);
  color: #fff !important;
  box-shadow: 0 15px 30px rgba(15, 23, 42, .22);
}

.hz-guide__quality h2,
.hz-guide__quality h3,
.hz-guide__quality p,
.hz-guide__quality li,
.hz-guide__quality strong {
  color: #fff !important;
}

.hz-guide__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 16px 0;
}

.hz-guide__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 44px;
  padding: 8px 17px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 800;
}

.hz-guide__badge--blue { background: #2671ed; }
.hz-guide__badge--green { background: #14a84a; }
.hz-guide__badge--orange { background: #ff5a0a; }

.hz-guide__points {
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

.hz-guide__points li { margin: 4px 0; font-weight: 700; }
.hz-guide__points li:nth-child(1) { color: #4eb1ff !important; }
.hz-guide__points li:nth-child(2) { color: #41e796 !important; }
.hz-guide__points li:nth-child(3) { color: #ff9b42 !important; }

.hz-guide__review {
  background: #f8fafc;
  border-color: #ccd7e6;
}

.hz-guide a {
  color: #2468df !important;
  text-decoration: none;
}

.hz-guide a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .hz-guide { font-size: 15px; }
  .hz-guide__panel { padding: 20px 17px; border-radius: 14px; }
  .hz-guide__hero { padding: 25px 17px; }
  .hz-guide__badges { gap: 9px; }
  .hz-guide__badge { min-height: 40px; padding: 7px 13px; }
}

