:root {
  --bo-ink: #111827;
  --bo-muted: #667085;
  --bo-line: #e4e8ef;
  --bo-soft: #f8fafc;
  --bo-blue: #0878f9;
  --bo-blue-dark: #075ab8;
  --bo-green: #18a957;
  --bo-orange: #ff7a1a;
  --bo-sticky-top: 88px;
}

.bo-review-shell,
.bo-review-shell * {
  box-sizing: border-box;
}

.bo-review-shell {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: 22px 0 30px;
  color: var(--bo-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bo-review-shell :is(a, button):focus-visible {
  outline: 3px solid rgba(8, 120, 249, 0.3);
  outline-offset: 3px;
}

.bo-review-shell--embedded {
  width: 100%;
  padding-inline: 0;
}

.bo-review-article::before {
  content: none;
}

.bo-breadcrumbs {
  margin-bottom: 22px;
  color: var(--bo-muted);
  font-size: 0.78rem;
}

.bo-breadcrumbs a {
  color: var(--bo-blue-dark);
  text-decoration: none;
}

.bo-review-header {
  margin-bottom: 38px;
}

.bo-review-heading {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 14px;
}

.bo-review-heading--no-logo {
  grid-template-columns: minmax(0, 1fr) 76px;
}

.bo-provider-logo {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--bo-line);
  border-radius: 10px;
  background: #fff;
}

.bo-provider-logo img,
.bo-sidebar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bo-review-kicker {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--bo-blue-dark);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.bo-review-title {
  margin: 0;
  color: var(--bo-ink);
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
}

.bo-review-byline {
  margin: 5px 0 0;
  color: var(--bo-muted);
  font-size: 0.75rem;
}

.bo-heading-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--bo-muted);
  font-size: 0.66rem;
  text-align: center;
}

.bo-heading-avatar,
.bo-reviewer-avatar,
.bo-expert-avatar {
  border-radius: 50%;
}

.bo-heading-avatar {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.bo-review-intro {
  max-width: 880px;
  margin: 22px 0 20px;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.65;
}

.bo-summary-card {
  display: grid;
  grid-template-columns: 160px minmax(150px, 1fr) minmax(190px, 1fr) 215px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--bo-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.05);
}

.bo-summary-score,
.bo-summary-fact,
.bo-summary-action {
  display: flex;
  min-width: 0;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
}

.bo-summary-fact,
.bo-summary-action {
  border-left: 1px solid var(--bo-line);
}

.bo-summary-score {
  align-items: center;
  text-align: center;
}

.bo-score-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.bo-stars {
  position: relative;
  display: inline-block;
  margin-top: 7px;
  color: #d9dee7;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.bo-stars::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bo-score);
  overflow: hidden;
  color: #f5a400;
  content: "\2605\2605\2605\2605\2605";
  white-space: nowrap;
}

.bo-score-caption {
  display: block;
  margin-top: 7px;
  color: var(--bo-blue-dark);
  font-size: 0.66rem;
  font-weight: 650;
}

.bo-summary-label {
  display: block;
  margin-bottom: 7px;
  color: var(--bo-muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bo-summary-fact strong {
  overflow-wrap: anywhere;
  color: var(--bo-ink);
  font-size: 0.9rem;
  line-height: 1.35;
}

.bo-summary-fact small,
.bo-summary-action small {
  display: block;
  margin-top: 6px;
  color: var(--bo-muted);
  font-size: 0.65rem;
  line-height: 1.4;
}

.bo-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.bo-button--primary {
  width: 100%;
  background: var(--bo-blue);
  color: #fff;
}

.bo-button--primary:hover,
.bo-button--primary:focus-visible {
  background: var(--bo-blue-dark);
  color: #fff;
}

.bo-button--secondary {
  border-color: var(--bo-line);
  color: var(--bo-blue-dark);
}

.bo-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 790px) 315px;
  align-items: start;
  justify-content: space-between;
  gap: 44px;
}

.bo-review-main {
  min-width: 0;
}

.bo-reviewer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--bo-line);
  padding-bottom: 18px;
}

.bo-reviewer-identity {
  display: flex;
  align-items: center;
  gap: 11px;
}

.bo-reviewer-avatar {
  width: 48px;
  height: 48px;
}

.bo-reviewer-identity strong,
.bo-reviewer-identity span {
  display: block;
}

.bo-reviewer-identity strong {
  font-size: 0.88rem;
}

.bo-reviewer-identity span {
  margin-top: 2px;
  color: var(--bo-muted);
  font-size: 0.7rem;
}

.bo-updated-date {
  flex: 0 0 auto;
  text-align: right;
}

.bo-updated-date span,
.bo-updated-date time {
  display: block;
}

.bo-updated-date span {
  margin-bottom: 3px;
  color: var(--bo-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bo-updated-date time {
  color: var(--bo-ink);
  font-size: 0.75rem;
  font-weight: 650;
}

.bo-review-body {
  color: #263244;
  font-size: 0.96rem;
  line-height: 1.76;
  text-wrap: pretty;
}

.bo-review-body p,
.bo-review-body ul,
.bo-review-body ol {
  margin-top: 0;
  margin-bottom: 1.05em;
}

.bo-review-body h2,
.bo-faq > h2 {
  margin: 32px 0 12px;
  color: var(--bo-ink);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 760;
  letter-spacing: -0.018em;
  line-height: 1.3;
  scroll-margin-top: calc(var(--bo-sticky-top) + 16px);
  text-wrap: balance;
}

.bo-review-body h2:first-child {
  margin-top: 0;
}

.bo-review-body h3 {
  margin: 25px 0 9px;
  color: var(--bo-ink);
  font-size: 1.12rem;
  font-weight: 720;
  line-height: 1.4;
}

.bo-review-body a {
  color: #075fc6;
  overflow-wrap: anywhere;
  text-underline-offset: 0.15em;
}

.bo-review-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.bo-review-body figure {
  max-width: 100%;
  margin: 22px 0;
}

.bo-review-body figcaption {
  margin-top: 7px;
  color: var(--bo-muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.bo-review-body blockquote {
  margin: 24px 0;
  border-left: 3px solid var(--bo-blue);
  padding: 14px 18px;
  background: #f5f9ff;
  color: #344258;
}

.bo-review-body > :last-child {
  margin-bottom: 0;
}

.bo-review-body table {
  width: 100%;
  margin: 20px 0 28px;
  border: 1px solid #d9e0e9;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  font-size: 0.78rem;
}

.bo-review-body th,
.bo-review-body td {
  border: 0;
  border-right: 1px solid var(--bo-line);
  border-bottom: 1px solid var(--bo-line);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}

.bo-review-body tr > *:last-child {
  border-right: 0;
}

.bo-review-body tbody tr:last-child > * {
  border-bottom: 0;
}

.bo-review-body th {
  background: var(--bo-soft);
  color: var(--bo-ink);
  font-weight: 750;
}

.bo-review-body tbody tr:nth-child(even) td {
  background: #fbfcfe;
}

.bo-review-sidebar {
  min-width: 0;
  align-self: stretch;
}

.bo-sticky-rail {
  position: sticky;
  top: var(--bo-sticky-top);
}

.bo-widget {
  overflow: hidden;
  border: 1px solid var(--bo-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.045);
}

.bo-widget + .bo-widget {
  margin-top: 16px;
}

.bo-deal-card {
  padding-top: 18px;
}

.bo-sidebar-logo {
  width: 104px;
  height: 40px;
  margin: 0 auto 10px;
}

.bo-deal-card h2 {
  margin: 0 18px 12px;
  color: var(--bo-ink);
  font-size: 1rem;
  text-align: center;
}

.bo-provider-links {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--bo-line);
  list-style: none;
}

.bo-provider-links li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid #eef1f5;
  font-size: 0.7rem;
}

.bo-provider-links span {
  color: var(--bo-muted);
}

.bo-provider-links strong {
  overflow-wrap: anywhere;
  text-align: right;
}

.bo-sidebar-link {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  color: var(--bo-blue-dark);
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.bo-sidebar-link:hover {
  background: #f5f9ff;
}

.bo-expert-card {
  padding: 16px;
}

.bo-expert-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bo-line);
}

.bo-expert-avatar {
  width: 42px;
  height: 42px;
}

.bo-expert-head strong,
.bo-expert-head span {
  display: block;
}

.bo-expert-head strong {
  font-size: 0.78rem;
}

.bo-expert-head span {
  margin-top: 2px;
  color: var(--bo-muted);
  font-size: 0.65rem;
}

.bo-expert-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
}

.bo-expert-rating strong {
  font-size: 1rem;
}

.bo-expert-rating .bo-stars {
  margin-top: 0;
  font-size: 0.74rem;
}

.bo-expert-card p {
  margin: 9px 0 5px;
  color: #455468;
  font-size: 0.7rem;
  line-height: 1.55;
}

.bo-expert-card .bo-sidebar-link {
  margin: 10px -16px -16px;
  border-top: 1px solid var(--bo-line);
}

.bo-related-card {
  padding: 16px;
}

.bo-related-card h2 {
  margin: 0 0 8px;
  color: var(--bo-ink);
  font-size: 0.86rem;
}

.bo-related-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bo-related-card li + li {
  border-top: 1px solid #eef1f5;
}

.bo-related-card a {
  display: block;
  padding: 9px 0;
  color: #263244;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
}

.bo-related-card a:hover {
  color: var(--bo-blue-dark);
}

.bo-related-card a span {
  display: block;
  margin-bottom: 2px;
  color: var(--bo-blue-dark);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bo-faq {
  margin-top: 36px;
}

.bo-faq-item {
  border-top: 1px solid var(--bo-line);
}

.bo-faq-item:last-child {
  border-bottom: 1px solid var(--bo-line);
}

.bo-faq-question {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 10px 2px;
  background: transparent;
  color: var(--bo-ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.bo-faq-question span:last-child {
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 150ms ease;
}

.bo-faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.bo-faq-answer {
  padding: 0 24px 16px 2px;
  color: #455468;
  line-height: 1.7;
}

.bo-author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  border: 1px solid var(--bo-line);
  border-radius: 10px;
  padding: 18px;
  background: var(--bo-soft);
}

.bo-author-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
}

.bo-author-card h2 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.bo-author-card p {
  margin: 0;
  color: var(--bo-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.bo-author-card a {
  color: var(--bo-blue-dark);
  font-weight: 650;
  text-underline-offset: 0.14em;
}

.bo-comments {
  margin: 30px 0 0;
}

.bo-comments :is(.comments-area, .comment-respond, .comment-form) {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 980px) {
  .bo-review-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 28px;
  }

  .bo-summary-card {
    grid-template-columns: 140px 1fr 1fr;
  }

  .bo-summary-action {
    grid-column: 1 / -1;
    min-height: auto;
    border-top: 1px solid var(--bo-line);
    border-left: 0;
  }
}

@media (max-width: 800px) {
  .bo-review-layout {
    grid-template-columns: 1fr;
  }

  .bo-review-sidebar {
    order: -1;
  }

  .bo-sticky-rail {
    position: static;
  }

  .bo-expert-card,
  .bo-related-card {
    display: none;
  }

  .bo-deal-card {
    display: none;
  }

  .bo-sidebar-logo {
    width: 100px;
    margin: 0;
  }

  .bo-deal-card h2 {
    margin: 0 12px;
    text-align: left;
  }

  .bo-provider-links {
    display: none;
  }

  .bo-deal-card .bo-sidebar-link {
    display: none;
  }
}

@media (max-width: 640px) {
  .bo-review-shell {
    width: min(100% - 24px, 620px);
    padding-top: 14px;
  }

  .bo-review-heading {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .bo-review-heading--no-logo {
    grid-template-columns: minmax(0, 1fr);
  }

  .bo-provider-logo {
    width: 48px;
    height: 48px;
  }

  .bo-heading-author {
    display: none;
  }

  .bo-review-title {
    font-size: 1.7rem;
  }

  .bo-summary-card {
    grid-template-columns: 1fr 1fr;
  }

  .bo-summary-score,
  .bo-summary-fact,
  .bo-summary-action {
    min-height: 100px;
    padding: 15px;
  }

  .bo-summary-fact:nth-of-type(2) {
    border-left: 1px solid var(--bo-line);
  }

  .bo-summary-fact:nth-of-type(3) {
    border-left: 0;
    border-top: 1px solid var(--bo-line);
  }

  .bo-reviewer-row {
    align-items: flex-start;
  }

  .bo-updated-date {
    max-width: 100px;
    text-align: right;
  }

  .bo-deal-card {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .bo-deal-card .bo-sidebar-link {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .bo-review-body {
    font-size: 0.94rem;
  }

  .bo-review-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bo-review-shell * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Review archive */
.bo-review-outer-wrapper {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding-block: 50px;
}

.bo-archive-header {
  margin-bottom: 44px;
  text-align: center;
}

.bo-breadcrumb-centered {
  margin-bottom: 18px;
  color: var(--bo-muted);
  font-size: 0.875rem;
}

.bo-archive-header h1 {
  margin: 0 0 24px;
  color: var(--bo-ink);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.bo-silo-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.bo-nav-link {
  border: 1px solid var(--bo-line);
  border-radius: 999px;
  padding: 9px 18px;
  background: var(--bo-soft);
  color: #344258;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.bo-nav-link:hover {
  border-color: var(--bo-blue);
  background: var(--bo-blue);
  color: #fff;
}

.bo-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}

.bo-review-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--bo-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.bo-card-content {
  flex-grow: 1;
  padding: 24px;
}

.bo-badge {
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 6px;
  padding: 5px 10px;
  background: #e7f1ff;
  color: var(--bo-blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bo-card-title {
  margin: 0;
  color: var(--bo-ink);
  font-size: 1.3rem;
  line-height: 1.35;
}

.bo-card-title a {
  color: inherit;
  text-decoration: none;
}

.bo-card-footer {
  border-top: 1px solid var(--bo-line);
  padding: 16px 24px;
  background: var(--bo-soft);
}

.bo-read-more {
  color: var(--bo-blue-dark);
  font-size: 0.85rem;
  font-weight: 750;
  text-decoration: none;
}
