:root {
  --b24-bg: #ffffff;
  --b24-page: #f3f4f6;
  --b24-text: #111827;
  --b24-body: #374151;
  --b24-muted: #6b7280;
  --b24-border: #e5e7eb;
  --b24-header: #1f2937;
  --b24-pink: #eb2b5e;
  --b24-pink-hover: #d4224f;
  --b24-yellow: #f5e641;
  --b24-yellow-hover: #e6d83a;
  --b24-green: #16a34a;
  --b24-green-bg: #f0fdf4;
  --b24-green-border: #bbf7d0;
  --b24-red: #dc2626;
  --b24-red-bg: #fef2f2;
  --b24-red-border: #fecaca;
  --b24-radius: 12px;
  --b24-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

html {
  scroll-padding-top: 88px;
}

body {
  background: var(--b24-page);
  color: var(--b24-text);
}

.site-content > main {
  width: 100%;
  max-width: 1200px !important;
}

/* Sticky navigation from the supplied design reference. */
.b24hr-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 0 !important;
  background: var(--b24-header) !important;
  border: 0 !important;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.18);
}

.b24hr-header-inner {
  min-height: 64px;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

.b24hr-site-logo {
  display: inline-flex;
  align-items: center;
  max-width: 190px;
}

.b24hr-site-logo img {
  display: block;
  width: auto !important;
  height: 32px !important;
  max-width: 100%;
  object-fit: contain;
}

.b24hr-site-header .primary-menu > li > div > a,
.b24hr-site-header .primary-menu > li > div > span {
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.b24hr-site-header .primary-menu > li:hover > div > a,
.b24hr-site-header .primary-menu > .current-menu-item > div > a,
.b24hr-site-header .primary-menu > .current-menu-ancestor > div > a {
  color: #ffffff;
  border-bottom-color: var(--b24-pink);
}

.b24hr-site-header input[type="text"] {
  background: #111827;
  color: #ffffff;
  border: 1px solid #4b5563;
}

.b24hr-site-header input[type="text"]:focus {
  border-color: var(--b24-pink);
  outline: none;
}

.b24hr-site-header .lang-toggle {
  color: #ffffff;
  border: 1px solid #4b5563;
}

/* Review layout and shared card language. */
.b24hr-review-layout {
  width: 100%;
  max-width: none;
  align-items: start;
}

.b24hr-review-main {
  overflow: hidden;
  background: var(--b24-bg);
  border: 1px solid var(--b24-border);
  border-radius: var(--b24-radius);
  box-shadow: var(--b24-shadow);
}

.b24hr-review-title,
.b24hr-page-title {
  margin: 0 !important;
  padding: 1.5rem 1.5rem 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.25;
}

.b24hr-review-breadcrumbs,
.b24hr-breadcrumbs {
  padding: 0.75rem 1.5rem 1rem !important;
  color: var(--b24-muted);
}

.b24hr-review-hero {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-top: 1px solid var(--b24-border);
}

.b24hr-review-hero__media {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #f9fafb;
  border: 1px solid var(--b24-border);
  border-radius: 10px;
}

.b24hr-review-hero__media img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: 120px;
  object-fit: contain;
}

.b24hr-article-hero-image {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-top: 1px solid var(--b24-border);
  border-bottom: 1px solid var(--b24-border);
}

.b24hr-review-hero__description {
  color: var(--b24-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.b24hr-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.b24hr-review-cta,
.b24hr-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.4rem;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none !important;
  background: var(--b24-pink) !important;
  border: 0;
  border-radius: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.b24hr-review-cta:hover,
.b24hr-primary-button:hover {
  background: var(--b24-pink-hover) !important;
  transform: translateY(-1px);
}

.b24hr-section {
  padding: 1.5rem;
  border-top: 1px solid var(--b24-border);
}

.b24hr-section-title {
  margin: 0 0 1rem !important;
  font-size: 1.25rem !important;
  font-weight: 700;
}

.b24hr-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.b24hr-pros,
.b24hr-cons {
  padding: 1rem;
  border-radius: 10px;
}

.b24hr-pros {
  color: var(--b24-body);
  background: var(--b24-green-bg);
  border: 1px solid var(--b24-green-border);
}

.b24hr-cons {
  color: var(--b24-body);
  background: var(--b24-red-bg);
  border: 1px solid var(--b24-red-border);
}

.b24hr-pros h3 {
  color: var(--b24-green);
}

.b24hr-cons h3 {
  color: var(--b24-red);
}

.b24hr-pros ul,
.b24hr-cons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.b24hr-pros li,
.b24hr-cons li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.25rem;
}

.b24hr-pros li::before,
.b24hr-cons li::before {
  position: absolute;
  left: 0;
  font-weight: 800;
}

.b24hr-pros li::before {
  color: var(--b24-green);
  content: "+";
}

.b24hr-cons li::before {
  color: var(--b24-red);
  content: "–";
}

.b24hr-info-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--b24-border);
  border-radius: 10px;
}

.b24hr-info-row {
  display: grid !important;
  grid-template-columns: minmax(140px, 40%) 1fr !important;
  min-height: 44px;
  align-items: center;
  padding: 0.65rem 0.75rem !important;
  border-bottom: 1px solid var(--b24-border);
}

.b24hr-info-row:last-child {
  border-bottom: 0;
}

.b24hr-info-row:nth-child(even) {
  background: #f9fafb !important;
}

.b24hr-info-row > :first-child {
  color: var(--b24-muted);
  font-weight: 600;
}

.b24hr-review-content {
  padding: 1.5rem;
  border-top: 1px solid var(--b24-border);
}

.b24hr-review-content > :first-child {
  margin-top: 0;
}

/* Reusable CTA shortcode. */
.b24hr-cta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: var(--b24-radius);
}

.b24hr-cta__logo {
  display: flex;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.b24hr-cta__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.b24hr-cta__copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.b24hr-cta__copy strong {
  color: #ffffff;
  font-size: 1rem;
}

.b24hr-cta__copy span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.b24hr-cta__button,
.b24hr-sidebar-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  color: #111827 !important;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none !important;
  background: var(--b24-yellow) !important;
  border: 0;
  border-radius: 7px;
}

.b24hr-cta__button:hover,
.b24hr-sidebar-cta:hover {
  background: var(--b24-yellow-hover) !important;
}

/* Bookmaker listing. */
.b24hr-bookmaker-card {
  container-type: inline-size;
  position: relative;
  overflow: hidden;
  padding: 12px !important;
  background: var(--b24-bg);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.b24hr-bookmaker-card::before,
.b24hr-bookmaker-card::after {
  position: absolute;
  right: 20px;
  left: 20px;
  content: "";
  border-top: 1px dashed #d1d5db;
  pointer-events: none;
}

.b24hr-bookmaker-card::before {
  top: 0;
}

.b24hr-bookmaker-card:not(:first-child)::before {
  display: none;
}

.b24hr-bookmaker-card::after {
  bottom: 0;
}

.b24hr-bookmaker-card__inner {
  display: grid;
  grid-template-columns: 36px minmax(120px, 145px) minmax(120px, 0.9fr) minmax(150px, 1.1fr) auto;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}

.b24hr-bookmaker-card__rank,
.b24hr-sidebar-rank {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 800;
  background: #f1f5f9;
  border-radius: 999px;
}

.b24hr-bookmaker-card__rank.is-top,
.b24hr-sidebar-rank.is-top {
  color: #b45309;
  background: #fef3c7;
}

.b24hr-bookmaker-card__logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.b24hr-bookmaker-card__logo img {
  width: auto !important;
  max-width: 128px;
  height: auto !important;
  max-height: 44px;
  object-fit: contain;
}

.b24hr-bookmaker-card__label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--b24-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.b24hr-bookmaker-card__bonus {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  color: var(--b24-text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.b24hr-bookmaker-card__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* Keep all bookmaker controls inside narrow article columns with a sidebar. */
@container (max-width: 720px) {
  .b24hr-bookmaker-card__inner {
    grid-template-columns: 30px minmax(96px, 118px) minmax(100px, 0.8fr) minmax(95px, 0.8fr) auto;
    gap: 0.5rem;
  }

  .b24hr-bookmaker-card__bonus {
    min-width: 0;
  }

  .b24hr-bookmaker-card__actions {
    min-width: 0;
  }

  .b24hr-bookmaker-card__actions a {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

.b24hr-secondary-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  color: var(--b24-text) !important;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none !important;
  background: #ffffff;
  border: 1px solid #374151;
  border-radius: 7px;
}

/* Sticky sidebar with compact top-three cards. */
.b24hr-sidebar {
  align-self: start;
  background: transparent !important;
}

.b24hr-sidebar-sticky {
  position: sticky;
  top: 88px !important;
}

.b24hr-sidebar-card {
  overflow: hidden;
  background: var(--b24-bg);
  border: 1px solid var(--b24-border);
  border-radius: var(--b24-radius);
  box-shadow: var(--b24-shadow);
}

.b24hr-sidebar-title {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 800;
  border-bottom: 1px solid var(--b24-border);
}

.b24hr-sidebar-item {
  display: grid;
  grid-template-columns: 32px 44px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--b24-border);
}

.b24hr-sidebar-item:last-child {
  border-bottom: 0;
}

.b24hr-sidebar-logo img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain;
  border-radius: 8px;
}

.b24hr-sidebar-name {
  display: block;
  overflow: hidden;
  color: var(--b24-text) !important;
  font-size: 0.85rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.b24hr-sidebar-bonus {
  display: block;
  margin: 0.15rem 0 0.45rem;
  color: var(--b24-muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

/* Author entity, reused on articles and reviews. */
.author-box.b24hr-author-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  width: 100%;
  padding: 1.5rem !important;
  background: #ffffff !important;
  border-top: 1px solid var(--b24-border);
  border-radius: 0 !important;
}

.b24hr-author-box .avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 999px;
}

.b24hr-author-label {
  color: var(--b24-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.b24hr-author-name {
  display: inline-block;
  margin-top: 0.1rem;
  color: var(--b24-text) !important;
  font-size: 1rem;
  font-weight: 800;
}

.b24hr-author-bio {
  margin-top: 0.45rem;
  color: var(--b24-body);
  font-size: 0.82rem;
  line-height: 1.55;
}

.b24hr-author-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.b24hr-author-socials img {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain;
}

/* Tables in post content. */
#editor-content table,
#editor-content .wp-block-table table {
  width: 100%;
  margin: 1rem 0;
  overflow: hidden;
  font-size: 0.875rem;
  border: 1px solid var(--b24-border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
}

#editor-content table th {
  padding: 0.75rem;
  color: var(--b24-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  background: var(--b24-page);
  border-bottom: 2px solid var(--b24-border);
}

#editor-content table td {
  padding: 0.7rem 0.75rem;
  border: 0;
  border-bottom: 1px solid var(--b24-border);
}

#editor-content table tbody tr:nth-child(even) {
  background: #f9fafb;
}

#editor-content table tbody tr:last-child td {
  border-bottom: 0;
}

#editor-content .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* 404 page. */
.b24hr-404 {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 3rem 1rem;
}

.b24hr-404__card {
  width: min(720px, 100%);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--b24-border);
  border-radius: 16px;
  box-shadow: var(--b24-shadow);
}

.b24hr-404__code {
  color: var(--b24-pink);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.b24hr-404__search,
.b24hr-404 .search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 1.5rem auto;
}

.b24hr-404__search label,
.b24hr-404 .search-form label {
  flex: 1 1 auto;
}

.b24hr-404__search input[type="search"],
.b24hr-404 .search-form input[type="search"] {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--b24-border);
  border-radius: 8px;
}

.b24hr-404 .search-form input[type="submit"] {
  min-height: 44px;
  padding: 0.65rem 1rem;
  color: #ffffff;
  font-weight: 700;
  background: var(--b24-pink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .b24hr-bookmaker-card__inner {
    grid-template-columns: 40px minmax(120px, 1fr) minmax(140px, 1fr);
  }

  .b24hr-bookmaker-card__bonus,
  .b24hr-bookmaker-card__actions {
    grid-column: span 3;
  }

  .b24hr-bookmaker-card__actions {
    justify-content: stretch;
  }

  .b24hr-bookmaker-card__actions a {
    flex: 1 1 0;
  }
}

@media (max-width: 767px) {
  body {
    min-width: 320px !important;
  }

  .b24hr-header-inner {
    min-height: 58px;
  }

  .b24hr-site-logo img {
    height: 30px !important;
  }

  .b24hr-review-hero,
  .b24hr-pros-cons {
    grid-template-columns: 1fr;
  }

  .b24hr-review-title,
  .b24hr-page-title,
  .b24hr-review-breadcrumbs,
  .b24hr-breadcrumbs,
  .b24hr-review-hero,
  .b24hr-section,
  .b24hr-review-content {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .b24hr-review-hero__media {
    min-height: 110px;
  }

  .b24hr-info-row {
    grid-template-columns: 1fr !important;
    gap: 0.2rem;
  }

  .b24hr-cta {
    flex-direction: column;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
  }

  .b24hr-cta__button {
    width: 100%;
  }

  .b24hr-bookmaker-card__inner {
    grid-template-columns: 36px 1fr;
  }

  .b24hr-bookmaker-card__rating,
  .b24hr-bookmaker-card__bonus,
  .b24hr-bookmaker-card__actions {
    grid-column: span 2;
  }

  .b24hr-sidebar-sticky {
    position: static;
  }

  .b24hr-sidebar {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .author-box.b24hr-author-box {
    grid-template-columns: 56px 1fr;
    padding: 1rem !important;
  }

  .b24hr-author-box .avatar {
    width: 52px;
    height: 52px;
  }

  #editor-content .wp-block-table {
    display: block;
    width: 100%;
  }
}

/* Reference-aligned review composition. */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.b24hr-header-inner {
  display: flex !important;
  width: 100%;
  max-width: 1200px !important;
  height: 64px;
  min-height: 64px;
  gap: 32px !important;
  padding: 0 16px !important;
}

.b24hr-header-inner > :first-child {
  flex: 0 0 auto;
}

.b24hr-header-inner > :nth-child(2) {
  flex: 0 1 auto;
  width: auto !important;
}

.b24hr-header-inner > :last-child {
  gap: 12px !important;
  margin-left: auto;
}

.b24hr-header-inner > :last-child > * + * {
  margin-left: 0 !important;
}

.b24hr-site-logo {
  gap: 10px;
  color: #ffffff !important;
  text-decoration: none !important;
}

.b24hr-brand-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--b24-pink);
  border-radius: 8px;
}

.b24hr-brand-icon svg {
  width: 20px;
  height: 20px;
}

.b24hr-brand-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.b24hr-brand-text span {
  color: var(--b24-pink);
}

.b24hr-site-header .primary-menu {
  height: 64px;
  align-items: stretch;
  gap: 0 !important;
}

.b24hr-site-header .primary-menu > li {
  display: flex;
  position: relative;
  align-items: stretch;
}

.b24hr-site-header .primary-menu > li + li {
  margin-left: 0 !important;
}

.b24hr-site-header .primary-menu > li > div {
  display: flex;
  height: 100%;
  align-items: stretch;
}

.b24hr-site-header .primary-menu > li > div > a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #d1d5db !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none;
  text-transform: capitalize;
  border-bottom: 2px solid transparent;
}

body.single-bookmaker .b24hr-site-header .primary-menu > li:first-child > a {
  color: #ffffff !important;
  border-bottom-color: var(--b24-pink);
}

.b24hr-site-header .primary-menu > li > div > a:hover,
.b24hr-site-header .primary-menu > .current-menu-item > div > a,
.b24hr-site-header .primary-menu > .current-menu-ancestor > div > a,
body.single-bookmaker .b24hr-site-header .primary-menu > li:first-child > div > a {
  color: #ffffff !important;
  background: transparent !important;
  border-radius: 0 !important;
  border-bottom-color: var(--b24-pink);
}

.b24hr-site-header .primary-menu .sub-menu {
  position: absolute !important;
  top: 100%;
  left: 0;
  z-index: 1100 !important;
  min-width: 210px;
  padding: 6px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16) !important;
}

.b24hr-site-header .primary-menu > li:focus-within > .sub-menu {
  display: block !important;
}

.b24hr-site-header .primary-menu .sub-menu .sub-menu {
  top: -7px;
  left: 100%;
}

.b24hr-site-header .primary-menu .sub-menu li,
.b24hr-site-header .primary-menu .sub-menu li > div {
  display: block;
  width: 100%;
}

.b24hr-site-header .primary-menu .sub-menu a {
  display: block !important;
  width: 100% !important;
  padding: 8px 12px !important;
  overflow: visible !important;
  color: #374151 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-transform: none !important;
  white-space: nowrap;
  background: transparent !important;
  border: 0 !important;
  border-radius: 6px !important;
}

.b24hr-site-header .primary-menu .sub-menu a:hover,
.b24hr-site-header .primary-menu .sub-menu a:focus-visible {
  color: #111827 !important;
  background: #f3f4f6 !important;
  outline: none;
}

.b24hr-header-search {
  width: 40px;
  flex: 0 0 auto;
  transition: width 0.2s ease;
}

.b24hr-header-search:focus-within,
.b24hr-header-search.is-open {
  width: 200px;
}

.b24hr-header-search form {
  position: relative;
  width: 100%;
  height: 34px;
}

.b24hr-site-header .b24hr-header-search input[type="search"] {
  position: absolute;
  right: 0;
  width: 40px;
  height: 34px;
  padding: 0;
  color: transparent;
  background: transparent;
  border: 1px solid #4b5563;
  border-radius: 8px;
  cursor: pointer;
  transition: width 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.b24hr-site-header .b24hr-header-search input[type="search"]::placeholder {
  color: transparent;
}

.b24hr-site-header .b24hr-header-search input[type="search"]:focus,
.b24hr-site-header .b24hr-header-search.is-open input[type="search"] {
  width: 100%;
  padding: 0 38px 0 12px;
  color: #ffffff;
  background: #111827;
  cursor: text;
}

.b24hr-site-header .b24hr-header-search input[type="search"]:focus::placeholder,
.b24hr-site-header .b24hr-header-search.is-open input[type="search"]::placeholder {
  color: #9ca3af;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .b24hr-site-header .primary-menu > li > div > a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px !important;
  }

  .b24hr-header-search:focus-within,
  .b24hr-header-search.is-open {
    width: 160px;
  }
}

.b24hr-header-search button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  top: 1px !important;
  right: 1px !important;
  width: 38px;
  height: 32px;
  padding: 0 !important;
  color: #9ca3af !important;
  background: transparent !important;
  border-radius: 8px !important;
  cursor: pointer;
  z-index: 1;
}

.b24hr-header-search button svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
}

.b24hr-lang-switch {
  display: flex;
  overflow: hidden;
  border: 1px solid #4b5563;
  border-radius: 8px;
}

.b24hr-lang-switch a {
  padding: 6px 10px;
  color: #9ca3af !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
}

.b24hr-lang-switch a.is-active {
  color: #ffffff !important;
  background: var(--b24-pink);
}

.b24hr-breadcrumbs-outside {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px !important;
  color: var(--b24-muted);
  border: 0;
}

.b24hr-breadcrumbs-outside a {
  color: #2563eb !important;
  text-decoration: none !important;
}

.b24hr-breadcrumb-separator {
  margin: 0 6px;
  color: #9ca3af;
}

@media (min-width: 768px) {
  .b24hr-review-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 320px !important;
    gap: 24px !important;
  }

  .b24hr-review-layout > .b24hr-review-main,
  .b24hr-review-layout > .b24hr-sidebar {
    grid-column: auto !important;
  }

  .b24hr-review-layout > .comments-area {
    grid-column: 1 / 2 !important;
  }

  .b24hr-review-layout > .b24hr-review-main:only-child {
    grid-column: 1 / -1 !important;
  }
}

.b24hr-review-main {
  border: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.b24hr-review-cover {
  position: relative;
  display: grid;
  height: 220px;
  grid-template-columns: 160px minmax(0, 1fr) 120px;
  align-items: center;
  overflow: hidden;
  padding: 24px 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.b24hr-review-cover__brand {
  position: relative;
  z-index: 1;
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  background: rgba(235, 43, 94, 0.22);
  border-radius: 999px;
}

.b24hr-review-cover__copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.b24hr-review-cover__copy strong,
.b24hr-review-cover__copy span {
  display: block;
}

.b24hr-review-cover__copy strong {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  line-height: 1.3;
}

.b24hr-review-cover__copy span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.b24hr-review-cover__orb {
  position: absolute;
  border-radius: 999px;
}

.b24hr-review-cover__orb--one {
  top: 10px;
  right: 32px;
  width: 100px;
  height: 100px;
  background: rgba(245, 230, 65, 0.08);
}

.b24hr-review-cover__orb--two {
  right: 12px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: rgba(235, 43, 94, 0.09);
}

.b24hr-review-hero-body {
  padding: 20px 24px 24px;
}

.b24hr-review-hero-body .b24hr-review-title {
  margin: 0 0 12px !important;
  padding: 0;
  font-size: 24px;
  line-height: 1.3;
}

.b24hr-review-hero-body .b24hr-review-hero__description {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.65;
}

.b24hr-review-hero-body .b24hr-review-meta {
  margin: 0 0 16px;
  gap: 14px;
}

.b24hr-review-stars img,
.b24hr-review-stars svg {
  width: 18px;
  height: 18px;
}

.b24hr-reviews-link {
  color: #2563eb !important;
  font-size: 13px;
  text-decoration: none !important;
}

.b24hr-review-cta {
  gap: 8px;
  min-height: 0;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
}

.b24hr-review-cta svg {
  width: 16px;
  height: 16px;
}

.b24hr-info-block,
.b24hr-pros-section,
.b24hr-faq-block {
  padding: 24px;
}

.b24hr-info-table {
  border: 0;
  border-radius: 0;
}

.b24hr-info-row {
  grid-template-columns: minmax(160px, 40%) 1fr !important;
  padding: 10px 12px !important;
  font-size: 14px;
}

.b24hr-pros h3,
.b24hr-cons h3 {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.b24hr-status-icon {
  display: inline-flex;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background: #6b7280;
  border-radius: 999px;
}

.b24hr-pros .b24hr-status-icon {
  color: #ffffff;
  background: var(--b24-green);
}

.b24hr-cons .b24hr-status-icon {
  color: #ffffff;
  background: var(--b24-red);
}

.b24hr-review-content {
  color: var(--b24-body);
  font-size: 15px;
  line-height: 1.7;
}

.b24hr-review-content h2 {
  margin: 0 0 12px;
  color: var(--b24-text);
  font-size: 20px;
}

.b24hr-review-content h3 {
  margin: 20px 0 10px;
  color: var(--b24-text);
  font-size: 17px;
}

.b24hr-faq-item {
  overflow: hidden;
  margin-bottom: 8px;
  background: #ffffff;
  border: 1px solid var(--b24-border);
  border-radius: 8px;
  box-shadow: none;
}

.b24hr-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  background: #ffffff;
  border: 0;
  cursor: pointer;
}

.b24hr-faq-question:hover {
  background: #f9fafb;
}

.b24hr-faq-question svg {
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

.b24hr-faq-answer {
  padding: 0 16px 14px;
  color: var(--b24-body);
  font-size: 14px;
  line-height: 1.65;
}

.b24hr-review-comments {
  padding: 24px;
  border-top: 1px solid var(--b24-border);
}

.b24hr-sidebar {
  padding: 0 !important;
}

.b24hr-sidebar-sticky {
  top: 84px !important;
}

.b24hr-sidebar-sticky > * + * {
  margin-top: 20px !important;
}

.b24hr-sidebar-item {
  grid-template-columns: 28px 40px minmax(72px, 1fr) auto;
  gap: 10px;
  padding: 14px 16px;
}

.b24hr-sidebar-rank {
  width: 28px;
  height: 28px;
}

.b24hr-sidebar-item:nth-of-type(3) .b24hr-sidebar-rank {
  color: #b91c1c;
  background: #fef2f2;
}

.b24hr-sidebar-logo img {
  width: 40px !important;
  height: 40px !important;
}

.b24hr-sidebar-bonus {
  margin-bottom: 0;
  white-space: normal;
}

.b24hr-sidebar-item .b24hr-sidebar-cta {
  padding: 7px 12px;
  white-space: nowrap;
}

.b24hr-toc ul {
  margin: 0;
  padding: 10px 16px 14px;
  list-style: none;
}

.b24hr-toc li {
  padding: 6px 0;
}

.b24hr-toc a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--b24-body) !important;
  font-size: 13px;
  text-decoration: none !important;
}

.b24hr-toc a::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  background: var(--b24-pink);
  border-radius: 999px;
  opacity: 0.4;
  content: "";
}

.b24hr-toc a:hover {
  color: var(--b24-pink) !important;
}

.b24hr-sidebar-promo__visual {
  padding: 20px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.b24hr-sidebar-promo__logo {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 18px;
  font-weight: 800;
  background: rgba(235, 43, 94, 0.24);
  border-radius: 12px;
}

.b24hr-sidebar-promo__visual strong,
.b24hr-sidebar-promo__visual span {
  display: block;
}

.b24hr-sidebar-promo__visual span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.b24hr-sidebar-promo__action {
  padding: 16px;
  text-align: center;
}

@media (max-width: 767px) {
  .b24hr-header-inner {
    height: 58px;
    min-height: 58px;
    gap: 12px !important;
  }

  .b24hr-brand-icon {
    width: 32px;
    height: 32px;
  }

  .b24hr-brand-text {
    font-size: 16px;
  }

  .b24hr-header-search {
    display: none;
  }

  .b24hr-review-cover {
    height: 190px;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 20px;
  }

  .b24hr-review-cover__brand {
    width: 64px;
    height: 64px;
    font-size: 14px;
  }

  .b24hr-review-cover__copy strong {
    font-size: 1.25rem;
  }

  .b24hr-review-cover__copy span {
    font-size: 13px;
  }

  .b24hr-review-hero-body,
  .b24hr-info-block,
  .b24hr-pros-section,
  .b24hr-faq-block,
  .b24hr-review-comments {
    padding: 20px 16px;
  }

  .b24hr-breadcrumbs-outside {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
