/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 249, 246, 0.9);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(251, 249, 246, 0.97);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: block;
  text-decoration: none;
  line-height: 1.15;
}

/* A assinatura e o nome da advogada, entao o alt carrega o texto: e ela que
   da nome ao link do cabecalho. */
.brand__assinatura {
  display: block;
  width: 15rem;
  max-width: 100%;
  height: auto;
}

.brand__meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand__meta span + span::before {
  content: "·";
  margin-inline: 0.45em;
  color: var(--line-2);
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav__link {
  position: relative;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink-2);
  padding-block: 0.35rem;
  transition: color 0.2s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--ink);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header__cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 1px solid var(--line-2);
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  font-size: var(--step-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: var(--radius);
}

.nav-toggle__bars {
  display: grid;
  gap: 4px;
  width: 16px;
}

.nav-toggle__bars span {
  height: 1px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 88;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 2rem var(--gutter) 3rem;
  overflow-y: auto;
  transform: translateY(-0.75rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-nav__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.mobile-nav__list a {
  display: block;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  text-decoration: none;
}

.mobile-nav__list a[aria-current="page"] {
  color: var(--accent);
}

.mobile-nav__foot {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  justify-items: start;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 62rem) {
  .nav,
  .header__cta {
    display: block;
  }

  .nav-toggle,
  .mobile-nav {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--accent-deep);
}

.btn--outline {
  border-color: var(--line-2);
  color: var(--ink);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--ink);
  background: var(--paper-2);
}

.btn--ghost {
  padding: 0.55rem 1rem;
  min-height: 2.6rem;
  border-color: var(--line-2);
  color: var(--ink);
  font-size: 0.7rem;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--paper-2);
}

.btn--onDark {
  border-color: rgba(251, 249, 246, 0.4);
  color: var(--paper);
}

.btn--onDark:hover {
  border-color: var(--paper);
  background: rgba(251, 249, 246, 0.08);
}

/* O botão do guia fica desabilitado enquanto o envio não volta do servidor. */
.btn[disabled] {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
}

.link-arrow::after {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  transition: width 0.26s var(--ease);
}

.link-arrow:hover::after {
  width: 2.2rem;
}

/* ---------- Service cards (home) ---------- */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--card-accent, var(--accent));
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card__index {
  font-family: var(--font-sans);
  font-size: var(--step-label);
  letter-spacing: 0.2em;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}

.service-card__title {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
  max-width: calc(100% - 5.5rem);
}

.service-card__question {
  font-family: var(--font-serif);
  font-size: var(--step-lead);
  color: var(--card-accent, var(--accent));
  margin: 0;
}

.service-card__text {
  color: var(--muted);
  margin: 0;
}

.service-card__foot {
  margin-top: auto;
  padding-top: 0.5rem;
}

.service-card__foot .link-arrow {
  color: var(--card-accent, var(--accent));
}

.service-card:hover .link-arrow::after {
  width: 2.2rem;
}

.service-card--imob {
  --card-accent: var(--bordo);
}

.service-card--prev {
  --card-accent: var(--verde);
}

.service-card__mark {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.25rem);
  top: clamp(1.25rem, 3vw, 2.25rem);
  width: clamp(3.5rem, 6vw, 5rem);
  color: var(--card-accent, var(--accent));
  opacity: 0.28;
  pointer-events: none;
}

/* ---------- Problem cards ---------- */
.problem-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 40rem) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
  background: var(--paper);
  text-decoration: none;
  transition: background 0.24s var(--ease);
}

.problem-card:hover {
  background: var(--accent-tint);
}

.problem-card__num {
  font-size: var(--step-label);
  letter-spacing: 0.18em;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}

.problem-card__title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.25;
}

.problem-card__text {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0;
}

.problem-card__cue {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
}

.problem-card:hover .problem-card__cue,
.problem-card:focus-visible .problem-card__cue {
  opacity: 1;
  transform: none;
}

@media (hover: none) {
  .problem-card__cue {
    opacity: 1;
    transform: none;
  }
}

.problem-card--flag {
  background: var(--accent-tint);
}

.problem-card--flag .problem-card__num {
  color: var(--accent);
}

/* ---------- Editorial topic list ---------- */
.topic-list {
  border-top: 1px solid var(--line);
}

.topic {
  display: grid;
  gap: 0.4rem 2.5rem;
  padding-block: clamp(1.4rem, 2.6vw, 2rem);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 52rem) {
  .topic {
    grid-template-columns: 3.5rem minmax(0, 20rem) minmax(0, 1fr);
    align-items: start;
  }
}

.topic__num {
  font-size: var(--step-label);
  letter-spacing: 0.18em;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  padding-top: 0.4rem;
}

.topic__title {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  line-height: 1.3;
}

.topic__text {
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}

/* ---------- Timeline ---------- */
.timeline__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-block: 1px solid var(--line);
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.timeline__track::-webkit-scrollbar {
  display: none;
}

.timeline__step {
  position: relative;
  flex: 1 0 auto;
  min-width: 8.5rem;
  padding: 1.15rem 1rem 1.25rem;
  background: none;
  border: 0;
  border-right: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.22s var(--ease), background 0.22s var(--ease);
}

.timeline__step:last-child {
  border-right: 0;
}

.timeline__step::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.timeline__step[aria-selected="true"] {
  color: var(--ink);
  background: var(--paper);
}

.timeline__step[aria-selected="true"]::before {
  transform: scaleX(1);
}

.timeline__step:hover {
  color: var(--ink);
}

.timeline__step-num {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  margin-bottom: 0.45rem;
  font-variant-numeric: tabular-nums;
}

.timeline__step-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.timeline__hint {
  margin: -1.25rem 0 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

@media (min-width: 58rem) {
  .timeline__hint {
    display: none;
  }
}

.timeline__panel[hidden] {
  display: none;
}

.timeline__panel {
  display: grid;
  gap: 1.5rem;
  animation: fade-up 0.4s var(--ease);
}

@media (min-width: 52rem) {
  .timeline__panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.timeline__panel h3 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}

.timeline__points {
  display: grid;
  gap: 0.75rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Marked list ---------- */
.marked-list {
  display: grid;
  gap: 0.8rem;
}

.marked-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.marked-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.6rem;
  height: 1px;
  background: var(--accent);
}

.section--dark .marked-list li,
.section--accent .marked-list li {
  color: rgba(251, 249, 246, 0.8);
}

.section--dark .marked-list li::before,
.section--accent .marked-list li::before {
  background: rgba(251, 249, 246, 0.55);
}

/* ---------- Flow line ---------- */
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.9rem;
  padding: 1.25rem 0;
}

.flow__item {
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 0.9rem + 0.4vw, 1.2rem);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--line-2);
}

.flow__sep {
  color: var(--accent);
  font-size: 0.85rem;
}

.section--dark .flow__item {
  border-bottom-color: rgba(251, 249, 246, 0.35);
}

.section--dark .flow__sep {
  color: rgba(251, 249, 246, 0.6);
}

/* ---------- Compare block ---------- */
.compare {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 48rem) {
  .compare {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2.25rem);
  }
}

.compare__side {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
}

.compare__label {
  font-size: var(--step-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.85rem;
}

.compare__side h3 {
  margin-bottom: 0.75rem;
}

.compare__side p {
  color: var(--muted);
  font-size: 0.97rem;
}

.compare__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0;
  max-width: 9rem;
  margin-inline: auto;
  text-align: center;
  font-size: var(--step-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.compare__mid::before,
.compare__mid::after {
  content: "";
  width: 1px;
  flex: 1;
  min-height: 1.75rem;
  background: var(--line-2);
}

/* ---------- Checklist ---------- */
.checklist {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

@media (min-width: 46rem) {
  .checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
  }
}

@media (min-width: 68rem) {
  .checklist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.checklist__item {
  background: var(--paper);
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.35rem;
}

.checklist__num {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.checklist__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.3;
}

.checklist__text {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.section--sand .checklist__item {
  background: var(--paper-2);
}

/* ---------- Callout ---------- */
.callout {
  border-left: 2px solid var(--accent);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
  background: var(--paper);
  border-radius: var(--radius);
}

.callout__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.65rem);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.callout p {
  color: var(--muted);
  max-width: 64ch;
}

.callout--onDark {
  background: rgba(251, 249, 246, 0.06);
  border-left-color: var(--paper);
}

.callout--onDark p {
  color: rgba(251, 249, 246, 0.82);
}

/* ---------- Chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  color: var(--ink-2);
  background: var(--paper);
}

.section--dark .chip,
.section--accent .chip {
  border-color: rgba(251, 249, 246, 0.32);
  color: rgba(251, 249, 246, 0.92);
  background: transparent;
}

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--line);
  max-width: 56rem;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.35;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__sign {
  position: relative;
  flex: 0 0 auto;
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.4rem;
}

.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.26s var(--ease), opacity 0.2s var(--ease);
}

.faq__sign::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.faq__sign::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  transform: translateX(-50%);
}

.faq__item[open] .faq__sign::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding-bottom: 1.5rem;
  max-width: 62ch;
  color: var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 56rem) {
  .cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.cta-band__title {
  font-size: clamp(1.6rem, 1.25rem + 1.5vw, 2.5rem);
  max-width: 22ch;
}

.cta-band__title--small {
  font-size: var(--step-h3);
  max-width: 28ch;
}

.callout--onDark .callout__title {
  color: var(--paper);
}

.cta-band__text {
  margin-top: 0.9rem;
  max-width: 54ch;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 249, 246, 0.78);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 46rem) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 68rem) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

/* No rodape a assinatura substitui o nome escrito em fonte: o fundo escuro e
   onde o cobre da marca rende melhor. */
.footer__assinatura {
  display: block;
  width: min(17rem, 100%);
  height: auto;
  margin-bottom: 1rem;
}

.footer__brand .brand__meta {
  color: rgba(251, 249, 246, 0.55);
}

.footer__tagline {
  margin-top: 1.25rem;
  max-width: 32ch;
  color: rgba(251, 249, 246, 0.6);
  font-family: var(--font-serif);
}

.footer__heading {
  font-size: var(--step-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 249, 246, 0.5);
  margin-bottom: 1.1rem;
}

.footer__list {
  display: grid;
  gap: 0.65rem;
}

.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(251, 249, 246, 0.16);
  display: grid;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: rgba(251, 249, 246, 0.55);
}

.footer__disclaimer {
  max-width: 78ch;
}

@media (min-width: 62rem) {
  .footer__meta {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.05rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px -18px rgba(26, 25, 23, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, background 0.2s var(--ease);
}

.wa-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.wa-float:hover {
  background: var(--accent-deep);
}

.wa-float svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.wa-float__label {
  display: none;
}

@media (min-width: 30rem) {
  .wa-float__label {
    display: inline;
  }
}

/* ---------- Review mode ---------- */
body.review-mode [data-revisao] {
  outline: 1px dashed #b4552a;
  outline-offset: 4px;
}

.review-panel {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 95;
  max-width: 22rem;
  max-height: 60vh;
  overflow: auto;
  background: var(--paper);
  border: 1px solid #b4552a;
  padding: 1rem 1.15rem;
  font-size: 0.82rem;
  border-radius: var(--radius);
}

.review-panel h2 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.review-panel ol {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.1rem;
}

.review-panel li {
  list-style: decimal;
  color: var(--muted);
}
