.scc-wrap { font-family: 'Inter', sans-serif; width: 100%; --scc-gap: 20px; }

.scc-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: 16px;   /* badge overflow room */
  padding-bottom: 16px; /* shadow overflow room */
}
.scc-track::-webkit-scrollbar { display: none; }

.scc-card {
  flex: 0 0 300px;
  max-width: 300px;
  border-radius: 16px;
  overflow: visible;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}
.scc-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}

.scc-thumb {
  width: 100%;
  height: 180px;
  background: #f0f0f0;
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 16px 16px 0 0;
}
.scc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scc-body {
  padding: 20px 18px 18px;
  position: relative;
  /* clip bottom corners of card */
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

/* Badge: overlaps top of card body — sits above the image/body boundary */
.scc-badge {
  position: absolute;
  top: -13px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  color: #ffffff;
  background: #6B7DB3;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10;
  display: inline-block;
}

.scc-title {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin: 10px 0 16px;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.scc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
}
.scc-btn-text { flex: 1; text-align: center; }
.scc-btn-arrow {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.scc-card:hover .scc-btn { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }
.scc-card:hover .scc-btn-arrow { transform: rotate(-45deg); }

/* Dots — centered */
.scc-dots {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.scc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0d4e8;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.scc-dot.scc-active {
  background: #6B7DB3;
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .scc-card { flex: 0 0 82vw; max-width: 82vw; }
}
