/* Capibarabet.net visual system — WinKingdom content */

body.site {
  /* WinKingdom.fr palette */
  --cb-dark: #120818;
  --cb-dark-2: #1a0a1e;
  --cb-surface: #2a1535;
  --cb-border: #4a2560;
  --cb-purple: #b794f6;
  --cb-purple-deep: #7c3aed;
  --cb-purple-light: #e0d0e8;
  --cb-green: var(--cb-purple);
  --cb-mint: var(--cb-purple-light);
  --cb-gold: #c9a84c;
  --cb-gold-hover: #e0c068;
  --cb-black: #0a050c;
  --cb-white: #ffffff;
  --cb-text: #e0d0e8;
  --cb-header-h: 80px;
  --cb-aside-w: 194px;
  --cb-container: min(1920px, 100%);
  --cb-pad: 30px;
  --gradient-btn: linear-gradient(
    135deg,
    #e8c96a 0%,
    var(--cb-gold) 45%,
    #a67c2e 100%
  );
  --gradient-btn-gold: linear-gradient(
    135deg,
    #f0d078 0%,
    var(--cb-gold) 55%,
    #9a7330 100%
  );
  --cb-btn-fg: #1a0a1e;
  --cb-btn-sub-fg: #3d2912;
  font-family: Roboto, Arial, sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: var(--cb-white);
  background: var(--cb-dark);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  body.site {
    scroll-behavior: auto;
  }
}

body.site a:not(.cb-btn-gold):not(.cb-btn-open):not(.cb-games__play) {
  color: var(--cb-gold);
  text-decoration: none;
}

body.site a:not(.cb-btn-gold):not(.cb-btn-open):not(.cb-games__play):hover {
  color: var(--cb-gold-hover);
}

/* Header */
.cb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cb-dark);
  box-shadow: 0 0 20px color-mix(in srgb, var(--cb-black) 50%, transparent);
}

.cb-header__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--cb-pad);
  height: var(--cb-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cb-header__logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
}

.cb-nav {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .cb-nav {
    display: flex;
  }
}

.cb-nav a {
  color: var(--cb-mint);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.6;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cb-nav a:hover,
.cb-nav a.cb-nav--active {
  opacity: 1;
}

.cb-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
  min-width: 0;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  body.site {
    --cb-header-h: 64px;
    --cb-pad: 12px;
  }

  .cb-header__logo img {
    height: 32px;
    max-width: 100px;
  }

  .cb-header__actions {
    gap: 6px;
  }
}

.cb-lang {
  display: none;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--cb-border);
  color: var(--cb-white);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

@media (min-width: 768px) {
  .cb-lang {
    display: inline-flex;
  }
}

.cb-btn-open,
.cb-btn-gold {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--cb-btn-fg) 12%, transparent);
  cursor: pointer;
  background: var(--gradient-btn-gold);
  color: var(--cb-btn-fg) !important;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  text-align: center;
  box-shadow:
    0 2px 0 color-mix(in srgb, var(--cb-btn-fg) 25%, transparent),
    0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cb-btn-open:hover,
.cb-btn-gold:hover {
  color: var(--cb-btn-fg) !important;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 2px 0 color-mix(in srgb, var(--cb-btn-fg) 25%, transparent),
    0 10px 28px rgba(201, 168, 76, 0.35);
}

.cb-btn-open__main,
.cb-btn-gold > span:first-child {
  color: var(--cb-btn-fg);
}

.cb-btn-open__long {
  display: inline;
}

.cb-btn-open__short {
  display: none;
}

.cb-btn-open .cb-btn-open__sub,
.cb-btn-gold .cb-btn-gold__sub {
  display: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--cb-btn-sub-fg);
  max-width: 220px;
  white-space: normal;
  line-height: 1.3;
  margin-top: 4px;
}

@media (min-width: 1024px) {
  .cb-btn-open {
    padding: 10px 22px;
    font-size: 16px;
    min-width: 160px;
  }

  .cb-btn-open .cb-btn-open__sub {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cb-btn-open {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .cb-btn-open {
    padding: 10px 14px;
    font-size: 13px;
    max-width: none;
    flex-shrink: 0;
  }

  .cb-btn-open__long {
    display: none;
  }

  .cb-btn-open__short {
    display: inline;
  }
}

.cb-menu-toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cb-gold);
  border-radius: 4px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .cb-menu-toggle {
    display: none;
  }
}

.cb-menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--cb-dark);
  margin: 2px 0;
}

/* Layout */
.cb-layout {
  max-width: 1920px;
  margin: var(--cb-header-h) auto 0;
  padding: 0 var(--cb-pad);
  display: flex;
  align-items: flex-start;
  gap: 0;
}

@media (min-width: 1024px) {
  .cb-layout {
    align-items: stretch;
  }
}

.cb-aside-wrap {
  display: none;
  width: var(--cb-aside-w);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .cb-aside-wrap {
    display: block;
    align-self: stretch;
  }
}

.cb-aside {
  position: sticky;
  top: var(--cb-header-h);
  width: var(--cb-aside-w);
  min-height: calc(100vh - var(--cb-header-h));
  max-height: calc(100vh - var(--cb-header-h));
  background: var(--cb-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: calc(-1 * var(--cb-pad));
  padding-left: var(--cb-pad);
  z-index: 10;
}

.cb-aside nav {
  padding: 40px 20px 0;
  flex: 1;
  overflow-y: auto;
}

.cb-aside nav a {
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cb-green);
  opacity: 0.6;
  padding: 2px 0 2px 10px;
  border-left: 2px solid color-mix(in srgb, var(--cb-green) 15%, transparent);
  margin-bottom: 2px;
  transition: opacity 0.2s;
}

.cb-aside nav a:hover,
.cb-aside nav a.cb-aside--active {
  opacity: 1;
  border-left-color: var(--cb-green);
}

.cb-aside__cta {
  padding: 10px 20px 16px;
  background: var(--cb-dark);
}

.cb-btn-gold-sm {
  width: 100%;
  padding: 10px 12px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
}

.cb-aside__cta .cb-btn-gold-sm {
  width: 100%;
}

.cb-main {
  flex: 1;
  min-width: 0;
  padding-bottom: 48px;
}

/* Hero */
.cb-hero {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--cb-header-h);
  padding: 100px 0 90px;
  min-height: 280px;
  background-image:
    linear-gradient(
      to right,
      color-mix(in srgb, var(--cb-dark) 92%, transparent) 0%,
      color-mix(in srgb, var(--cb-dark) 55%, transparent) 45%,
      color-mix(in srgb, var(--cb-dark) 20%, transparent) 70%,
      transparent 100%
    ),
    url("/images/hero-bg.avif");
  background-repeat: no-repeat;
  background-position: center right, right center;
  background-size: auto 100%, auto 85%;
  background-color: var(--cb-dark-2);
  border-radius: 8px;
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .cb-hero {
    background-size: auto 100%, contain;
    padding: 140px 0 120px;
    min-height: 360px;
  }
}

@media (min-width: 1024px) {
  .cb-hero {
    padding: 150px 0 140px;
  }
}

.cb-hero__mobile-bg {
  display: none;
}

@media (max-width: 767px) {
  .cb-hero {
    padding: 24px 0 32px;
    background-image: linear-gradient(
      to bottom,
      color-mix(in srgb, var(--cb-dark) 90%, transparent),
      color-mix(in srgb, var(--cb-dark) 70%, transparent)
    );
  }
  .cb-hero__mobile-bg {
    display: block;
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 16px;
  }
}

.cb-hero__content {
  margin-left: 0;
  max-width: 330px;
  text-align: center;
}

@media (min-width: 768px) {
  .cb-hero__content {
    margin-left: 133px;
  }
}

.cb-hero__badge {
  display: block;
  background: var(--cb-white);
  color: var(--cb-dark);
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  border-radius: 15px;
  text-transform: uppercase;
  padding: 3px 12px;
  margin-bottom: 3px;
}

.cb-hero__title {
  padding: 10px 0;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  text-transform: uppercase;
  color: var(--cb-gold);
  text-shadow: 1px 0 var(--cb-dark);
  filter: drop-shadow(2px 2px 2px var(--cb-dark));
  margin: 0;
}

.cb-hero .cb-btn-gold {
  display: inline-flex;
  width: auto;
  min-width: min(100%, 260px);
  max-width: 100%;
  margin-top: 16px;
  padding: 14px 28px;
  font-size: 17px;
}

.cb-article .cb-btn-gold {
  display: inline-flex;
  width: auto;
  min-width: 200px;
  max-width: 100%;
  margin-top: 16px;
  padding: 12px 24px;
  font-size: 15px;
}

.cb-btn-gold::after {
  display: none;
}

.cb-btn-gold span {
  position: relative;
  z-index: 1;
  color: var(--cb-btn-fg);
}

/* Game grid / slider (winkingdom slots-pack) */
.cb-games {
  margin: 24px 0 32px;
}

.cb-games__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

@media (min-width: 1280px) {
  .cb-games__track {
    grid-auto-columns: calc((100% - 5 * 1rem) / 6);
  }
}

.cb-games__item {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cb-games__media {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cb-surface);
}

.cb-games__media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.cb-games__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.cb-games__item:hover .cb-games__media img {
  transform: scale(1.04);
}

.cb-games__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(34 34 34 / 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cb-games__item:hover .cb-games__overlay {
  opacity: 1;
}

.cb-games__play {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: var(--gradient-btn-gold);
  color: var(--cb-btn-fg) !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--cb-btn-fg) 12%, transparent);
}

.cb-games__title {
  padding: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cb-white);
  text-align: left;
}

.cb-games__title a {
  color: var(--cb-white);
}

.cb-games__title a:hover {
  color: var(--cb-gold);
}

.cb-games__nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.cb-games__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: color-mix(in srgb, var(--cb-purple) 35%, transparent);
  cursor: pointer;
}

.cb-games__dot--active {
  background: var(--cb-purple-deep);
}

/* Article content */
.cb-article section {
  padding: 40px 0;
}

.cb-article p,
.cb-article li {
  color: var(--cb-text);
}

.cb-article h1,
.cb-article h2 {
  color: var(--cb-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
}

.cb-article h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
}

.cb-article h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.cb-article > article:first-of-type > div h2:first-child {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
}

.cb-article h3 {
  color: var(--cb-white);
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  text-transform: uppercase;
  margin: 40px 0 20px;
}

.cb-article p {
  color: var(--cb-white);
  margin-bottom: 16px;
}

.cb-article ul,
.cb-article ol {
  margin: 0 0 20px 20px;
  color: var(--cb-white);
}

.cb-article li {
  margin-bottom: 8px;
}

.cb-article .anchorSection {
  scroll-margin-top: calc(var(--cb-header-h) + 16px);
  border-bottom: 1px solid color-mix(in srgb, gray 40%, transparent);
}

/* Promo / bonus cards row */
.cb-bonus-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.cb-bonus-card {
  flex: 1 1 200px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 160px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
}

.cb-bonus-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  min-height: 160px;
}

.cb-bonus-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px;
}

.cb-bonus-card__label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cb-white);
  opacity: 0.9;
}

.cb-bonus-card__heading {
  color: var(--cb-gold);
  font-weight: 700;
  font-size: 20px;
  margin: 8px 0;
  text-shadow: 1px 1px 2px var(--cb-dark);
}

.cb-bonus-card__heading span {
  display: block;
  color: var(--cb-white);
  font-size: 28px;
}

/* Inline bonus strip (div_bonus style) */
.cb-inline-bonus {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.cb-inline-bonus > a {
  flex: 1 1 28%;
  min-width: 200px;
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  padding: 80px 12px 20px;
  text-align: center;
}

.cb-inline-bonus h6 {
  position: relative;
  color: var(--cb-gold);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  text-shadow: 1px 1px 2px var(--cb-dark);
}

.cb-inline-bonus h6 span {
  display: block;
  color: var(--cb-white);
  font-size: 28px;
}

/* FAQ */
.cb-faq .faq_item {
  background: var(--cb-surface);
  color: var(--cb-purple-light);
  margin-bottom: 10px;
  padding: 15px 20px;
  border: 1px solid var(--cb-border);
  border-radius: 10px;
  cursor: pointer;
}

.cb-faq .faq_item:hover {
  background: color-mix(in srgb, var(--cb-surface), var(--cb-purple-deep) 15%);
}

/* Pros / cons */
.cb-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .cb-pros-cons {
    grid-template-columns: 1fr;
  }
}

.cb-pros-cons h3 {
  font-size: 20px;
  margin-top: 0;
}

.cb-pros-cons ul li::marker {
  color: var(--cb-green);
}

/* Sticky side promo */
.cb-feature {
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 999;
  width: 80px;
  padding: 12px;
  background: var(--cb-purple-deep);
  border-radius: 8px 0 0 8px;
  text-align: center;
  transform: translateX(100%);
  transition: transform 0.6s, opacity 0.6s;
  opacity: 0;
}

.cb-feature.cb-feature--show {
  transform: translateX(0);
  opacity: 1;
}

.cb-feature a {
  color: var(--cb-mint);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

/* Footer */
.cb-footer {
  margin-top: 48px;
  padding: 40px 0 24px;
  border-top: 1px solid color-mix(in srgb, var(--cb-green) 20%, transparent);
}

.cb-footer h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.cb-footer p,
.cb-footer a {
  font-size: 14px;
  line-height: 1.5;
}

.cb-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .cb-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile bottom CTA */
.cb-mobile-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.cb-mobile-cta__text {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--cb-purple-light);
}

.cb-mobile-cta__text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--cb-white);
  margin-top: 2px;
}

.cb-mobile-cta .cb-btn-gold {
  flex-shrink: 0;
  margin-top: 0 !important;
  padding: 10px 18px !important;
  font-size: 13px !important;
  min-width: 0;
}

@media (min-width: 768px) {
  .cb-mobile-cta {
    display: none;
  }
}

/* Hide spin defaults inside capibara */
body.site .container-page {
  max-width: none;
  padding: 0;
}

body.site .content-table-html th,
body.site .content-table-html td {
  border-color: var(--cb-border);
  color: var(--cb-text);
}

body.site .content-table-html thead th {
  background: color-mix(in srgb, var(--cb-purple-deep) 25%, var(--cb-surface));
}

.cb-title-block {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--cb-white);
}

.cb-hero__code {
  display: inline-block;
  margin: 8px 0 12px;
  padding: 6px 14px;
  border: 2px dashed var(--cb-gold);
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--cb-white);
}

.cb-winners {
  overflow: hidden;
  margin: 20px 0 28px;
  padding: 12px 0;
  border-block: 1px solid color-mix(in srgb, var(--cb-green) 25%, transparent);
}

.cb-winners__track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: cb-winners-scroll 80s linear infinite;
}

.cb-winners__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 248px;
  flex-shrink: 0;
}

.cb-winners__item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cb-winners__game {
  font-weight: 600;
  font-size: 14px;
}

.cb-winners__player {
  font-size: 12px;
  opacity: 0.75;
}

.cb-winners__amount {
  font-weight: 700;
  color: var(--cb-gold);
}

@keyframes cb-winners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cb-figure {
  margin: 24px 0;
  border-radius: 10px;
  overflow: hidden;
}

.cb-figure__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.cb-payments {
  margin: 32px 0 24px;
}

.cb-payments__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  justify-content: flex-start;
}

.cb-payments__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 140px;
  min-width: 120px;
  min-height: 72px;
  padding: 16px 20px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cb-payments__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.cb-payments__item img {
  width: auto;
  height: 30px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(0.35);
  opacity: 0.85;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.cb-payments__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.cb-bonus-card__cta {
  margin-top: 8px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cb-gold);
}

.cb-live-casinos {
  margin: 24px 0;
  overflow-x: auto;
}

.cb-live-casinos__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-bottom: 8px;
}

.cb-live-casinos__card {
  display: block;
  width: 213px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cb-providers {
  margin: 28px 0;
}

.cb-providers__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cb-providers__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 14px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: 8px;
}

.cb-providers__item img {
  height: 30px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
