.go-rs-page {
  --go-rs-bg: var(--go-light-bg, #F5F7FA);
  --go-rs-surface: var(--go-light-card, #FFFFFF);
  --go-rs-surface-2: #F3F5F8;
  --go-rs-text: var(--go-light-text, #111111);
  --go-rs-soft: var(--go-light-soft, #6B7280);
  --go-rs-border: var(--go-light-border, #E5E7EB);
  --go-rs-accent: var(--go-lime, #C7F000);
  --go-rs-accent-2: var(--go-blue, #2800F0);
  --go-rs-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
  padding-top: 26px;
  background-color: var(--go-rs-bg);
  background-image:
    linear-gradient(90deg, rgba(199, 240, 0, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(6, 12, 20, 0.98), rgba(8, 17, 29, 0.98));
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 10px, 100% 10px;
  background-position: top left, top left;
  color: var(--go-rs-text);
}

html.dark .go-rs-page,
body.dark .go-rs-page,
body.is-dark-theme .go-rs-page,
body.dark-mode .go-rs-page,
[data-theme="dark"] .go-rs-page,
body.newsx-dark-mode .go-rs-page,
html[class*="dark"] .go-rs-page,
body[class*="dark"] .go-rs-page {
  --go-rs-bg: var(--go-bg, #050505);
  --go-rs-surface: var(--go-surface, #0F0F12);
  --go-rs-surface-2: var(--go-surface-2, #111318);
  --go-rs-text: var(--go-text, #F5F7FA);
  --go-rs-soft: var(--go-text-soft, #A8B0BD);
  --go-rs-border: var(--go-border, #1F2937);
  --go-rs-shadow: 0 18px 44px rgba(0, 0, 0, 0.30);
}

body.single-post .site-content,
body.single-post #content {
  background: var(--go-rs-bg);
}

.go-rs-page *,
.go-rs-page *::before,
.go-rs-page *::after {
  box-sizing: border-box;
}

body.go-template-review #page > .go-shell-header + #content,
body.go-template-review #page > .go-shell-header + .site-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  box-shadow: none !important;
}

.go-rs-page img {
  display: block;
  max-width: 100%;
}

.go-rs-shell {
  width: min(100% - 32px, 1280px);
  margin: 0 auto 56px;
}

.go-rs-article {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.go-rs-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(199, 240, 0, 0.10), transparent 24%),
    radial-gradient(circle at top right, rgba(40, 0, 240, 0.20), transparent 28%),
    #050505;
  min-height: 580px;
  box-shadow: var(--go-rs-shadow);
}

.go-rs-hero-media {
  position: absolute;
  inset: 0;
}

.go-rs-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.go-rs-hero-media.no-image {
  background:
    linear-gradient(135deg, rgba(40, 0, 240, 0.16), rgba(199, 240, 0, 0.08)),
    #0F0F12;
}

.go-rs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.10) 0%, rgba(5, 5, 5, 0.50) 62%, rgba(5, 5, 5, 0.88) 100%);
}

.go-rs-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 580px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 42px;
  color: #FFFFFF;
}

.go-rs-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(199, 240, 0, 0.42);
  border-radius: 999px;
  background: rgba(199, 240, 0, 0.34);
  color: #101010;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-rs-title {
  max-width: 920px;
  color: #FFFFFF !important;
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.go-rs-summary {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
}

.go-rs-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.go-rs-meta-sep {
  flex: 0 0 4px;
  align-self: center;
  width: 4px;
  height: 4px;
  font-size: 0;
  line-height: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
  overflow: hidden;
}

.go-rs-hero-actions,
.go-rs-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.go-rs-top-actions {
  margin: 18px 0 24px;
  padding: 18px;
  border: 1px solid var(--go-rs-border);
  border-radius: 22px;
  background: var(--go-rs-surface);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.go-rs-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.go-rs-action-link.is-back {
  border-color: rgba(199, 240, 0, 0.28);
  background: rgba(199, 240, 0, 0.16);
}

.go-rs-action-link:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 240, 0, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.go-rs-top-actions .go-rs-action-link {
  border-color: var(--go-rs-border);
  background: var(--go-rs-surface-2);
  color: var(--go-rs-text);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.go-rs-top-actions .go-rs-action-link.is-back {
  border-color: transparent;
  background: linear-gradient(135deg, #96C600, #C7F000);
  color: #111111;
}

.go-rs-top-actions .go-rs-action-link:hover {
  border-color: rgba(40, 0, 240, 0.16);
  background: rgba(40, 0, 240, 0.06);
  color: var(--go-rs-accent-2);
}

.go-rs-top-actions .go-rs-action-link.is-back:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #8fb800, #b9e300);
  color: #111111;
}

.go-rs-author-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.go-rs-author-link:hover {
  color: var(--go-rs-accent);
  border-color: currentColor;
}

.go-rs-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.go-rs-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 28px;
}

.go-rs-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.go-rs-overview {
  display: grid;
  gap: 18px;
}

.go-rs-overview {
  grid-template-columns: 170px minmax(0, 1fr);
}

.go-rs-score-card,
.go-rs-verdict-card,
.go-rs-panel,
.go-rs-list-card {
  border: 1px solid var(--go-rs-border);
  border-radius: 24px;
  background: var(--go-rs-surface);
  box-shadow: var(--go-rs-shadow);
}

.go-rs-score-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 22px;
  color: #FFFFFF;
  text-align: center;
}

.go-rs-score-card.score-excellent { background: linear-gradient(135deg, #96C600, #C7F000); color: #111111; }
.go-rs-score-card.score-great { background: linear-gradient(135deg, #1600B5, #2800F0); }
.go-rs-score-card.score-good { background: linear-gradient(135deg, #2A2EA6, #4F46E5); }
.go-rs-score-card.score-mid { background: linear-gradient(135deg, #B45309, #F59E0B); }
.go-rs-score-card.score-low { background: linear-gradient(135deg, #991B1B, #DC2626); }
.go-rs-score-card.score-none { background: linear-gradient(135deg, #1E293B, #334155); }

.go-rs-points-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.go-rs-points-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--go-rs-border);
  border-radius: 20px;
  background: var(--go-rs-surface-2);
}

.go-rs-points-card.is-positive {
  border-color: rgba(150, 198, 0, 0.24);
}

.go-rs-points-card.is-negative {
  border-color: rgba(220, 38, 38, 0.18);
}

.go-rs-points-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(40, 0, 240, 0.08);
  color: var(--go-rs-accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-rs-points-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.go-rs-points-card li {
  color: var(--go-rs-text);
  line-height: 1.7;
}

.go-rs-main .go-inline-related-card {
  margin: 24px 0;
}

.go-rs-main .go-inline-related-card__inner {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--go-rs-border);
  border-radius: 22px;
  background: var(--go-rs-surface-2);
}

.go-rs-main .go-inline-related-card__media {
  display: block;
  min-height: 144px;
  overflow: hidden;
  border-radius: 16px;
}

.go-rs-main .go-inline-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.go-rs-main .go-inline-related-card__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.go-rs-main .go-inline-related-card__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(40, 0, 240, 0.08);
  color: var(--go-rs-accent-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-rs-main .go-inline-related-card__title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.go-rs-main .go-inline-related-card__title a,
.go-rs-main .go-inline-related-card__title a:visited {
  color: var(--go-rs-text) !important;
  text-decoration: none;
}

.go-rs-main .go-inline-related-card__title a:hover,
.go-rs-main .go-inline-related-card__title a:focus-visible {
  color: var(--go-rs-accent) !important;
}

.go-rs-main .go-inline-related-card p {
  margin: 0;
  color: var(--go-rs-soft);
  line-height: 1.75;
}

.go-rs-main .go-inline-related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--go-rs-accent-2);
  font-size: 13px;
  font-weight: 700;
}

.go-rs-main .go-inline-related-card__link::after {
  content: "→";
}

.go-rs-score-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.go-rs-score-value {
  font-family: "Sora", sans-serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.go-rs-score-scale {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.88;
}

.go-rs-verdict-card,
.go-rs-panel,
.go-rs-list-card {
  padding: 22px 24px;
}

.go-rs-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.go-rs-block-head h2 {
  color: var(--go-rs-text);
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.go-rs-verdict-card p,
.go-rs-panel-copy {
  color: var(--go-rs-soft);
  font-size: 15px;
  line-height: 1.75;
}

.go-rs-specs {
  display: grid;
  gap: 10px;
}

.go-rs-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--go-rs-border);
  border-radius: 16px;
  background: var(--go-rs-surface-2);
}

.go-rs-spec span {
  color: var(--go-rs-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.go-rs-spec strong {
  color: var(--go-rs-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.go-rs-dual-score {
  display: grid;
  gap: 12px;
}

.go-rs-mini-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #FFFFFF;
}

.go-rs-mini-score span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.82;
}

.go-rs-mini-score strong {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.go-rs-mini-score.score-excellent { background: linear-gradient(135deg, #96C600, #C7F000); color: #111111; }
.go-rs-mini-score.score-great { background: linear-gradient(135deg, #1600B5, #2800F0); }
.go-rs-mini-score.score-good { background: linear-gradient(135deg, #2A2EA6, #4F46E5); }
.go-rs-mini-score.score-mid { background: linear-gradient(135deg, #B45309, #F59E0B); }
.go-rs-mini-score.score-low { background: linear-gradient(135deg, #991B1B, #DC2626); }
.go-rs-mini-score.score-none { background: linear-gradient(135deg, #1E293B, #334155); }
.go-rs-mini-score.is-metacritic { background: linear-gradient(135deg, #065F46, #10B981); }
.go-rs-mini-score.is-opencritic { background: linear-gradient(135deg, #7C2D12, #EA580C); }

.go-rs-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(40, 0, 240, 0.18);
  border-radius: 999px;
  background: rgba(40, 0, 240, 0.08);
  color: var(--go-rs-accent-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.go-rs-cta-link:hover {
  transform: translateY(-1px);
  border-color: var(--go-rs-accent-2);
  background: rgba(40, 0, 240, 0.12);
}

.go-rs-author-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.go-rs-author-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--go-rs-border);
  border-radius: 16px;
  background: var(--go-rs-surface-2);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.go-rs-author-item:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 0, 240, 0.22);
}

.go-rs-author-item-score {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #FFFFFF;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.go-rs-author-item-score.score-excellent { background: linear-gradient(135deg, #96C600, #C7F000); color: #111111; }
.go-rs-author-item-score.score-great { background: linear-gradient(135deg, #1600B5, #2800F0); }
.go-rs-author-item-score.score-good { background: linear-gradient(135deg, #2A2EA6, #4F46E5); }
.go-rs-author-item-score.score-mid { background: linear-gradient(135deg, #B45309, #F59E0B); }
.go-rs-author-item-score.score-low { background: linear-gradient(135deg, #991B1B, #DC2626); }
.go-rs-author-item-score.score-none { background: linear-gradient(135deg, #1E293B, #334155); }

.go-rs-author-item-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.go-rs-author-item-text strong {
  color: var(--go-rs-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.go-rs-author-item-text small {
  color: var(--go-rs-soft);
  font-size: 12px;
}

.go-rs-page .newsx-static-sharing,
.go-rs-page .newsx-post-navigation,
.go-rs-page .newsx-single-author-box,
.go-rs-page .newsx-related-posts,
.go-rs-page .comments-area {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.go-rs-article-body .newsx-table-of-contents {
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98)),
    var(--go-rs-surface);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

html.dark .go-rs-article-body .newsx-table-of-contents,
body.dark .go-rs-article-body .newsx-table-of-contents,
body.is-dark-theme .go-rs-article-body .newsx-table-of-contents,
body.dark-mode .go-rs-article-body .newsx-table-of-contents,
[data-theme="dark"] .go-rs-article-body .newsx-table-of-contents,
body.newsx-dark-mode .go-rs-article-body .newsx-table-of-contents,
html[class*="dark"] .go-rs-article-body .newsx-table-of-contents,
body[class*="dark"] .go-rs-article-body .newsx-table-of-contents {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(20, 24, 31, 0.96), rgba(15, 17, 22, 0.98)),
    var(--go-rs-surface);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.go-rs-article-body .newsx-table-of-contents h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 40px;
  padding-left: 50px;
  margin-bottom: 18px;
  color: var(--go-rs-text);
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.go-rs-article-body .newsx-table-of-contents h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(40, 0, 240, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at top left, rgba(40, 0, 240, 0.16), transparent 56%),
    var(--go-rs-surface-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 20px rgba(15, 23, 42, 0.06);
  transform: translateY(-50%);
}

.go-rs-article-body .newsx-table-of-contents h3::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--go-rs-accent-2);
  transform: translateY(-50%);
  box-shadow: 0 -5px 0 var(--go-rs-accent-2), 0 5px 0 var(--go-rs-accent-2);
}

.go-rs-article-body .newsx-table-of-contents h3 svg {
  display: none;
}

.go-rs-article-body .newsx-table-of-contents > div {
  display: grid;
  gap: 12px;
}

.go-rs-article-body .newsx-table-of-contents a {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding: 14px 18px 14px 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.95), rgba(239, 243, 248, 0.95));
  color: var(--go-rs-text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.go-rs-article-body .newsx-table-of-contents a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--go-rs-accent), var(--go-rs-accent-2));
  opacity: 0.22;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

html.dark .go-rs-article-body .newsx-table-of-contents a,
body.dark .go-rs-article-body .newsx-table-of-contents a,
body.is-dark-theme .go-rs-article-body .newsx-table-of-contents a,
body.dark-mode .go-rs-article-body .newsx-table-of-contents a,
[data-theme="dark"] .go-rs-article-body .newsx-table-of-contents a,
body.newsx-dark-mode .go-rs-article-body .newsx-table-of-contents a,
html[class*="dark"] .go-rs-article-body .newsx-table-of-contents a,
body[class*="dark"] .go-rs-article-body .newsx-table-of-contents a {
  border-color: rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(19, 22, 29, 0.96), rgba(16, 18, 24, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.go-rs-article-body .newsx-table-of-contents a:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 0, 240, 0.18);
  background:
    linear-gradient(180deg, rgba(243, 247, 255, 0.98), rgba(234, 239, 255, 0.98));
  color: #20175f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(40, 0, 240, 0.08);
}

.go-rs-article-body .newsx-table-of-contents a:hover::before {
  opacity: 0.88;
  transform: scaleY(1.04);
}

html.dark .go-rs-article-body .newsx-table-of-contents a:hover,
body.dark .go-rs-article-body .newsx-table-of-contents a:hover,
body.is-dark-theme .go-rs-article-body .newsx-table-of-contents a:hover,
body.dark-mode .go-rs-article-body .newsx-table-of-contents a:hover,
[data-theme="dark"] .go-rs-article-body .newsx-table-of-contents a:hover,
body.newsx-dark-mode .go-rs-article-body .newsx-table-of-contents a:hover,
html[class*="dark"] .go-rs-article-body .newsx-table-of-contents a:hover,
body[class*="dark"] .go-rs-article-body .newsx-table-of-contents a:hover {
  border-color: rgba(199, 240, 0, 0.2);
  background:
    linear-gradient(180deg, rgba(24, 28, 36, 0.98), rgba(18, 21, 28, 0.98));
  color: #f8fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(0, 0, 0, 0.28);
}

.go-rs-article-body .newsx-post-content a {
  text-decoration: revert;
}

.go-rs-article-body .newsx-post-content blockquote {
  margin: 2em 0;
  padding: 24px 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-left: 4px solid var(--go-rs-accent-2);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(40, 0, 240, 0.08), transparent 34%),
    var(--go-rs-surface);
  color: var(--go-rs-text);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.go-rs-article-body .newsx-post-content blockquote p:last-child {
  margin-bottom: 0;
}

.go-rs-main > .newsx-static-sharing,
.go-rs-main > .newsx-post-sources,
.go-rs-main > .newsx-post-navigation,
.go-rs-main > .newsx-post-author-box,
.go-rs-main > .newsx-related-posts-wrap,
.go-rs-main > .comments-area {
  margin-top: 28px;
  padding: 24px 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98)),
    var(--go-rs-surface);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

html.dark .go-rs-main > .newsx-static-sharing,
html.dark .go-rs-main > .newsx-post-sources,
html.dark .go-rs-main > .newsx-post-navigation,
html.dark .go-rs-main > .newsx-post-author-box,
html.dark .go-rs-main > .newsx-related-posts-wrap,
html.dark .go-rs-main > .comments-area,
body.dark .go-rs-main > .newsx-static-sharing,
body.dark .go-rs-main > .newsx-post-sources,
body.dark .go-rs-main > .newsx-post-navigation,
body.dark .go-rs-main > .newsx-post-author-box,
body.dark .go-rs-main > .newsx-related-posts-wrap,
body.dark .go-rs-main > .comments-area,
body.is-dark-theme .go-rs-main > .newsx-static-sharing,
body.is-dark-theme .go-rs-main > .newsx-post-sources,
body.is-dark-theme .go-rs-main > .newsx-post-navigation,
body.is-dark-theme .go-rs-main > .newsx-post-author-box,
body.is-dark-theme .go-rs-main > .newsx-related-posts-wrap,
body.is-dark-theme .go-rs-main > .comments-area,
body.dark-mode .go-rs-main > .newsx-static-sharing,
body.dark-mode .go-rs-main > .newsx-post-sources,
body.dark-mode .go-rs-main > .newsx-post-navigation,
body.dark-mode .go-rs-main > .newsx-post-author-box,
body.dark-mode .go-rs-main > .newsx-related-posts-wrap,
body.dark-mode .go-rs-main > .comments-area,
[data-theme="dark"] .go-rs-main > .newsx-static-sharing,
[data-theme="dark"] .go-rs-main > .newsx-post-sources,
[data-theme="dark"] .go-rs-main > .newsx-post-navigation,
[data-theme="dark"] .go-rs-main > .newsx-post-author-box,
[data-theme="dark"] .go-rs-main > .newsx-related-posts-wrap,
[data-theme="dark"] .go-rs-main > .comments-area,
body.newsx-dark-mode .go-rs-main > .newsx-static-sharing,
body.newsx-dark-mode .go-rs-main > .newsx-post-sources,
body.newsx-dark-mode .go-rs-main > .newsx-post-navigation,
body.newsx-dark-mode .go-rs-main > .newsx-post-author-box,
body.newsx-dark-mode .go-rs-main > .newsx-related-posts-wrap,
body.newsx-dark-mode .go-rs-main > .comments-area,
html[class*="dark"] .go-rs-main > .newsx-static-sharing,
html[class*="dark"] .go-rs-main > .newsx-post-sources,
html[class*="dark"] .go-rs-main > .newsx-post-navigation,
html[class*="dark"] .go-rs-main > .newsx-post-author-box,
html[class*="dark"] .go-rs-main > .newsx-related-posts-wrap,
html[class*="dark"] .go-rs-main > .comments-area,
body[class*="dark"] .go-rs-main > .newsx-static-sharing,
body[class*="dark"] .go-rs-main > .newsx-post-sources,
body[class*="dark"] .go-rs-main > .newsx-post-navigation,
body[class*="dark"] .go-rs-main > .newsx-post-author-box,
body[class*="dark"] .go-rs-main > .newsx-related-posts-wrap,
body[class*="dark"] .go-rs-main > .comments-area {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(20, 24, 31, 0.96), rgba(15, 17, 22, 0.98)),
    var(--go-rs-surface);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.go-rs-main > .newsx-static-sharing .newsx-post-sharing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 18px;
}

.go-rs-main > .newsx-static-sharing .sharing-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 0;
  color: var(--go-rs-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.go-rs-main > .newsx-static-sharing .sharing-header svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.go-rs-main > .newsx-static-sharing .sharing-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px !important;
}

.go-rs-main > .newsx-static-sharing .sharing-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px !important;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: rgba(244, 247, 251, 0.95);
  color: var(--go-rs-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.go-rs-main > .newsx-static-sharing .sharing-icons a:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 0, 240, 0.18);
  background: rgba(40, 0, 240, 0.06);
  color: #20175f;
}

.go-rs-main > .newsx-static-sharing .sharing-icons a svg,
.go-rs-main > .newsx-static-sharing .sharing-icons a svg *,
.go-rs-main > .newsx-static-sharing .sharing-icons a i {
  fill: currentColor !important;
  stroke: currentColor !important;
  color: currentColor !important;
}

.go-rs-main > .newsx-post-sources {
  display: grid;
  gap: 14px;
}

.go-rs-main > .newsx-post-sources .post-source {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.go-rs-main > .newsx-post-sources span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 0;
  color: var(--go-rs-soft);
  font-size: 13px;
  font-weight: 800;
}

.go-rs-main > .newsx-post-sources .source-tag a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-right: 0;
  border-radius: 999px;
  background: rgba(199, 240, 0, 0.16);
  color: #6b8600;
  font-size: 12px;
  font-weight: 800;
  box-shadow: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.go-rs-main > .newsx-post-sources .source-tag a:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.go-rs-main > .newsx-post-sources .post-source:not(.source-tag) a {
  color: var(--go-rs-text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(40, 0, 240, 0.24);
  text-underline-offset: 0.16em;
}

.go-rs-main > .newsx-post-sources .post-source:not(.source-tag) a:hover {
  color: var(--go-rs-accent-2);
}

.go-rs-main > .newsx-post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.go-rs-main > .newsx-post-navigation.newsx-nav-count-1 {
  grid-template-columns: 1fr;
}

.go-rs-main > .newsx-post-navigation .newsx-divider {
  display: none;
}

.go-rs-main > .newsx-post-navigation a {
  width: auto;
  min-height: 176px;
  padding: 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(40, 0, 240, 0.08), transparent 36%),
    rgba(244, 247, 251, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 10px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.go-rs-main > .newsx-post-navigation a:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 0, 240, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 30px rgba(15, 23, 42, 0.08);
}

.go-rs-main > .newsx-post-navigation span,
.go-rs-main > .newsx-post-navigation h5 {
  color: var(--go-rs-accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-rs-main > .newsx-post-navigation .prev-post div,
.go-rs-main > .newsx-post-navigation .next-post div {
  flex: 1;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.go-rs-main > .newsx-post-navigation h4 {
  margin: 0;
  color: var(--go-rs-text);
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.go-rs-main > .newsx-post-navigation img {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  object-fit: cover;
}

.go-rs-main > .newsx-post-author-box {
  position: relative;
  overflow: hidden;
  gap: 22px;
}

.go-rs-main > .newsx-post-author-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 110px;
  background:
    radial-gradient(circle at top left, rgba(40, 0, 240, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.go-rs-main > .newsx-post-author-box > * {
  position: relative;
  z-index: 1;
}

.go-rs-main > .newsx-post-author-box .box-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.go-rs-main > .newsx-post-author-box .author-avatar {
  position: relative;
}

.go-rs-main > .newsx-post-author-box .author-avatar::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(40, 0, 240, 0.22), rgba(40, 0, 240, 0.06));
  z-index: 0;
}

.go-rs-main > .newsx-post-author-box .author-avatar img {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.12);
}

.go-rs-main > .newsx-post-author-box .author-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.go-rs-main > .newsx-post-author-box .author-info > .newsx-flex:first-child {
  display: grid;
  gap: 6px;
}

.go-rs-main > .newsx-post-author-box .author-name {
  color: var(--go-rs-text);
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  line-height: 1.02;
}

.go-rs-main > .newsx-post-author-box .author-job {
  color: var(--go-rs-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.go-rs-main > .newsx-post-author-box .author-description {
  margin-top: 0;
  color: var(--go-rs-soft);
  font-size: 15px;
  line-height: 1.72;
  max-width: 760px;
}

.go-rs-main > .newsx-post-author-box .author-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.go-rs-main > .newsx-post-author-box .author-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: 0 !important;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--go-rs-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.go-rs-main > .newsx-post-author-box .author-socials a:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 0, 240, 0.18);
  background: rgba(40, 0, 240, 0.06);
  color: var(--go-rs-accent-2);
  box-shadow: 0 14px 22px rgba(40, 0, 240, 0.1);
}

.go-rs-main > .newsx-related-posts-wrap h4,
.go-rs-main > .comments-area .comment-title,
.go-rs-main > .comments-area .wpd-thread-head {
  margin-bottom: 18px;
  color: var(--go-rs-text);
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.go-rs-main > .newsx-related-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.go-rs-main > .newsx-related-posts section {
  padding: 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(244, 247, 251, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.go-rs-main > .newsx-related-posts section:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 0, 240, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 18px 32px rgba(15, 23, 42, 0.07);
}

.go-rs-main > .newsx-related-posts section > a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.go-rs-main > .newsx-related-posts img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
  border-radius: 18px;
  object-fit: cover;
}

.go-rs-main > .newsx-related-posts h5 {
  margin: 0;
  color: var(--go-rs-text);
  font-family: "Sora", sans-serif;
  font-size: 19px;
  line-height: 1.32;
  letter-spacing: -0.035em;
}

.go-rs-main > .newsx-related-posts h5 a {
  color: inherit;
}

.go-rs-main > .newsx-related-posts .post-date {
  display: inline-block;
  margin-top: 10px;
  color: var(--go-rs-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.go-rs-main > .comments-area {
  overflow: hidden;
}

.go-rs-main > .comments-area :where(.wpd-form-head, .wpd-thread-head) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.go-rs-main > .comments-area .wpd-thread-head {
  align-items: flex-end;
}

.go-rs-main > .comments-area :where(.wpd-auth, .wpd-login, .wpd-login-to-comment) {
  color: var(--go-rs-soft);
  font-size: 14px;
}

.go-rs-main > .comments-area :where(.wpd-login a, .wpd-login-to-comment a) {
  color: var(--go-rs-accent-2);
  font-weight: 700;
}

.go-rs-main > .comments-area .wpdiscuz-subscribe-bar {
  margin: 16px 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: rgba(244, 247, 251, 0.95);
}

.go-rs-main > .comments-area .wpdiscuz-subscribe-bar form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.go-rs-main > .comments-area :where(.wpdiscuz_subscribe_status, .wpd-thread-info) {
  color: var(--go-rs-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-rs-main > .comments-area .wpd-thread-info {
  display: inline-flex;
  align-items: center;
  padding: 0 0 10px;
  margin-bottom: -17px;
  border-bottom: 3px solid var(--go-rs-accent);
}

.go-rs-main > .comments-area :where(.wpdiscuz-user-settings, .wpd-filter) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(244, 247, 251, 0.95);
  color: var(--go-rs-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.go-rs-main > .comments-area .wpdiscuz-user-settings {
  width: 40px;
  padding: 0;
  border-radius: 12px;
}

.go-rs-main > .comments-area :where(.wpd-filter.wpdf-active, .wpd-filter:hover, .wpdiscuz-user-settings:hover) {
  border-color: rgba(40, 0, 240, 0.18);
  background: rgba(40, 0, 240, 0.06);
  color: var(--go-rs-accent-2);
}

.go-rs-main > .comments-area .wpd-thread-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.go-rs-main > .comments-area .wpd-rating {
  margin: 0 0 28px;
}

.go-rs-main > .comments-area .wpd-rating .wpd-rating-wrap {
  width: min(100%, 320px);
}

.go-rs-main > .comments-area .wpd-rating .wpd-rating-left,
.go-rs-main > .comments-area .wpd-rating .wpd-rating-right {
  border-bottom-color: rgba(17, 24, 39, 0.14);
}

.go-rs-main > .comments-area .wpd-rating .wpd-rating-title {
  color: var(--go-rs-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.go-rs-main > .comments-area .wpd-rating .wpd-rating-value {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: var(--go-rs-surface);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.go-rs-main > .comments-area .wpd-rating .wpd-rating-value .wpdrv {
  color: var(--go-rs-text);
  font-size: 28px !important;
  font-weight: 800;
  line-height: 72px !important;
}

.go-rs-main > .comments-area .wpd-rating .wpd-rating-stars svg .wpd-active {
  fill: var(--go-rs-accent);
}

.go-rs-main > .comments-area :where(.wpdiscuz-textarea-wrap, .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input, .wpdiscuz-item textarea, .wc-field-textarea textarea) {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(244, 247, 251, 0.95);
  color: var(--go-rs-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.go-rs-main > .comments-area :where(.comment-form textarea, .wpdiscuz-item textarea, .wc-field-textarea textarea) {
  min-height: 160px;
  padding: 16px 18px;
}

.go-rs-main > .comments-area :where(.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input) {
  min-height: 48px;
  padding: 0 16px;
}

.go-rs-main > .comments-area :where(.wc_comm_submit, .comment-form .form-submit .submit, #wpdiscuz_subscription_button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--go-rs-accent-2), #4b2cff);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(40, 0, 240, 0.18);
}

.go-rs-main > .comments-area #wpdiscuz_subscription_button {
  width: auto;
  height: auto !important;
}

.go-rs-main > .comments-area :where(article.entry-comments, .wpd-comment, .wpd-comment-wrap) {
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.go-rs-main > .comments-area :where(.comment-avatar img, .wpd-avatar img, .wc-comment-right img) {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 50%;
}

.go-rs-main > .comments-area :where(.comment-meta, .wpd-comment-date, .wpd-comment-author, .logged-in-as, .comment-notes, .wpd-thread-info) {
  color: var(--go-rs-soft);
}

.go-rs-main > .comments-area :where(.comment-author, .comment-author a, .wpd-comment-author, .wpd-comment-author a) {
  color: var(--go-rs-text);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .go-rs-content-grid {
    grid-template-columns: 1fr;
  }

  .go-rs-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .go-rs-overview {
    grid-template-columns: 1fr;
  }

  .go-rs-points-grid {
    grid-template-columns: 1fr;
  }

  .go-rs-hero,
  .go-rs-hero-content {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  .go-rs-page {
    padding-top: 18px;
    background-size: 100% 8px, 100% 8px;
  }

  .go-rs-shell {
    width: min(100% - 20px, 1280px);
    margin-top: 0;
    margin-bottom: 40px;
  }

  .go-rs-hero {
    min-height: 440px;
    border-radius: 24px;
  }

  .go-rs-hero-content {
    min-height: 440px;
    padding: 26px 20px;
  }

  .go-rs-title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .go-rs-summary {
    font-size: 16px;
  }

  .go-rs-hero-actions,
  .go-rs-top-actions {
    gap: 10px;
  }

  .go-rs-top-actions {
    padding: 14px;
    margin: 16px 0 22px;
  }

  .go-rs-action-link {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .go-rs-score-card,
  .go-rs-verdict-card,
  .go-rs-panel,
  .go-rs-list-card {
    padding: 18px;
  }

  .go-rs-main .go-inline-related-card__inner {
    grid-template-columns: 1fr;
  }

  .go-rs-main .go-inline-related-card__media {
    min-height: 180px;
  }

  .go-rs-article-body .newsx-post-content {
    font-size: 17px;
  }

  .go-rs-article-body .newsx-post-content > p:first-of-type {
    font-size: 19px;
  }

  .go-rs-main > .newsx-static-sharing,
  .go-rs-main > .newsx-post-sources,
  .go-rs-main > .newsx-post-navigation,
  .go-rs-main > .newsx-post-author-box,
  .go-rs-main > .newsx-related-posts-wrap,
  .go-rs-main > .comments-area {
    margin-top: 22px;
    padding: 20px;
    border-radius: 24px;
  }

  .go-rs-main > .newsx-post-navigation,
  .go-rs-main > .newsx-related-posts {
    grid-template-columns: 1fr;
  }

  .go-rs-main > .comments-area .wpdiscuz-subscribe-bar form {
    grid-template-columns: 1fr;
  }

  .go-rs-main > .newsx-post-navigation a {
    min-height: 0;
  }

  .go-rs-main > .newsx-post-navigation h4,
  .go-rs-main > .newsx-related-posts h5,
  .go-rs-main > .newsx-related-posts-wrap h4,
  .go-rs-main > .comments-area .comment-title,
  .go-rs-main > .comments-area .wpd-thread-head {
    font-size: 24px;
  }

  .go-rs-main > .newsx-post-author-box .author-name {
    font-size: 22px;
  }
}
.go-rs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.go-rs-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.go-rs-spec strong a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(132, 204, 22, 0.24);
  text-underline-offset: 0.14em;
}

.go-rs-spec strong a:hover {
  color: var(--go-rs-accent, #84cc16);
}

/* =========================================
   HERO DE ENTRADA TOTAL
   ========================================= */

.go-rs-page {
  padding-top: 0;
}

.go-rs-shell {
  width: 100%;
  margin: 0 auto 56px;
}

.go-rs-hero {
  min-height: 100svh;
  margin-inline: calc(50% - 50vw);
  border-left: 0;
  border-right: 0;
  border-radius: 0 0 36px 36px;
}

.go-rs-hero-content {
  width: min(100% - 32px, 1280px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(112px, 14vh, 148px) 0 clamp(36px, 7vh, 74px);
}

.go-rs-content-grid {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

@media (max-width: 720px) {
  .go-rs-hero,
  .go-rs-hero-content {
    min-height: 86svh;
  }

  .go-rs-hero {
    border-radius: 0 0 28px 28px;
  }

  .go-rs-hero-content {
    width: min(100% - 20px, 1280px);
    padding-top: 104px;
  }

  .go-rs-content-grid {
    width: min(100% - 20px, 1280px);
  }
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: 88svh;
}

.go-rs-score-card {
  min-height: 196px;
}

.go-rs-score-value {
  font-size: 56px;
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: 76svh;
}

.go-rs-hero-content {
  padding: clamp(96px, 12vh, 128px) 0 clamp(28px, 6vh, 58px);
}

.go-rs-mini-score.is-metacritic {
  background: linear-gradient(135deg, #007754, #10b981);
}

.go-rs-mini-score.is-opencritic {
  background: linear-gradient(135deg, #fc761e, #f97316);
}

.go-rs-author-item {
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.go-rs-main > .newsx-static-sharing .newsx-post-sharing {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(40, 0, 240, 0.05), rgba(199, 240, 0, 0.14));
}

.go-rs-final-verdict {
  position: relative;
  overflow: hidden;
}

.go-rs-final-verdict::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--go-rs-accent), var(--go-rs-accent-2));
}

.go-rs-final-verdict p {
  margin: 0;
  color: var(--go-rs-text);
  line-height: 1.8;
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: 62svh;
}

.go-rs-hero-content {
  padding: clamp(82px, 10vh, 112px) 0 clamp(24px, 4vh, 46px);
}

.go-rs-title {
  font-size: clamp(30px, 4.1vw, 54px);
}

.go-rs-article-body .newsx-table-of-contents {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 245, 248, 0.98));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

html.dark .go-rs-article-body .newsx-table-of-contents,
body.dark .go-rs-article-body .newsx-table-of-contents,
body.is-dark-theme .go-rs-article-body .newsx-table-of-contents,
body.dark-mode .go-rs-article-body .newsx-table-of-contents,
[data-theme="dark"] .go-rs-article-body .newsx-table-of-contents,
body.newsx-dark-mode .go-rs-article-body .newsx-table-of-contents,
html[class*="dark"] .go-rs-article-body .newsx-table-of-contents,
body[class*="dark"] .go-rs-article-body .newsx-table-of-contents {
  background: linear-gradient(180deg, rgba(16, 19, 25, 0.98), rgba(11, 15, 23, 0.98));
  border-color: rgba(199, 240, 0, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.go-rs-main > :is(.newsx-post-sources, .newsx-post-navigation, .newsx-post-author-box, .newsx-related-posts-wrap, .comments-area, .newsx-static-sharing .newsx-post-sharing) {
  border-color: var(--go-rs-border);
}

.go-rs-main > :is(.newsx-post-sources, .newsx-post-navigation, .newsx-post-author-box, .newsx-related-posts-wrap, .comments-area, .newsx-static-sharing .newsx-post-sharing) :is(p, span, a, h4, h5, .author-name, .author-description, .post-date) {
  color: var(--go-rs-soft);
}

.go-rs-main > :is(.newsx-post-navigation, .newsx-post-author-box, .newsx-related-posts-wrap, .comments-area) :is(h4, h5, .author-name, .comment-title, .wpd-thread-head) {
  color: var(--go-rs-text);
}

.go-rs-main > .newsx-post-author-box .author-socials a.social-link-website {
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.16), rgba(255, 255, 255, 0.92));
  color: var(--go-rs-accent, #84cc16);
}

.go-rs-main > .newsx-post-author-box .author-socials a.social-link-website svg,
.go-rs-main > .newsx-post-author-box .author-socials a.social-link-website .newsx-svg-icon {
  color: inherit;
  fill: currentColor;
}

html.dark .go-rs-main > .newsx-post-author-box .author-socials a.social-link-website,
body.dark .go-rs-main > .newsx-post-author-box .author-socials a.social-link-website,
body.is-dark-theme .go-rs-main > .newsx-post-author-box .author-socials a.social-link-website,
body.dark-mode .go-rs-main > .newsx-post-author-box .author-socials a.social-link-website,
[data-theme="dark"] .go-rs-main > .newsx-post-author-box .author-socials a.social-link-website,
body.newsx-dark-mode .go-rs-main > .newsx-post-author-box .author-socials a.social-link-website,
html[class*="dark"] .go-rs-main > .newsx-post-author-box .author-socials a.social-link-website,
body[class*="dark"] .go-rs-main > .newsx-post-author-box .author-socials a.social-link-website {
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.18), rgba(16, 19, 25, 0.96));
  border-color: rgba(163, 230, 53, 0.24);
  color: #ecfccb;
}

html.dark .go-rs-main > .comments-area :where(.wpdiscuz-textarea-wrap, .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input, .wpdiscuz-item textarea, .wc-field-textarea textarea),
body.dark .go-rs-main > .comments-area :where(.wpdiscuz-textarea-wrap, .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input, .wpdiscuz-item textarea, .wc-field-textarea textarea),
body.is-dark-theme .go-rs-main > .comments-area :where(.wpdiscuz-textarea-wrap, .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input, .wpdiscuz-item textarea, .wc-field-textarea textarea),
body.dark-mode .go-rs-main > .comments-area :where(.wpdiscuz-textarea-wrap, .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input, .wpdiscuz-item textarea, .wc-field-textarea textarea),
[data-theme="dark"] .go-rs-main > .comments-area :where(.wpdiscuz-textarea-wrap, .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input, .wpdiscuz-item textarea, .wc-field-textarea textarea),
body.newsx-dark-mode .go-rs-main > .comments-area :where(.wpdiscuz-textarea-wrap, .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input, .wpdiscuz-item textarea, .wc-field-textarea textarea),
html[class*="dark"] .go-rs-main > .comments-area :where(.wpdiscuz-textarea-wrap, .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input, .wpdiscuz-item textarea, .wc-field-textarea textarea),
body[class*="dark"] .go-rs-main > .comments-area :where(.wpdiscuz-textarea-wrap, .comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .wpdiscuz-item input, .wpdiscuz-item textarea, .wc-field-textarea textarea) {
  background: rgba(11, 15, 22, 0.96) !important;
  color: #eef6e8 !important;
  border-color: rgba(163, 230, 53, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

html.dark .go-rs-main > .comments-area :where(.wpdiscuz-item input, .wpdiscuz-item textarea, .comment-form input, .comment-form textarea)::placeholder,
body.dark .go-rs-main > .comments-area :where(.wpdiscuz-item input, .wpdiscuz-item textarea, .comment-form input, .comment-form textarea)::placeholder,
body.is-dark-theme .go-rs-main > .comments-area :where(.wpdiscuz-item input, .wpdiscuz-item textarea, .comment-form input, .comment-form textarea)::placeholder,
body.dark-mode .go-rs-main > .comments-area :where(.wpdiscuz-item input, .wpdiscuz-item textarea, .comment-form input, .comment-form textarea)::placeholder,
[data-theme="dark"] .go-rs-main > .comments-area :where(.wpdiscuz-item input, .wpdiscuz-item textarea, .comment-form input, .comment-form textarea)::placeholder,
body.newsx-dark-mode .go-rs-main > .comments-area :where(.wpdiscuz-item input, .wpdiscuz-item textarea, .comment-form input, .comment-form textarea)::placeholder,
html[class*="dark"] .go-rs-main > .comments-area :where(.wpdiscuz-item input, .wpdiscuz-item textarea, .comment-form input, .comment-form textarea)::placeholder,
body[class*="dark"] .go-rs-main > .comments-area :where(.wpdiscuz-item input, .wpdiscuz-item textarea, .comment-form input, .comment-form textarea)::placeholder {
  color: rgba(226, 232, 240, 0.66) !important;
}

.go-rs-shell {
  margin: 0 auto !important;
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: clamp(340px, 58vw, 520px) !important;
}

.go-rs-hero-content {
  padding: clamp(88px, 11vh, 118px) 0 clamp(24px, 4vh, 42px) !important;
}

.go-rs-main > .newsx-post-sources .post-source,
.go-rs-main > .newsx-post-sources .post-source span,
.go-rs-main > .newsx-post-sources .post-source a,
.go-rs-main > .newsx-post-sources .source-tag a {
  color: var(--go-rs-text) !important;
}

.go-rs-main > .newsx-post-sources .source-tag a {
  background: linear-gradient(135deg, rgba(199, 240, 0, 0.14), rgba(255, 255, 255, 0.96)) !important;
  border-color: rgba(199, 240, 0, 0.28) !important;
}

html.dark .go-rs-main > .newsx-post-sources .source-tag a,
body.dark .go-rs-main > .newsx-post-sources .source-tag a,
body.dark-mode .go-rs-main > .newsx-post-sources .source-tag a,
body.is-dark-theme .go-rs-main > .newsx-post-sources .source-tag a,
body.newsx-dark-mode .go-rs-main > .newsx-post-sources .source-tag a,
[data-theme="dark"] .go-rs-main > .newsx-post-sources .source-tag a {
  color: #eef6ff !important;
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.22), rgba(11, 15, 22, 0.96)) !important;
  border-color: rgba(163, 230, 53, 0.24) !important;
}

.go-rs-main > .comments-area,
.go-rs-main > .comments-area .wpd-form,
.go-rs-main > .comments-area .wpd-comment-form {
  background: var(--go-rs-surface) !important;
}

@media (max-width: 720px) {
  .go-rs-hero,
  .go-rs-hero-content {
    min-height: clamp(280px, 74vw, 420px) !important;
  }

  .go-rs-hero {
    border-radius: 0 0 22px 22px !important;
  }

  .go-rs-hero-content {
    padding-top: 90px !important;
  }
}

.go-rs-page,
.go-rs-shell {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.go-rs-page::after,
.go-rs-shell::after {
  display: none !important;
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: clamp(300px, 46vw, 460px) !important;
}

.go-rs-hero-content {
  padding: clamp(82px, 10vh, 108px) 0 clamp(20px, 3vh, 36px) !important;
}

.go-rs-main > .newsx-post-author-box .author-socials a.social-link-website,
.go-rs-main > .newsx-post-author-box .author-socials a.social-link-website * {
  color: inherit !important;
}

.go-rs-main > .newsx-post-author-box .author-socials a.social-link-website svg *,
.go-rs-main > .newsx-post-author-box .author-socials a.social-link-website .newsx-svg-icon * {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.go-rs-main > .comments-area :where(.ql-toolbar, .ql-container, .ql-editor, .wpdiscuz-editor-wrap, .wpd-textarea-wrap, .wpd-form-head, .wpd-form-footer-bar) {
  background: var(--go-rs-surface) !important;
  color: var(--go-rs-text) !important;
  border-color: var(--go-rs-border) !important;
}

html.dark .go-rs-main > .comments-area :where(.ql-toolbar, .ql-container, .ql-editor, .wpdiscuz-editor-wrap, .wpd-textarea-wrap, .wpd-form-head, .wpd-form-footer-bar),
body.dark .go-rs-main > .comments-area :where(.ql-toolbar, .ql-container, .ql-editor, .wpdiscuz-editor-wrap, .wpd-textarea-wrap, .wpd-form-head, .wpd-form-footer-bar),
body.dark-mode .go-rs-main > .comments-area :where(.ql-toolbar, .ql-container, .ql-editor, .wpdiscuz-editor-wrap, .wpd-textarea-wrap, .wpd-form-head, .wpd-form-footer-bar),
body.is-dark-theme .go-rs-main > .comments-area :where(.ql-toolbar, .ql-container, .ql-editor, .wpdiscuz-editor-wrap, .wpd-textarea-wrap, .wpd-form-head, .wpd-form-footer-bar),
body.newsx-dark-mode .go-rs-main > .comments-area :where(.ql-toolbar, .ql-container, .ql-editor, .wpdiscuz-editor-wrap, .wpd-textarea-wrap, .wpd-form-head, .wpd-form-footer-bar),
[data-theme="dark"] .go-rs-main > .comments-area :where(.ql-toolbar, .ql-container, .ql-editor, .wpdiscuz-editor-wrap, .wpd-textarea-wrap, .wpd-form-head, .wpd-form-footer-bar) {
  background: rgba(11, 15, 22, 0.96) !important;
  color: #eef6e8 !important;
  border-color: rgba(163, 230, 53, 0.18) !important;
}

@media (max-width: 720px) {
  .go-rs-hero,
  .go-rs-hero-content {
    min-height: clamp(260px, 62vw, 360px) !important;
  }

  .go-rs-hero-content {
    padding-top: 84px !important;
  }
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: clamp(420px, 64vw, 620px) !important;
}

.go-rs-hero-content {
  padding: clamp(96px, 11vh, 132px) 0 clamp(28px, 5vh, 54px) !important;
}

.go-rs-hero-overlay {
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.04), rgba(8, 12, 18, 0.56) 48%, rgba(5, 7, 11, 0.92)) !important;
}

.go-rs-title,
.go-rs-main :is(h2, h3, h4),
.go-rs-side :is(h2, h3, h4) {
  color: var(--go-rs-text) !important;
}

.go-rs-main > .newsx-static-sharing .sharing-icons a {
  background: var(--go-rs-surface-2) !important;
  color: var(--go-rs-text) !important;
  border-color: var(--go-rs-border) !important;
}

.go-rs-main > .newsx-static-sharing .sharing-icons a svg,
.go-rs-main > .newsx-static-sharing .sharing-icons a svg *,
.go-rs-main > .newsx-static-sharing .sharing-icons a i {
  color: currentColor !important;
  fill: currentColor !important;
}

@media (max-width: 720px) {
  .go-rs-hero,
  .go-rs-hero-content {
    min-height: clamp(320px, 86vw, 470px) !important;
  }
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: clamp(460px, 70svh, 720px) !important;
}

.go-rs-hero-content {
  padding: clamp(96px, 12vh, 136px) 0 clamp(34px, 6vh, 64px) !important;
}

@media (max-width: 720px) {
  .go-rs-hero,
  .go-rs-hero-content {
    min-height: clamp(360px, 58svh, 520px) !important;
  }
}

.go-rs-page :is(.go-rs-title, .go-rs-panel h2, .go-rs-verdict-card h2, .go-rs-score-label, .go-rs-spec strong, .go-rs-summary, .go-rs-meta span, .go-rs-meta a, .go-rs-tags a) {
  color: var(--go-rs-text) !important;
}

.go-rs-main > .newsx-post-sources,
.go-rs-main > .comments-area,
.go-rs-main > .newsx-static-sharing .newsx-post-sharing {
  background: var(--go-rs-surface) !important;
  border: 1px solid var(--go-rs-line) !important;
}

.go-rs-main .sharing-icons a,
.go-rs-main .sharing-icons a svg,
.go-rs-main .newsx-post-sources .source-tag a,
.go-rs-main .newsx-post-sources .post-source span,
.go-rs-main .newsx-post-sources .post-source a {
  color: var(--go-rs-text) !important;
}

html.dark .go-rs-page :is(.go-rs-title, .go-rs-panel h2, .go-rs-verdict-card h2, .go-rs-score-label, .go-rs-spec strong, .go-rs-summary, .go-rs-meta span, .go-rs-meta a, .go-rs-tags a),
body.dark .go-rs-page :is(.go-rs-title, .go-rs-panel h2, .go-rs-verdict-card h2, .go-rs-score-label, .go-rs-spec strong, .go-rs-summary, .go-rs-meta span, .go-rs-meta a, .go-rs-tags a),
body.dark-mode .go-rs-page :is(.go-rs-title, .go-rs-panel h2, .go-rs-verdict-card h2, .go-rs-score-label, .go-rs-spec strong, .go-rs-summary, .go-rs-meta span, .go-rs-meta a, .go-rs-tags a),
body.is-dark-theme .go-rs-page :is(.go-rs-title, .go-rs-panel h2, .go-rs-verdict-card h2, .go-rs-score-label, .go-rs-spec strong, .go-rs-summary, .go-rs-meta span, .go-rs-meta a, .go-rs-tags a),
body.newsx-dark-mode .go-rs-page :is(.go-rs-title, .go-rs-panel h2, .go-rs-verdict-card h2, .go-rs-score-label, .go-rs-spec strong, .go-rs-summary, .go-rs-meta span, .go-rs-meta a, .go-rs-tags a),
[data-theme="dark"] .go-rs-page :is(.go-rs-title, .go-rs-panel h2, .go-rs-verdict-card h2, .go-rs-score-label, .go-rs-spec strong, .go-rs-summary, .go-rs-meta span, .go-rs-meta a, .go-rs-tags a) {
  color: #eef3fb !important;
}

/* =====================================
   HERO CONTRAST FIXES
===================================== */

.go-rs-hero-content {
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
}

.go-rs-hero-content :is(.go-rs-title, .go-rs-summary, .go-rs-meta, .go-rs-meta span, .go-rs-meta a, .go-rs-tags a, .go-rs-action-link) {
  color: #ffffff !important;
}

.go-rs-hero-content .go-rs-summary {
  color: rgba(255, 255, 255, 0.92) !important;
}

.go-rs-hero-content .go-rs-meta,
.go-rs-hero-content .go-rs-meta a {
  color: rgba(255, 255, 255, 0.82) !important;
}

.go-rs-hero-overlay {
  background: linear-gradient(180deg, rgba(4, 7, 11, 0.1), rgba(4, 7, 11, 0.58) 42%, rgba(4, 7, 11, 0.94)) !important;
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: clamp(500px, 74svh, 780px) !important;
}

.go-rs-score-card .go-rs-score-label,
.go-rs-score-card .go-rs-score-value,
.go-rs-score-card .go-rs-score-scale {
  color: inherit !important;
  opacity: 1 !important;
}

@media (max-width: 720px) {
  .go-rs-hero,
  .go-rs-hero-content {
    min-height: clamp(380px, 62svh, 560px) !important;
  }
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: clamp(540px, 78svh, 840px) !important;
}

.go-rs-hero-content {
  padding: clamp(104px, 12vh, 148px) 0 clamp(36px, 6vh, 70px) !important;
}

html.dark .go-rs-score-card :is(.go-rs-score-label, .go-rs-score-value, .go-rs-score-scale),
body.dark .go-rs-score-card :is(.go-rs-score-label, .go-rs-score-value, .go-rs-score-scale),
body.dark-mode .go-rs-score-card :is(.go-rs-score-label, .go-rs-score-value, .go-rs-score-scale),
body.is-dark-theme .go-rs-score-card :is(.go-rs-score-label, .go-rs-score-value, .go-rs-score-scale),
body.newsx-dark-mode .go-rs-score-card :is(.go-rs-score-label, .go-rs-score-value, .go-rs-score-scale),
[data-theme="dark"] .go-rs-score-card :is(.go-rs-score-label, .go-rs-score-value, .go-rs-score-scale) {
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

@media (max-width: 720px) {
  .go-rs-hero,
  .go-rs-hero-content {
    min-height: clamp(410px, 68svh, 620px) !important;
  }

  .go-rs-hero-content {
    padding-top: 98px !important;
    padding-bottom: 28px !important;
  }
}

.go-rs-hero {
  border-radius: 0 0 30px 30px !important;
}

.go-rs-hero,
.go-rs-hero-content {
  min-height: clamp(580px, 82svh, 900px) !important;
}

.go-rs-hero-content {
  padding: clamp(112px, 13vh, 156px) 0 clamp(40px, 6vh, 76px) !important;
}

.go-rs-score-card .go-rs-score-label,
.go-rs-score-card .go-rs-score-value,
.go-rs-score-card .go-rs-score-scale,
html.dark .go-rs-score-card .go-rs-score-label,
body.dark .go-rs-score-card .go-rs-score-label,
body.dark-mode .go-rs-score-card .go-rs-score-label,
body.is-dark-theme .go-rs-score-card .go-rs-score-label,
body.newsx-dark-mode .go-rs-score-card .go-rs-score-label,
[data-theme="dark"] .go-rs-score-card .go-rs-score-label {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.go-rs-main > .newsx-post-author-box {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06) !important;
}

.go-rs-main > .newsx-post-author-box::before {
  height: 84px !important;
  background:
    linear-gradient(90deg, rgba(40, 0, 240, 0.1), rgba(255, 255, 255, 0.42) 58%, rgba(199, 240, 0, 0.08)) !important;
}

@media (max-width: 720px) {
  .go-rs-hero,
  .go-rs-hero-content {
    min-height: clamp(420px, 72svh, 660px) !important;
  }

  .go-rs-hero {
    border-radius: 0 0 24px 24px !important;
  }

  .go-rs-hero-content {
    padding-top: 102px !important;
  }
}

.go-rs-score-card:not(.score-excellent) :is(.go-rs-score-label, .go-rs-score-value, .go-rs-score-scale) {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

.go-rs-hero {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.go-rs-main > .newsx-post-author-box {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04) !important;
}

.go-rs-main > .newsx-post-author-box::before {
  opacity: 0.78;
}

body.single-post .go-rs-hero,
body.single-post .go-rs-hero-media,
body.single-post .go-rs-hero-media img {
  border-radius: 0 !important;
  border: 0 !important;
}

body.single-post .go-rs-hero,
body.single-post .go-rs-hero-content {
  min-height: clamp(620px, 84svh, 920px) !important;
}

body.single-post .go-rs-hero-content {
  padding: clamp(116px, 13vh, 160px) 0 clamp(44px, 7vh, 84px) !important;
}

body.single-post .go-rs-score-card,
body.single-post .go-rs-score-card * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
}

body.single-post .go-rs-main > .newsx-post-author-box {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.03) !important;
}

body.single-post .go-rs-main > .newsx-post-author-box::before {
  height: 72px !important;
  opacity: 0.58 !important;
  background:
    linear-gradient(90deg, rgba(58, 28, 255, 0.08), rgba(255, 255, 255, 0.18) 46%, rgba(199, 240, 0, 0.06)) !important;
}

body.single-post .go-rs-main > .newsx-post-author-box .author-name,
body.single-post .go-rs-main > .newsx-post-author-box .author-name a {
  text-shadow: none !important;
  color: var(--go-rs-text) !important;
}

@media (max-width: 720px) {
  body.single-post .go-rs-hero,
  body.single-post .go-rs-hero-content {
    min-height: clamp(430px, 70svh, 620px) !important;
  }
}

body.single-post .go-rs-hero,
body.single-post .go-rs-hero-media,
body.single-post .go-rs-hero-media img,
body.single-post .go-rs-hero-overlay {
  border-radius: 0 !important;
  border: 0 !important;
}

body.single-post .go-rs-hero,
body.single-post .go-rs-hero-content {
  min-height: clamp(660px, 86svh, 980px) !important;
}

body.single-post .go-rs-hero-content {
  padding: clamp(120px, 13vh, 164px) 0 clamp(48px, 7vh, 88px) !important;
}

body.single-post .go-rs-score-card .go-rs-score-label,
body.single-post .go-rs-score-card .go-rs-score-value,
body.single-post .go-rs-score-card .go-rs-score-scale,
body.single-post .go-rs-score-card * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

body.single-post .go-rs-main > .newsx-post-author-box {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.02) !important;
}

body.single-post .go-rs-main > .newsx-post-author-box::before {
  height: 68px !important;
  opacity: 0.48 !important;
}

body.single-post .go-rs-main > .newsx-post-author-box .author-name,
body.single-post .go-rs-main > .newsx-post-author-box .author-name a {
  color: var(--go-rs-text) !important;
  text-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (max-width: 720px) {
  body.single-post .go-rs-hero,
  body.single-post .go-rs-hero-content {
    min-height: clamp(460px, 74svh, 680px) !important;
  }
}

body.single-post .go-rs-hero,
body.single-post .go-rs-hero-media,
body.single-post .go-rs-hero-media img,
body.single-post .go-rs-hero-overlay {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.single-post .go-rs-hero {
  min-height: clamp(700px, 88svh, 1020px) !important;
  overflow: hidden !important;
}

body.single-post .go-rs-hero-content {
  min-height: clamp(700px, 88svh, 1020px) !important;
  padding: clamp(126px, 14vh, 172px) 0 clamp(50px, 7vh, 96px) !important;
}

body.single-post .go-rs-score-card .go-rs-score-label,
body.single-post .go-rs-score-card .go-rs-score-value,
body.single-post .go-rs-score-card .go-rs-score-scale,
body.single-post .go-rs-score-card * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
  box-shadow: none !important;
  mix-blend-mode: normal !important;
}

body.single-post .go-rs-main > .newsx-post-author-box,
body.single-post .go-rs-main > .newsx-post-author-box * {
  text-shadow: none !important;
}

body.single-post .go-rs-main > .newsx-post-author-box {
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.02) !important;
  border-color: rgba(148, 163, 184, 0.12) !important;
}

body.single-post .go-rs-main > .newsx-post-author-box::before {
  opacity: 0.22 !important;
  height: 62px !important;
}

body.single-post .go-rs-main > .newsx-post-author-box .author-name,
body.single-post .go-rs-main > .newsx-post-author-box .author-name a {
  color: var(--go-rs-text) !important;
  text-shadow: none !important;
  filter: none !important;
}

@media (max-width: 720px) {
  body.single-post .go-rs-hero,
  body.single-post .go-rs-hero-content {
    min-height: clamp(500px, 76svh, 720px) !important;
  }
}

/* Final review pass: cleaner hero, bigger opening, softer author box */
body.single-post .go-rs-shell {
  width: min(100%, 100%) !important;
  max-width: none !important;
  padding-inline: 0 !important;
}

body.single-post .go-rs-article {
  overflow: clip !important;
}

body.single-post .go-rs-hero,
body.single-post .go-rs-hero-media,
body.single-post .go-rs-hero-media img,
body.single-post .go-rs-hero-overlay {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.single-post .go-rs-hero {
  min-height: clamp(760px, 90svh, 1080px) !important;
}

body.single-post .go-rs-hero-content {
  min-height: clamp(760px, 90svh, 1080px) !important;
  padding: clamp(132px, 15vh, 182px) 0 clamp(56px, 8vh, 104px) !important;
}

body.single-post .go-rs-score-card .go-rs-score-label,
body.single-post .go-rs-score-card .go-rs-score-value,
body.single-post .go-rs-score-card .go-rs-score-scale,
body.single-post .go-rs-score-card * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
  mix-blend-mode: normal !important;
}

body.single-post .go-rs-main > .newsx-post-author-box {
  box-shadow: none !important;
  filter: none !important;
}

body.single-post .go-rs-main > .newsx-post-author-box::before {
  opacity: 0.16 !important;
  height: 56px !important;
}

body.single-post .go-rs-main > .newsx-post-author-box .author-name,
body.single-post .go-rs-main > .newsx-post-author-box .author-name a,
body.single-post .go-rs-main > .newsx-post-author-box .author-job,
body.single-post .go-rs-main > .newsx-post-author-box .author-description {
  text-shadow: none !important;
  filter: none !important;
  box-shadow: none !important;
}

@media (max-width: 720px) {
  body.single-post .go-rs-hero {
    min-height: clamp(520px, 74svh, 760px) !important;
  }

  body.single-post .go-rs-hero-content {
    min-height: clamp(520px, 74svh, 760px) !important;
    padding-top: 104px !important;
    padding-bottom: 26px !important;
  }
}

/* Final locked pass: single review */
body.go-template-review #content.site-content {
  overflow-x: clip !important;
}

body.go-template-review .go-rs-shell {
  width: min(100%, 100%) !important;
  max-width: none !important;
  padding-inline: 0 !important;
}

body.go-template-review .go-rs-article {
  overflow-x: clip !important;
}

body.go-template-review .go-rs-hero,
body.go-template-review .go-rs-hero-media,
body.go-template-review .go-rs-hero-media img,
body.go-template-review .go-rs-hero-overlay {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.go-template-review .go-rs-hero {
  min-height: clamp(740px, 89svh, 1040px) !important;
  overflow: hidden !important;
}

body.go-template-review .go-rs-hero-content {
  min-height: clamp(740px, 89svh, 1040px) !important;
  padding: clamp(132px, 15vh, 180px) 0 clamp(56px, 8vh, 100px) !important;
}

body.go-template-review .go-rs-score-card .go-rs-score-label,
body.go-template-review .go-rs-score-card .go-rs-score-value,
body.go-template-review .go-rs-score-card .go-rs-score-scale,
body.go-template-review .go-rs-score-card * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
  mix-blend-mode: normal !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

body.go-template-review .go-rs-main > .newsx-post-author-box,
body.go-template-review .go-rs-main > .newsx-post-author-box * {
  text-shadow: none !important;
  filter: none !important;
}

body.go-template-review .go-rs-main > .newsx-post-author-box {
  box-shadow: none !important;
  border-color: rgba(148, 163, 184, 0.12) !important;
}

body.go-template-review .go-rs-main > .newsx-post-author-box::before {
  opacity: 0.12 !important;
  height: 48px !important;
}

@media (max-width: 720px) {
  body.go-template-review .go-rs-hero {
    min-height: clamp(540px, 76svh, 780px) !important;
  }

  body.go-template-review .go-rs-hero-content {
    min-height: clamp(540px, 76svh, 780px) !important;
    padding-top: 112px !important;
    padding-bottom: 28px !important;
  }
}

/* 2026 review header strip cleanup final */
body.go-template-review .go-shell-header,
body.single-review .go-shell-header {
  position: fixed !important;
  top: var(--go-shell-admin-offset, 0px) !important;
  box-shadow: none !important;
}

body.go-template-review .go-rs-page,
body.single-review .go-rs-page {
  padding-top: 0 !important;
  background-image: none !important;
  background-size: 0 0 !important;
}

/* 2026 reading refresh: single review */
body.go-template-review .go-rs-article-body {
  --go-reading-measure: 70ch;
}

body.go-template-review .go-rs-article-body .newsx-post-content,
body.go-template-review .go-rs-article-body .newsx-table-of-contents {
  max-width: min(100%, 75ch);
  margin-inline: auto;
}

body.go-template-review .go-rs-article-body .newsx-post-content {
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.15rem);
  line-height: 1.88;
  letter-spacing: -0.003em;
}

body.go-template-review .go-rs-article-body .newsx-post-content > :where(p, ul, ol, h2, h3, h4, h5, h6, blockquote, pre, table, figure, .wp-block-image, .wp-block-gallery, .wp-block-video, .wp-block-embed, .wp-block-table, .wp-block-code, .wp-block-quote, .wp-block-pullquote):not(.alignwide):not(.alignfull) {
  max-width: min(100%, var(--go-reading-measure));
  margin-inline: auto;
}

body.go-template-review .go-rs-article-body .newsx-post-content > p:first-of-type {
  font-size: clamp(1.14rem, 1.06rem + 0.28vw, 1.28rem);
  line-height: 1.68;
}

body.go-template-review .go-rs-article-body .newsx-post-content :is(h2, h3, h4, h5, h6) {
  max-width: min(100%, 28ch);
  line-height: 1.12;
  scroll-margin-top: 110px;
}

body.go-template-review .go-rs-article-body .newsx-post-content h2 {
  font-size: clamp(1.66rem, 1.44rem + 0.64vw, 2.1rem);
}

body.go-template-review .go-rs-article-body .newsx-post-content h3 {
  font-size: clamp(1.38rem, 1.26rem + 0.4vw, 1.64rem);
}

body.go-template-review .go-rs-article-body .newsx-post-content p,
body.go-template-review .go-rs-article-body .newsx-post-content ul,
body.go-template-review .go-rs-article-body .newsx-post-content ol {
  margin-bottom: 1.22em;
}

body.go-template-review .go-rs-article-body .newsx-post-content :is(ul, ol) {
  padding-left: 1.28em;
}

body.go-template-review .go-rs-article-body .newsx-post-content li + li {
  margin-top: 0.42em;
}

body.go-template-review .go-rs-article-body .newsx-post-content :is(img, video, iframe) {
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}

body.go-template-review .go-rs-article-body .newsx-post-content :is(figcaption, .wp-caption-text, .blocks-gallery-caption) {
  max-width: min(100%, 66ch);
  margin: 0.9rem auto 0;
  color: var(--go-rs-soft);
  font-size: 0.93rem;
  line-height: 1.62;
  text-align: left;
}

body.go-template-review .go-rs-article-body .newsx-post-content a {
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.18em;
}

body.go-template-review .go-rs-article-body .newsx-post-content blockquote,
body.go-template-review .go-rs-article-body .newsx-post-content pre,
body.go-template-review .go-rs-article-body .newsx-post-content table {
  max-width: min(100%, 75ch);
}

body.go-template-review .go-rs-article-body .newsx-post-content .alignwide {
  max-width: min(100%, 92ch);
}

body.go-template-review .go-rs-article-body .newsx-post-content .alignfull {
  max-width: none;
}

@media (max-width: 720px) {
  body.go-template-review .go-rs-article-body .newsx-post-content {
    font-size: 1rem;
    line-height: 1.78;
  }

  body.go-template-review .go-rs-article-body .newsx-post-content > p:first-of-type {
    font-size: 1.07rem;
    line-height: 1.64;
  }
}

/* 2026 correction pass: single review theme + toc */
body.go-template-review .go-rs-page {
  background: var(--go-rs-bg) !important;
  color: var(--go-rs-text) !important;
}

body.go-template-review #content.site-content {
  overflow-x: visible !important;
}

body.go-template-review .go-rs-shell {
  width: min(calc(100% - (var(--go-desktop-content-gutter, 16px) * 2)), var(--go-desktop-content-max, 1560px)) !important;
  max-width: var(--go-desktop-content-max, 1560px) !important;
  margin: 0 auto 56px !important;
  padding-inline: 0 !important;
}

body.go-template-review .go-rs-article {
  overflow-x: visible !important;
}

body.go-template-review .go-rs-hero {
  min-height: clamp(360px, 64svh, 760px) !important;
  margin-inline: calc(var(--go-desktop-content-gutter, 16px) * -1) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: clamp(0px, 2vw, 30px) !important;
  overflow: hidden !important;
}

body.go-template-review .go-rs-hero-media,
body.go-template-review .go-rs-hero-media img,
body.go-template-review .go-rs-hero-overlay {
  border-radius: inherit !important;
}

body.go-template-review .go-rs-hero-content {
  width: min(100% - 40px, 1280px);
  min-height: clamp(360px, 64svh, 760px) !important;
  margin: 0 auto;
  padding: clamp(92px, 12vh, 132px) 0 clamp(26px, 5vh, 40px) !important;
}

body.go-template-review :is(.go-rs-score-card, .go-rs-verdict-card, .go-rs-panel, .go-rs-points-card, .go-rs-final-verdict, .newsx-post-navigation, .newsx-post-author-box, .newsx-related-posts-wrap, .comments-area, .newsx-post-sources) {
  border-color: var(--go-rs-border) !important;
  background: var(--go-rs-surface) !important;
  color: var(--go-rs-text) !important;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

body.go-template-review .go-rs-spec,
body.go-template-review .go-rs-mini-score,
body.go-template-review .go-rs-author-item {
  border-color: var(--go-rs-border) !important;
  background: var(--go-rs-surface-2) !important;
}

body.go-template-review .go-rs-kicker {
  color: #111111 !important;
}

body.go-template-review .go-rs-tags a {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(9, 13, 22, 0.46) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.go-template-review :is(.go-rs-panel h2, .go-rs-verdict-card h2, .go-rs-spec strong, .go-rs-author-item strong, .go-rs-panel a) {
  color: var(--go-rs-text) !important;
}

body.go-template-review :is(.go-rs-panel-copy, .go-rs-spec span, .go-rs-author-item small) {
  color: var(--go-rs-soft) !important;
}

body.go-template-review .go-rs-article-body .newsx-post-content,
body.go-template-review .go-rs-article-body .newsx-table-of-contents {
  max-width: min(100%, 78ch);
}

body.go-template-review .go-rs-article-body .newsx-post-content {
  font-size: clamp(1.05rem, 1rem + 0.24vw, 1.17rem);
  line-height: 1.88;
  letter-spacing: -0.01em;
  color: var(--go-rs-text) !important;
}

body.go-template-review .go-rs-article-body .newsx-post-content > :where(p, ul, ol, h2, h3, h4, h5, h6, blockquote, pre, table, figure, .wp-block-image, .wp-block-gallery, .wp-block-video, .wp-block-embed, .wp-block-table, .wp-block-code, .wp-block-quote, .wp-block-pullquote):not(.alignwide):not(.alignfull) {
  max-width: none !important;
  margin-inline: 0 !important;
}

body.go-template-review .go-rs-article-body .newsx-post-content > p:first-of-type {
  font-size: clamp(1.14rem, 1.08rem + 0.28vw, 1.28rem);
  line-height: 1.72;
}

body.go-template-review .go-rs-article-body .newsx-post-content :is(h2, h3, h4, h5, h6) {
  max-width: none !important;
  margin-inline: 0 !important;
  letter-spacing: -0.03em;
  line-height: 1.1 !important;
  text-wrap: pretty;
}

body.go-template-review .go-rs-article-body .newsx-post-content h2 {
  margin-top: 2.4em;
  margin-bottom: 0.72em;
  font-size: clamp(1.8rem, 1.56rem + 0.78vw, 2.26rem);
}

body.go-template-review .go-rs-article-body .newsx-post-content h3 {
  margin-top: 2em;
  margin-bottom: 0.64em;
  font-size: clamp(1.44rem, 1.29rem + 0.42vw, 1.72rem);
}

body.go-template-review .go-rs-article-body .newsx-post-content :is(p, li) {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.go-template-review .go-rs-article-body .newsx-post-content a {
  color: var(--go-rs-accent-2) !important;
}

body.go-template-review .go-rs-article-body .newsx-table-of-contents {
  counter-reset: go-rs-toc-item;
  padding: clamp(20px, 3vw, 28px) !important;
  border: 1px solid var(--go-rs-border) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at top right, rgba(199, 240, 0, 0.12), transparent 38%),
    var(--go-rs-surface) !important;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

body.go-template-review .go-rs-article-body .newsx-table-of-contents h3 {
  margin: 0 0 16px !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--go-rs-text) !important;
  font-size: clamp(1.22rem, 1.13rem + 0.24vw, 1.4rem) !important;
}

body.go-template-review .go-rs-article-body .newsx-table-of-contents h3::before {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--go-rs-accent), var(--go-rs-accent-2)) !important;
}

body.go-template-review .go-rs-article-body .newsx-table-of-contents h3::after,
body.go-template-review .go-rs-article-body .newsx-table-of-contents h3 svg {
  display: none !important;
}

body.go-template-review .go-rs-article-body .newsx-table-of-contents > div {
  display: grid !important;
  gap: 10px !important;
}

body.go-template-review .go-rs-article-body .newsx-table-of-contents a {
  min-height: 0 !important;
  padding: 15px 18px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  border: 1px solid var(--go-rs-border) !important;
  border-radius: 18px !important;
  background: var(--go-rs-surface-2) !important;
  color: var(--go-rs-text) !important;
  font-size: clamp(0.98rem, 0.95rem + 0.12vw, 1.04rem) !important;
  line-height: 1.45 !important;
  box-shadow: none !important;
}

body.go-template-review .go-rs-article-body .newsx-table-of-contents a::before {
  content: counter(go-rs-toc-item, decimal-leading-zero);
  counter-increment: go-rs-toc-item;
  width: auto !important;
  min-width: 2.2ch;
  height: auto !important;
  margin: 0.08em 0 0 !important;
  border-radius: 0 !important;
  background: none !important;
  color: var(--go-rs-accent-2) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
}

body.go-template-review .go-rs-article-body .newsx-table-of-contents a:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 0, 240, 0.18) !important;
  background: var(--go-rs-surface) !important;
  color: var(--go-rs-text) !important;
}

@media (max-width: 720px) {
  body.go-template-review .go-rs-hero {
    margin-inline: -12px !important;
    border-radius: 0 !important;
  }

  body.go-template-review .go-rs-hero-content {
    width: min(100% - 24px, 1280px);
  }

  body.go-template-review .go-rs-article-body .newsx-post-content {
    font-size: 1rem;
    line-height: 1.8;
  }

  body.go-template-review .go-rs-article-body .newsx-table-of-contents {
    padding: 18px !important;
    border-radius: 24px !important;
  }

  body.go-template-review .go-rs-article-body .newsx-table-of-contents a {
    padding: 14px 15px !important;
  }
}
