.sbcc-wrap {
  --sbcc-yellow: #ffd400;
  --sbcc-gold: #c69214;
  --sbcc-black: #111827;
  --sbcc-muted: #5f6673;
  --sbcc-border: rgba(17, 24, 39, 0.08);
  position: relative;
  width: 100%;
  font-family: inherit;
  color: var(--sbcc-black);
}

.sbcc-heading {
  max-width: 760px;
  margin: 0 0 28px;
}

.sbcc-eyebrow {
  display: inline-block;
  color: var(--sbcc-gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

.sbcc-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.sbcc-heading p:not(.sbcc-eyebrow) {
  color: var(--sbcc-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
}

.sbcc-controls {
  position: absolute;
  top: 14px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.sbcc-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--sbcc-yellow);
  color: #111;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 212, 0, 0.35);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.sbcc-arrow:hover,
.sbcc-arrow:focus {
  transform: translateY(-2px);
  outline: none;
}

.sbcc-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.sbcc-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 22px;
  scrollbar-width: thin;
}

.sbcc-track::-webkit-scrollbar {
  height: 9px;
}

.sbcc-track::-webkit-scrollbar-thumb {
  background: rgba(17, 24, 39, 0.18);
  border-radius: 999px;
}

.sbcc-card {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--sbcc-border);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.sbcc-image-link {
  display: block;
  text-decoration: none;
}

.sbcc-image {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  background: #f7f8fb;
}

.sbcc-placeholder {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 78% 25%, rgba(255, 212, 0, 0.5), transparent 34%), #111;
}

.sbcc-placeholder span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  background: var(--sbcc-yellow);
  border-radius: 50%;
  font-size: 32px;
  box-shadow: 0 18px 32px rgba(255, 212, 0, 0.36);
}

.sbcc-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sbcc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.sbcc-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f7f8fb;
  color: var(--sbcc-muted);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.sbcc-card h3 {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
  font-weight: 900;
}

.sbcc-card h3 a {
  color: inherit;
  text-decoration: none;
}

.sbcc-card h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--sbcc-yellow);
  text-underline-offset: 4px;
}

.sbcc-card p {
  color: var(--sbcc-muted);
  line-height: 1.65;
  margin: 0 0 22px;
  font-size: 15px;
}

.sbcc-read-more {
  margin-top: auto;
  color: #111;
  font-weight: 900;
  text-decoration: none;
}

.sbcc-read-more:hover {
  color: var(--sbcc-gold);
}

.sbcc-empty {
  background: #fff;
  border: 1px dashed rgba(17, 24, 39, 0.18);
  border-radius: 24px;
  padding: 28px;
  color: var(--sbcc-muted);
}

.sbcc-empty strong {
  color: var(--sbcc-black);
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .sbcc-controls {
    position: static;
    margin-bottom: 16px;
    justify-content: flex-end;
  }

  .sbcc-track {
    grid-auto-columns: minmax(270px, 48%);
  }
}

@media (max-width: 640px) {
  .sbcc-track {
    grid-auto-columns: minmax(250px, 88%);
    gap: 16px;
  }

  .sbcc-card {
    border-radius: 24px;
  }

  .sbcc-image {
    height: 180px;
  }

  .sbcc-card-body {
    padding: 22px;
  }
}
