/* HighRatedShopper — token-driven CSS. No hardcoded palette. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.hrs-body {
  margin: 0;
  background: var(--hrs-white);
  color: var(--hrs-ink);
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: var(--hrs-accent);
  text-decoration: none;
}

a:hover {
  color: var(--hrs-accent-dark);
  text-decoration: underline;
}

p,
li {
  overflow-wrap: anywhere;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

summary {
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

.hrs-h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.hrs-h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.hrs-h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.hrs-h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.hrs-h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.hrs-h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .hrs-h1 {
    font-size: 36px;
  }

  .hrs-h2 {
    font-size: 30px;
  }

  .hrs-h3 {
    font-size: 24px;
  }
}

.hrs-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--hrs-white);
  color: var(--hrs-accent);
  padding: var(--hrs-s3) var(--hrs-s4);
  border: 1px solid var(--hrs-line);
  z-index: 50;
  min-height: 44px;
}

.hrs-skip:focus {
  left: var(--hrs-s4);
  top: var(--hrs-s4);
}

.hrs-wrap {
  width: 100%;
  max-width: var(--hrs-container);
  margin: 0 auto;
  padding-left: var(--hrs-gutter);
  padding-right: var(--hrs-gutter);
}

.hrs-wrap--wide {
  max-width: var(--hrs-container-wide);
}

/* .hrs-wrap--read {
  max-width: var(--hrs-container-read);
} */

.hrs-section {
  padding-block: clamp(2.75rem, 5vw, 4rem);
}

.hrs-section--tight {
  padding-block: var(--hrs-s5);
}

.hrs-section--white {
  background: var(--hrs-white);
}

.hrs-section--band {
  background: var(--hrs-band);
  border-top: 1px solid var(--hrs-line);
  border-bottom: 1px solid var(--hrs-line);
}

.hrs-section--accent {
  background: var(--hrs-accent);
}

.hrs-section__title {
  margin-bottom: var(--hrs-s5);
}

.hrs-section__head {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s3);
  max-width: 680px;
  margin-bottom: var(--hrs-s6);
  min-width: 0;
}

.hrs-section__head--row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--hrs-s5);
  flex-wrap: wrap;
  max-width: none;
  margin-bottom: var(--hrs-s5);
}

.hrs-section__dek {
  font-size: 16px;
  color: var(--hrs-ink-soft);
}

.hrs-page-hero {
  padding: var(--hrs-s7) 0;
  background: var(--hrs-band);
  border-bottom: 1px solid var(--hrs-line);
}

.hrs-page-hero .hrs-crumb {
  margin-bottom: var(--hrs-s4);
}

.hrs-page-hero__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hrs-accent);
  margin-bottom: var(--hrs-s2);
}

.hrs-page-hero__dek {
  font-size: 16px;
  color: var(--hrs-ink-soft);
  margin-top: var(--hrs-s3);
  line-height: 1.6;
}

.hrs-authors {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s5);
}

.hrs-author--card {
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
  padding: var(--hrs-s5);
  background: var(--hrs-white);
  display: flex;
  gap: var(--hrs-s4);
  min-width: 0;
}

.hrs-author--card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 56px;
}

.hrs-error {
  padding: var(--hrs-s8) 0;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hrs-error .hrs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hrs-error__code {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--hrs-accent);
  letter-spacing: -0.03em;
}

.hrs-error__dek {
  font-size: 16px;
  color: var(--hrs-ink-soft);
  max-width: 36ch;
  margin-top: var(--hrs-s3);
  line-height: 1.6;
}

.hrs-error__actions {
  display: flex;
  justify-content: center;
  margin-top: var(--hrs-s5);
}

.hrs-rule {
  height: 1px;
  background: var(--hrs-line);
}

.hrs-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
  flex: 0 0 auto;
}

.hrs-logo:hover {
  text-decoration: none;
}

.hrs-logo--custom {
  gap: 0;
}

.hrs-logo--custom .hrs-logo__img,
.hrs-logo--custom img {
  display: block;
  height: 45px;
  width: auto;
  max-width: 200px;
  max-height: 45px;
  object-fit: contain;
}

.hrs-logo__mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: var(--hrs-r-lg);
  background: var(--hrs-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hrs-logo__hr {
  font-size: 14px;
  font-weight: 700;
  color: var(--hrs-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hrs-logo__dot {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hrs-accent-light);
  border: 2px solid var(--hrs-white);
}

.hrs-footer .hrs-logo__dot {
  border-color: var(--hrs-dark);
}

.hrs-logo__word {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--hrs-ink);
  white-space: nowrap;
}

.hrs-logo__shop {
  color: var(--hrs-accent);
}

.hrs-logo__word--dark {
  color: var(--hrs-white);
}

.hrs-logo__shop--on-dark {
  color: var(--hrs-on-dark-link);
}

.hrs-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--hrs-white);
  border-top: 4px solid var(--hrs-accent);
  border-bottom: 1px solid var(--hrs-line);
}

.hrs-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: var(--hrs-s2);
  min-height: 68px;
  min-width: 0;
  padding-block: var(--hrs-s2);
}

.hrs-header .hrs-logo {
  grid-column: 1;
  justify-self: start;
  max-width: 100%;
}

.hrs-search-toggle {
  grid-column: 2;
}

.hrs-menu-btn {
  grid-column: 3;
}

.hrs-search-toggle,
.hrs-menu-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-md);
  background: var(--hrs-white);
  color: var(--hrs-ink);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.hrs-search-toggle:hover,
.hrs-menu-btn:hover {
  border-color: var(--hrs-accent);
  color: var(--hrs-accent);
}

.hrs-search-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hrs-menu-btn span:not(.hrs-hp) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: var(--hrs-r-pill);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hrs-header.is-open .hrs-menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hrs-header.is-open .hrs-menu-btn span:nth-child(2) {
  opacity: 0;
}

.hrs-header.is-open .hrs-menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hrs-nav {
  display: none;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  padding: var(--hrs-s3) 0 0;
  min-width: 0;
  grid-column: 1 / -1;
  flex-direction: column;
  border-top: 1px solid var(--hrs-line);
}

.hrs-header.is-open .hrs-nav {
  display: flex;
  position: fixed;
  top: var(--hrs-header-h, 73px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  margin: 0;
  padding: var(--hrs-s4) var(--hrs-gutter) var(--hrs-s6);
  background: var(--hrs-white);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.hrs-header .hrs-search {
  order: -1;
  width: 100%;
  max-width: none;
  height: 44px;
  flex: 0 0 auto;
  margin: 0 0 var(--hrs-s4);
}

html.hrs-nav-open {
  overflow: hidden;
}

body.hrs-nav-open,
body.hrs-body.hrs-nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 1279px) {
  .hrs-header.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
  }
}

.hrs-search {
  display: flex;
  align-items: center;
  height: 36px;
  width: 168px;
  flex: 0 0 auto;
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-pill);
  background: var(--hrs-white);
  overflow: hidden;
}

.hrs-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 12px 0 0;
  height: 100%;
  font-size: 16px;
  color: var(--hrs-ink);
  outline: none;
}

.hrs-search input::placeholder {
  color: var(--hrs-ink-soft);
}

.hrs-search__btn,
.hrs-search button {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--hrs-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hrs-search__btn svg,
.hrs-search button svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hrs-search__btn:hover,
.hrs-search button:hover {
  color: var(--hrs-accent);
}

.hrs-search--page {
  width: min(100%, 420px);
  height: 48px;
  margin-top: var(--hrs-s5);
}

.hrs-search--page input {
  font-size: 16px;
  padding: 0 16px 0 0;
}

.hrs-search--page button {
  flex-basis: 48px;
  width: 48px;
  height: 48px;
}

.hrs-search--page button svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1279px) {
  .hrs-logo--custom .hrs-logo__img,
  .hrs-logo--custom img {
    max-width: min(160px, 100%);
    height: 32px;
    max-height: 32px;
  }

  .hrs-header .hrs-logo__word {
    font-size: clamp(14px, 3.8vw, 18px);
  }
}

.hrs-nav__link {
  background: transparent;
  border: 0;
  padding: 6px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--hrs-ink);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.hrs-nav__link:hover {
  color: var(--hrs-accent);
  text-decoration: none;
}

.hrs-nav__link.is-active {
  font-weight: 600;
  color: var(--hrs-accent);
  border-bottom-color: var(--hrs-accent);
}

.hrs-nav .hrs-nav__link {
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hrs-line);
}

.hrs-nav__links {
  display: flex;
  flex-direction: column;
}

.hrs-hero {
  padding: 40px 0 56px;
  background: var(--hrs-white);
}

.hrs-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s6);
  align-items: stretch;
}

.hrs-hero__rail {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: var(--hrs-s4);
  min-width: 0;
  height: max-content;
  background: transparent;
  padding: 0;
}

.hrs-hero__best {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  background: var(--hrs-band);
  border-radius: var(--hrs-r-xl);
  padding: var(--hrs-s5);
}

.hrs-hero__rail-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hrs-hero__rail-dek {
  font-size: 14px;
  color: var(--hrs-ink-soft);
  line-height: 1.5;
  margin-bottom: 10px;
}

.hrs-hero__rail-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hrs-ink);
  text-decoration: none;
  border-top: 1px dashed #C6D4EA;
  padding: 14px 0;
  min-width: 0;
  display: flex;
  align-items: center;
  text-wrap: pretty;
}

.hrs-hero__rail-link:hover {
  color: var(--hrs-accent);
  text-decoration: none;
}

.hrs-hero__main {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s5);
  min-width: 0;
}

.hrs-hero__feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-radius: var(--hrs-r-xl);
  overflow: hidden;
  background: var(--hrs-accent);
}

.hrs-hero__feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--hrs-band);
  min-width: 0;
}

.hrs-hero__feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hrs-hero__feature-copy {
  padding: var(--hrs-s6);
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s4);
  justify-content: center;
  min-width: 0;
}

.hrs-hero__feature-copy .hrs-h1,
.hrs-hero__feature-copy .hrs-h1 a {
  color: var(--hrs-white);
}

.hrs-hero__feature-copy .hrs-h1 a:hover {
  color: var(--hrs-white);
  text-decoration: underline;
}

.hrs-hero__dek {
  font-size: 18px;
  line-height: 1.5;
  color: var(--hrs-accent-pale);
  max-width: 44ch;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hrs-hero__by {
  font-size: 14px;
  color: var(--hrs-accent-pale);
}

.hrs-hero__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.hrs-card {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s3);
  min-width: 0;
  align-items: flex-start;
  position: relative;
}

.hrs-card__media {
  position: relative;
  width: 100%;
  border-radius: var(--hrs-r-xl);
  background: var(--hrs-band);
  overflow: hidden;
}

.hrs-card__media--169 {
  aspect-ratio: 16 / 9;
}

.hrs-card__media--43 {
  aspect-ratio: 4 / 3;
}

.hrs-card__media--md {
  border-radius: var(--hrs-r-md);
}

.hrs-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hrs-card__meta {
  font-size: 14px;
  color: var(--hrs-ink-soft);
  font-variant-numeric: tabular-nums;
}

.hrs-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hrs-card__title a {
  color: var(--hrs-ink);
  text-decoration: none;
}

.hrs-card__title a:hover {
  color: var(--hrs-accent);
  text-decoration: underline;
}

.hrs-card__more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hrs-accent);
}

.hrs-card__summary {
  font-size: 16px;
  color: var(--hrs-ink-soft);
  line-height: 1.6;
}

.hrs-lead__feature .hrs-card__summary {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hrs-card__author {
  font-size: 14px;
  color: var(--hrs-ink-soft);
}

.hrs-card--hero-mini .hrs-card__title {
  font-size: 18px;
  font-weight: 600;
}

.hrs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s6);
  align-items: start;
}

.hrs-grid--2,
.hrs-grid--3,
.hrs-grid--4 {
  grid-template-columns: minmax(0, 1fr);
}

.hrs-tile {
  text-align: left;
  background: var(--hrs-white);
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.hrs-tile:hover {
  border-color: var(--hrs-accent);
  text-decoration: none;
  color: inherit;
}

.hrs-tile__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-bottom: 1px solid var(--hrs-line);
  overflow: hidden;
}

.hrs-tile__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hrs-tile__body {
  padding: 14px var(--hrs-s4) var(--hrs-s4);
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s1);
}

.hrs-tile__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hrs-ink);
}

.hrs-tile__count {
  font-size: 14px;
  color: var(--hrs-ink-soft);
  font-variant-numeric: tabular-nums;
}

.hrs-table--2 {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.hrs-table--3 {
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 1fr));
}

.hrs-table--4 {
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 1fr));
}

.hrs-article-section {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s4);
  min-width: 0;
}

.hrs-article-section .hrs-h2 {
  margin-bottom: var(--hrs-s2);
}

.hrs-card__media--flush {
  border-radius: 0;
}

.hrs-compare-card {
  background: var(--hrs-white);
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hrs-compare-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s3);
}

.hrs-trust {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s5);
}

.hrs-trust__item {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s2);
  border-top: 3px solid var(--hrs-accent-navy);
  padding-top: var(--hrs-s4);
  min-width: 0;
}

.hrs-trust__item h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.hrs-trust__item p {
  font-size: 16px;
  color: var(--hrs-ink-soft);
  line-height: 1.6;
}

.hrs-steps {
  display: flex;
  flex-direction: column;
}

.hrs-steps__row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: var(--hrs-s5);
  align-items: start;
  padding: var(--hrs-s5) 0;
  border-top: 1px solid var(--hrs-line);
}

.hrs-steps__num {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--hrs-ink);
  font-variant-numeric: tabular-nums;
}

.hrs-steps__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hrs-steps__copy h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.hrs-steps__copy p {
  font-size: 16px;
  color: var(--hrs-ink-soft);
  line-height: 1.6;
  max-width: 70ch;
}

.hrs-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s7);
  align-items: start;
}

.hrs-lead__feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.hrs-lead__feature .hrs-card__media {
  aspect-ratio: 16 / 9;
}

.hrs-lead__meta {
  display: flex;
  align-items: center;
  gap: var(--hrs-s3);
  flex-wrap: wrap;
}

.hrs-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--hrs-accent);
  background: var(--hrs-accent-tint);
  border: 0;
  border-radius: var(--hrs-r-sm);
  padding: 5px 10px;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hrs-tag:hover {
  background: var(--hrs-accent-pale);
  text-decoration: none;
  color: var(--hrs-accent);
}

.hrs-lead__stack {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hrs-lead__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid var(--hrs-line);
  min-width: 0;
}

.hrs-lead__cat {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--hrs-accent);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.hrs-lead__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hrs-ink);
  text-decoration: none;
  text-wrap: pretty;
}

.hrs-lead__title:hover {
  color: var(--hrs-accent);
  text-decoration: underline;
}

.hrs-filters {
  display: flex;
  align-items: center;
  gap: var(--hrs-s2);
  flex-wrap: wrap;
  border-top: 1px solid var(--hrs-line);
  border-bottom: 1px solid var(--hrs-line);
  padding: var(--hrs-s3) 0;
  margin-bottom: var(--hrs-s6);
}

.hrs-chip {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  min-height: 44px;
  border-radius: var(--hrs-r-pill);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid var(--hrs-line);
  background: transparent;
  color: var(--hrs-ink-soft);
}

.hrs-chip.is-active {
  border-color: var(--hrs-accent);
  background: var(--hrs-white);
  color: var(--hrs-accent);
}

.hrs-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s7) var(--hrs-s6);
  align-items: start;
}

.hrs-filter-grid .hrs-card[hidden],
.hrs-filter-grid .hrs-card.is-hidden {
  display: none !important;
}

.hrs-vdiv {
  display: none;
}

.hrs-filter-empty {
  font-size: 16px;
  color: var(--hrs-ink-soft);
  padding-top: var(--hrs-s2);
}

.hrs-filter-more {
  display: flex;
  justify-content: center;
  margin-top: var(--hrs-s6);
}

.hrs-count {
  font-size: 14px;
  color: var(--hrs-ink-soft);
  font-variant-numeric: tabular-nums;
}

.hrs-faq {
  display: flex;
  flex-direction: column;
}

.hrs-faq--boxed {
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
  overflow: hidden;
}

.hrs-faq__item {
  border-top: 1px solid var(--hrs-line);
  padding: 18px 0;
}

.hrs-faq--boxed .hrs-faq__item {
  padding: 18px 20px;
}

.hrs-faq__item:first-child {
  border-top: none;
}

.hrs-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hrs-s4);
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hrs-ink);
  list-style: none;
  min-height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.hrs-faq__plus {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--hrs-accent-tint);
  color: var(--hrs-accent);
  position: relative;
}

.hrs-faq__plus::before,
.hrs-faq__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--hrs-accent);
  transform: translate(-50%, -50%);
}

.hrs-faq__plus::before {
  width: 10px;
  height: 2px;
}

.hrs-faq__plus::after {
  width: 2px;
  height: 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hrs-faq__item.is-open .hrs-faq__plus::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.hrs-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}

.hrs-faq__item.is-open .hrs-faq__panel {
  grid-template-rows: 1fr;
}

.hrs-faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hrs-faq__panel,
  .hrs-faq__plus::after {
    transition: none;
  }
}

.hrs-faq__a {
  font-size: 15px;
  color: var(--hrs-ink-soft);
  line-height: 1.6;
  padding-top: var(--hrs-s3);
  max-width: 70ch;
}

.hrs-contact {
  padding-block: var(--hrs-s8);
  background: var(--hrs-accent);
}

.hrs-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s7);
  align-items: start;
}

.hrs-contact__copy {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s4);
  min-width: 0;
}

.hrs-contact__copy .hrs-h2 {
  color: var(--hrs-white);
}

.hrs-contact__dek {
  font-size: 16px;
  color: var(--hrs-accent-pale);
  max-width: 46ch;
}

.hrs-contact__mail {
  font-size: 16px;
  font-weight: 600;
  color: var(--hrs-white);
  text-decoration: underline;
}

.hrs-contact__mail:hover {
  color: var(--hrs-accent-pale);
}

.hrs-contact__hint {
  font-size: 14px;
  color: var(--hrs-accent-pale);
}

.hrs-contact__meta {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s3);
}

.hrs-contact__row {
  display: flex;
  align-items: flex-start;
  gap: var(--hrs-s3);
  min-width: 0;
}

.hrs-contact__row i,
.hrs-contact__row svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--hrs-white);
  fill: currentColor;
  font-size: 16px;
}

.hrs-contact__address,
.hrs-contact__extra {
  font-size: 15px;
  line-height: 1.5;
  color: var(--hrs-white);
  margin: 0;
}

.hrs-contact__extra-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hrs-accent-pale);
  margin-bottom: 2px;
}

.hrs-share--contact a {
  background: rgba(255, 255, 255, 0.16);
  color: var(--hrs-white);
}

.hrs-share--contact a:hover {
  background: var(--hrs-white);
  color: var(--hrs-accent);
  text-decoration: none;
}

.hrs-share--contact i,
.hrs-share--contact svg {
  width: 16px;
  height: 16px;
  font-size: 16px;
  color: inherit;
  fill: currentColor;
  display: block;
}

.hrs-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--hrs-white);
  border-radius: var(--hrs-r-xl);
  padding: var(--hrs-s5);
  min-width: 0;
}

.hrs-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hrs-ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hrs-form input,
.hrs-form textarea {
  min-height: 48px;
  padding: var(--hrs-s3) 14px;
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-md);
  background: var(--hrs-white);
  color: var(--hrs-ink);
  width: 100%;
}

.hrs-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.hrs-form__row {
  display: flex;
  align-items: center;
  gap: var(--hrs-s4);
  flex-wrap: wrap;
  padding-top: var(--hrs-s1);
}

.hrs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--hrs-s3) 22px;
  background: var(--hrs-accent);
  color: var(--hrs-white);
  border: 0;
  border-radius: var(--hrs-r-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.hrs-btn:hover {
  background: var(--hrs-accent-dark);
  color: var(--hrs-white);
  text-decoration: none;
}

.hrs-btn--dark {
  background: var(--hrs-accent-dark);
}

.hrs-btn--dark:hover {
  background: var(--hrs-accent-navy);
}

.hrs-btn--outline {
  background: transparent;
  color: var(--hrs-accent);
  border: 1px solid var(--hrs-accent);
}

.hrs-btn--outline:hover {
  background: var(--hrs-accent-tint);
  color: var(--hrs-accent);
}

.hrs-form__note {
  font-size: 14px;
  color: var(--hrs-ink-soft);
}

.hrs-trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s5);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: var(--hrs-s6);
  margin-top: 15px;
}

.hrs-trust-strip__item {
  min-width: 0;
}

.hrs-trust-strip__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--hrs-white);
}

.hrs-trust-strip__body {
  font-size: 14px;
  color: var(--hrs-accent-pale);
}

.hrs-footer {
  background: var(--hrs-dark);
  color: var(--hrs-on-dark);
  padding: var(--hrs-s8) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hrs-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.hrs-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s4);
  max-width: 34ch;
  min-width: 0;
}

.hrs-footer__brand .hrs-logo--custom {
  max-width: 180px;
}

.hrs-footer__desc {
  font-size: 14px;
  color: var(--hrs-on-dark-mute);
  line-height: 1.6;
}

.hrs-footer__mail {
  font-size: 14px;
  font-weight: 600;
  color: var(--hrs-on-dark-link);
}

.hrs-footer__mail:hover {
  color: var(--hrs-white);
}

.hrs-footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.hrs-footer__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hrs-on-dark-lbl);
}

.hrs-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s3);
}

.hrs-footer__links a,
.hrs-footer__links button {
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--hrs-on-dark);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.hrs-footer__links a:hover,
.hrs-footer__links button:hover {
  color: var(--hrs-white);
  text-decoration: underline;
}

.hrs-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: var(--hrs-s5) 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hrs-s5);
  flex-wrap: wrap;
  margin-top: 44px;
}

.hrs-footer__bar p,
.hrs-footer__bar span {
  font-size: 13px;
  color: var(--hrs-on-dark-lbl);
  margin: 0;
  max-width: 70ch;
}

.hrs-crumb {
  font-size: 13px;
  color: var(--hrs-ink-soft);
}

.hrs-crumb a {
  color: var(--hrs-ink-soft);
}

.hrs-article-header {
  padding: var(--hrs-s7) 0 40px;
}

.hrs-article-header__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s7);
  align-items: center;
}

.hrs-article-header__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.hrs-byline {
  display: flex;
  align-items: center;
  gap: var(--hrs-s3);
  flex-wrap: wrap;
}

.hrs-byline img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.hrs-byline__text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--hrs-ink-soft);
  line-height: 1.4;
}

.hrs-byline strong {
  color: var(--hrs-ink);
  font-weight: 600;
}

.hrs-article-header__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--hrs-r-xl);
  overflow: hidden;
  background: var(--hrs-band);
  min-width: 0;
}

.hrs-article-header__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hrs-takeaways {
  padding: 0 0 var(--hrs-s2);
}

.hrs-takeaways__box {
  background: var(--hrs-band);
  border-radius: var(--hrs-r-xl);
  padding: 22px var(--hrs-s5);
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s3);
}

.hrs-takeaways__title {
  font-size: 16px;
  font-weight: 700;
}

.hrs-takeaways li {
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
}

.hrs-check {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--hrs-accent);
  color: var(--hrs-white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hrs-toc-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hrs-s2);
  padding: 20px 0 4px;
}

.hrs-toc-mobile a {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--hrs-ink);
  background: var(--hrs-band);
  border-radius: var(--hrs-r-pill);
  padding: var(--hrs-s2) 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: normal;
  text-decoration: none;
}

.hrs-toc-mobile a:hover {
  color: var(--hrs-accent);
  text-decoration: none;
}

.hrs-disclosure {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--hrs-band);
  border-radius: var(--hrs-r-xl);
  padding: 18px 20px;
}

.hrs-disclosure__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: #0055ff;
  color: var(--hrs-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  line-height: 22px;
  text-align: center;
}

.hrs-disclosure__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--hrs-ink);
}

.hrs-disclosure__text strong {
  font-weight: 700;
}

.hrs-disclosure__text a {
  color: var(--hrs-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hrs-article-main {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s5);
  min-width: 0;
}

.hrs-entry .hrs-disclosure {
  margin: 0;
}

.hrs-entry .hrs-disclosure__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--hrs-ink);
}

.hrs-verdict {
  padding: var(--hrs-s5) 0 0;
}

.hrs-verdict__box {
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
  padding: var(--hrs-s5);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hrs-verdict__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
}

.hrs-verdict__num {
  font-size: 40px;
  font-weight: 700;
  color: var(--hrs-accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hrs-verdict__out {
  font-size: 13px;
  color: var(--hrs-ink-soft);
  font-variant-numeric: tabular-nums;
}

.hrs-verdict__div {
  width: 1px;
  align-self: stretch;
  background: var(--hrs-line);
}

.hrs-verdict__sum {
  flex: 1;
  min-width: 220px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.hrs-proscons {
  padding: var(--hrs-s5) 0 0;
}

.hrs-proscons__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s5);
}

.hrs-proscons__card {
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s3);
  min-width: 0;
}

.hrs-proscons__card h3 {
  font-size: 14px;
  font-weight: 700;
}

.hrs-proscons li {
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  gap: 10px;
}

.hrs-mark-plus {
  color: var(--hrs-accent);
  font-weight: 700;
}

.hrs-mark-minus {
  color: var(--hrs-red);
  font-weight: 700;
}

.hrs-body-grid-wrap {
  padding: 40px 0 var(--hrs-s8);
}

.hrs-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hrs-s7);
  align-items: stretch;
}

.hrs-toc {
  display: none;
  flex-direction: column;
  gap: var(--hrs-s3);
  background: var(--hrs-white);
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-lg);
  padding: 18px;
  min-width: 0;
  align-self: start;
}

.hrs-toc__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hrs-ink-soft);
}

.hrs-toc a {
  font-size: 14px;
  font-weight: 500;
  color: var(--hrs-ink);
  line-height: 1.4;
  text-wrap: pretty;
}

.hrs-toc a.is-active {
  color: var(--hrs-accent);
  font-weight: 600;
}

.hrs-article-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
}

.hrs-article-body .hrs-h2 {
  scroll-margin-top: 88px;
}

.hrs-article-body p {
  font-size: 16px;
  line-height: 1.7;
}

.hrs-article-body .hrs-h3 {
  margin-top: var(--hrs-s4);
}

.hrs-article-body ul.hrs-bullets {
  padding-left: 1.1em;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s2);
}

.hrs-article-body ul.hrs-bullets li {
  font-size: 16px;
  line-height: 1.7;
}

.hrs-figure {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s2);
}

.hrs-figure__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--hrs-r-xl);
  overflow: hidden;
  background: var(--hrs-band);
}

.hrs-figure__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hrs-figure figcaption {
  font-size: 13px;
  color: var(--hrs-ink-soft);
}

.hrs-winner {
  font-size: 16px;
  font-weight: 700;
  color: var(--hrs-accent);
}

.hrs-inline-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: var(--hrs-s2) 14px;
  border-radius: var(--hrs-r-pill);
  background: var(--hrs-accent-tint);
  color: var(--hrs-accent);
  font-size: 13px;
  font-weight: 600;
}

.hrs-inline-cta:hover {
  color: var(--hrs-accent-dark);
  text-decoration: none;
}

.hrs-bottom-cta {
  padding-top: var(--hrs-s4);
}

.hrs-rail-stack {
  display: none;
  flex-direction: column;
  gap: var(--hrs-s4);
  min-width: 0;
  height: max-content;
}

.hrs-rail {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s4);
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-lg);
  padding: 18px;
  min-width: 0;
  background: var(--hrs-white);
}

.hrs-rail__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hrs-ink-soft);
}

.hrs-share {
  display: flex;
  gap: var(--hrs-s2);
  flex-wrap: wrap;
}

.hrs-share a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hrs-accent-tint);
  color: var(--hrs-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.hrs-share a:hover {
  background: var(--hrs-accent);
  color: var(--hrs-white);
  text-decoration: none;
}

.hrs-share a svg,
.hrs-share a img {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 16px;
}

.hrs-share a svg {
  fill: currentColor;
}

.hrs-share a img {
  object-fit: contain;
}

.hrs-rail-cats {
  display: flex;
  flex-direction: column;
}

.hrs-rail-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: var(--hrs-s3) 0;
  border-top: 1px solid var(--hrs-line);
  font-size: 14px;
  color: var(--hrs-ink);
  text-decoration: none;
}

.hrs-rail-cats a:hover {
  color: var(--hrs-accent);
  text-decoration: none;
}

.hrs-ad-slot {
  min-width: 0;
}

.hrs-hero__rail .hrs-ad-slot {
  margin: 0;
}

.hrs-hero__rail .mr-ad,
.hrs-rail-stack .mr-ad {
  margin: 0;
}

.hrs-hero__rail .mr-ad__link,
.hrs-rail-stack .mr-ad__link {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}

.hrs-hero__rail .mr-ad__media,
.hrs-rail-stack .mr-ad__media {
  position: relative;
  min-height: 0;
  aspect-ratio: 1200 / 628;
  height: auto;
}

.hrs-hero__rail .mr-ad__body,
.hrs-rail-stack .mr-ad__body {
  padding: 14px;
}

.hrs-hero__rail .mr-ad__title,
.hrs-rail-stack .mr-ad__title {
  font-size: 1rem;
}

.hrs-hero__rail .mr-ad__desc,
.hrs-rail-stack .mr-ad__desc {
  font-size: 0.82rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hrs-hero__rail .mr-ad__cta,
.hrs-rail-stack .mr-ad__cta {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 14px;
  font-size: 0.82rem;
}

.hrs-table-wrap {
  padding: 0 0 var(--hrs-s6);
}

.hrs-table {
  width: 100%;
  display: grid;
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
  overflow: hidden;
}

.hrs-table__cell {
  padding: 14px var(--hrs-s4);
  font-size: 14px;
  word-break: break-word;
  min-width: 0;
}

.hrs-table__cell--label {
  font-weight: 600;
  background: var(--hrs-band);
}

.hrs-table__cell--head {
  font-weight: 700;
  background: var(--hrs-white);
  border-left: 1px solid var(--hrs-line);
}

.hrs-table__cell--val {
  border-left: 1px solid var(--hrs-line);
  border-top: 1px solid var(--hrs-line);
}

.hrs-table__cell--label.hrs-table__cell--body {
  border-top: 1px solid var(--hrs-line);
}

.hrs-specs {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
  overflow: hidden;
}

.hrs-specs__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--hrs-s4);
  padding: 14px var(--hrs-s4);
  font-size: 14px;
  border-top: 1px solid var(--hrs-line);
}

.hrs-specs__row:first-child {
  border-top: none;
}

.hrs-specs__label {
  font-weight: 600;
}

.hrs-table-head {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--hrs-s4);
}

.hrs-ranked {
  display: flex;
  flex-direction: column;
}

.hrs-ranked__row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: var(--hrs-s4);
  align-items: start;
  padding: var(--hrs-s5) 0;
  border-top: 1px solid var(--hrs-line);
}

.hrs-ranked__num {
  font-size: 30px;
  font-weight: 700;
  color: var(--hrs-accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hrs-ranked__top {
  display: flex;
  justify-content: space-between;
  gap: var(--hrs-s3);
  flex-wrap: wrap;
}

.hrs-ranked__name {
  font-size: 20px;
  font-weight: 600;
}

.hrs-ranked__score {
  font-size: 16px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--hrs-ink);
}

.hrs-ranked__note {
  font-size: 15px;
  color: var(--hrs-ink-soft);
}

.hrs-how {
  background: var(--hrs-band);
  border-radius: var(--hrs-r-xl);
  padding: var(--hrs-s5);
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s3);
  margin: 0 auto;
  max-width: var(--hrs-container-wide);
}

.hrs-how__title {
  font-size: 16px;
  font-weight: 700;
}

.hrs-how p {
  font-size: 16px;
  color: var(--hrs-ink-soft);
}

.hrs-author {
  max-width: var(--hrs-container-wide);
  margin: 0 auto;
  padding: var(--hrs-s7) var(--hrs-gutter);
  border-top: 1px solid var(--hrs-line);
  display: flex;
  gap: var(--hrs-s4);
  align-items: flex-start;
  flex-wrap: wrap;
}

.hrs-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.hrs-author__name {
  font-size: 16px;
  font-weight: 600;
}

.hrs-author__role {
  font-size: 14px;
  color: var(--hrs-ink-soft);
}

.hrs-author__bio {
  font-size: 14px;
  max-width: 60ch;
}

.hrs-author__mock {
  font-size: 13px;
  color: var(--hrs-ink-soft);
  margin-top: var(--hrs-s2);
}

.hrs-authors .hrs-author {
  max-width: none;
  margin: 0;
  padding: var(--hrs-s5);
  border: 1px solid var(--hrs-line);
  border-top: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
}

.hrs-related {
  max-width: var(--hrs-container-wide);
  margin: 0 auto;
  padding: var(--hrs-s7) var(--hrs-gutter) var(--hrs-s8);
  border-top: 1px solid var(--hrs-line);
}

.hrs-related .hrs-h2 {
  font-size: 24px;
  margin-bottom: var(--hrs-s5);
}

.hrs-related .hrs-card__title {
  font-size: 15px;
  font-weight: 600;
}

.hrs-prose {
  max-width: 70ch;
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s4);
  padding-block: var(--hrs-s7);
}

.hrs-prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hrs-ink-soft);
}

.elementor-widget-hrs-hero>.elementor-widget-container,
.elementor-widget-hrs-category-tiles>.elementor-widget-container,
.elementor-widget-hrs-card-grid>.elementor-widget-container,
.elementor-widget-hrs-trust-points>.elementor-widget-container,
.elementor-widget-hrs-numbered-list>.elementor-widget-container,
.elementor-widget-hrs-lead-stack>.elementor-widget-container,
.elementor-widget-hrs-filter-grid>.elementor-widget-container,
.elementor-widget-hrs-faq>.elementor-widget-container,
.elementor-widget-hrs-contact>.elementor-widget-container,
.elementor-widget-hrs-page-hero>.elementor-widget-container,
.elementor-widget-hrs-prose>.elementor-widget-container,
.elementor-widget-hrs-authors>.elementor-widget-container,
.elementor-widget-hrs-header>.elementor-widget-container,
.elementor-widget-hrs-footer>.elementor-widget-container,
.elementor-section .elementor-container {
  padding: 0 !important;
}

.elementor-section {
  margin: 0 !important;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--hrs-container) !important;
}

.elementor .elementor-element.elementor-widget {
  margin: 0;
}

.elementor-page .hrs-main .page-header,
.home .page-header {
  display: none;
}

@media (min-width: 480px) {
  .hrs-hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .hrs-header__inner {
    gap: var(--hrs-s4);
  }

  .hrs-search--page {
    width: min(100%, 420px);
  }

  .hrs-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-proscons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-steps__row {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .hrs-authors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hrs-hero__feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hrs-footer__brand {
    grid-column: 1 / -1;
    max-width: 60ch;
  }
}

@media (min-width: 1024px) {
  .hrs-hero__grid {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .hrs-hero__grid--no-rail {
    grid-template-columns: minmax(0, 1fr);
  }

  .hrs-hero__feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hrs-hero__feature-media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .hrs-hero__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hrs-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hrs-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hrs-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hrs-lead {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }

  .hrs-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hrs-vdiv {
    display: block;
    position: absolute;
    left: -16px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: var(--hrs-line);
  }

  .hrs-contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .hrs-trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hrs-footer__grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  }

  .hrs-footer__brand {
    grid-column: auto;
    max-width: 34ch;
  }

  .hrs-authors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .hrs-header__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--hrs-s5);
  }

  .hrs-menu-btn,
  .hrs-search-toggle {
    display: none;
  }

  .hrs-header .hrs-logo {
    flex: 0 0 200px;
    width: 200px;
    max-width: 200px;
  }

  .hrs-nav,
  .hrs-header.is-open .hrs-nav {
    display: flex;
    position: static;
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: visible;
    background: transparent;
    grid-column: auto;
  }

  .hrs-nav__links {
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: var(--hrs-s3) var(--hrs-s4);
    order: 1;
    min-width: 0;
  }

  .hrs-nav .hrs-nav__link {
    width: auto;
    min-height: 40px;
    padding: 6px 0;
    font-size: 14px;
    border-bottom-width: 2px;
    border-bottom-color: transparent;
  }

  .hrs-nav .hrs-nav__link.is-active {
    border-bottom-color: var(--hrs-accent);
  }

  .hrs-header .hrs-search {
    order: 2;
    width: 200px;
    flex: 0 0 200px;
    height: 36px;
    margin: 0;
  }

  .hrs-search input {
    font-size: 13px;
  }

  .hrs-logo--custom .hrs-logo__img,
  .hrs-logo--custom img {
    height: 40px;
    max-height: 40px;
    max-width: 200px;
  }
}

@media (min-width: 1024px) {
  .hrs-article-header__split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: var(--hrs-s7);
  }

  .hrs-body-grid {
    grid-template-columns: 240px minmax(0, 1fr) 260px;
    gap: var(--hrs-s7);
  }

  .hrs-toc {
    display: flex;
    position: sticky;
    top: 88px;
    height: max-content;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
  }

  .hrs-rail-stack {
    display: flex;
    position: sticky;
    top: 88px;
    align-self: start;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
  }

  .hrs-toc-mobile {
    display: none;
  }
}

@media (min-width: 1280px) {
  .hrs-wrap {}
}

@media (max-width: 1023px) {
  .hrs-toc {
    display: none;
  }

  .hrs-rail-stack {
    display: flex;
    position: static;
  }
}

a.hrs-chip {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

a.hrs-chip:hover {
  color: var(--hrs-accent);
  text-decoration: none;
}

.hrs-toc a.is-h3 {
  padding-left: var(--hrs-s4);
  font-size: 13px;
  font-weight: 400;
  color: var(--hrs-ink-soft);
}

.hrs-toc a.is-h3.is-active {
  color: var(--hrs-accent);
  font-weight: 600;
}

.hrs-footer__links .hrs-nav__link {
  color: var(--hrs-on-dark);
  min-height: auto;
  padding: 0;
  border-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.hrs-footer__links .hrs-nav__link:hover {
  color: var(--hrs-white);
  border-bottom: 0;
  text-decoration: underline;
}

.hrs-share--footer a {
  background: rgba(255, 255, 255, 0.08);
  color: var(--hrs-on-dark-link);
}

.hrs-share--footer a:hover {
  background: var(--hrs-accent);
  color: var(--hrs-white);
}

.hrs-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.hrs-field-error {
  color: var(--hrs-red);
  font-size: 13px;
  font-weight: 500;
}

.hrs-form input.is-invalid,
.hrs-form textarea.is-invalid {
  border-color: var(--hrs-red);
}

.hrs-archive {
  padding: var(--hrs-s7) 0 var(--hrs-s8);
}

.hrs-archive__head {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s4);
  margin-bottom: var(--hrs-s6);
}

.hrs-archive__dek {
  font-size: 16px;
  color: var(--hrs-ink-soft);
  max-width: 60ch;
}

.hrs-archive__grid {
  margin-bottom: var(--hrs-s7);
}

.hrs-archive__empty {
  font-size: 16px;
  color: var(--hrs-ink-soft);
}

.hrs-filters--archive {
  flex-wrap: wrap;
}

.navigation.pagination,
.hrs-pagination {
  margin-top: var(--hrs-s6);
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hrs-s2);
  align-items: center;
}

.navigation.pagination .page-numbers {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-md);
  color: var(--hrs-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 0 var(--hrs-s3);
}

.navigation.pagination .page-numbers.current,
.navigation.pagination a.page-numbers:hover {
  background: var(--hrs-accent);
  border-color: var(--hrs-accent);
  color: var(--hrs-white);
  text-decoration: none;
}

.hrs-entry {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s5);
  min-width: 0;
}

.hrs-entry > * {
  max-width: 100%;
}

.hrs-entry h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  scroll-margin-top: 88px;
}

.hrs-entry h2,
.hrs-entry h2.wp-block-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  scroll-margin-top: 88px;
}

.hrs-entry h3,
.hrs-entry h3.wp-block-heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  scroll-margin-top: 88px;
}

.hrs-entry h4 {
  font-size: 18px;
  font-weight: 600;
}

.hrs-entry p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hrs-ink);
}

.hrs-entry a {
  color: var(--hrs-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hrs-entry a:hover {
  color: var(--hrs-accent-dark);
}

.hrs-entry ul,
.hrs-entry ol {
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s2);
}

.hrs-entry ul {
  list-style: disc;
}

.hrs-entry ol {
  list-style: decimal;
}

.hrs-entry li {
  font-size: 16px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hrs-entry blockquote {
  margin: 0;
  padding: var(--hrs-s4) var(--hrs-s5);
  border-left: 3px solid var(--hrs-accent);
  background: var(--hrs-band);
  border-radius: 0 var(--hrs-r-md) var(--hrs-r-md) 0;
  font-size: 16px;
  line-height: 1.7;
}

.hrs-entry .hrs-table-scroll,
.hrs-entry figure.wp-block-table,
.hrs-entry .wp-block-table {
  overflow-x: auto;
  max-width: 100%;
}

.hrs-entry table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--hrs-line);
  border-radius: var(--hrs-r-xl);
  overflow: hidden;
  font-size: 15px;
}

.hrs-entry th,
.hrs-entry td {
  border: 1px solid var(--hrs-line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.hrs-entry th {
  background: var(--hrs-band);
  font-weight: 600;
}

.hrs-entry figure {
  display: flex;
  flex-direction: column;
  gap: var(--hrs-s2);
  margin: 0;
}

.hrs-entry figure img,
.hrs-entry .wp-block-image img,
.hrs-entry > p > img,
.hrs-entry img.aligncenter,
.hrs-entry img.alignnone,
.hrs-entry img.size-full,
.hrs-entry img.size-large {
  width: 100%;
  height: auto;
  border-radius: var(--hrs-r-xl);
}

.hrs-entry figcaption,
.hrs-entry .wp-element-caption {
  text-align: center;
  font-size: 13px;
  color: var(--hrs-ink-soft);
}

.hrs-entry pre,
.hrs-entry code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}

.hrs-entry pre {
  background: var(--hrs-band);
  border-radius: var(--hrs-r-md);
  padding: var(--hrs-s4);
  overflow-x: auto;
}

.hrs-entry hr {
  border: 0;
  border-top: 1px solid var(--hrs-line);
  margin: var(--hrs-s2) 0;
}

.hrs-article-header__media img {
  width: 100%;
  height: auto;
  border-radius: var(--hrs-r-xl);
  object-fit: cover;
}