.scsg-wrap,
.scsg-wrap * {
  box-sizing: border-box;
}

.scsg-wrap {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.scsg-card {
  background: #111827;
  color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.scsg-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.scsg-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.scsg-brand {
  font-size: 12px;
  opacity: 0.8;
}

.scsg-body {
  padding: 16px;
}

.scsg-btn {
  display: inline-block;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.scsg-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.scsg-pill {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 80px;
}

.scsg-pill-label {
  display: block;
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.scsg-pill-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
}