.tc-sc-hero {
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
}

.tc-sc-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 260px;
}

.tc-sc-hero-image {
  background-size: cover;
  background-position: center;
}

.tc-sc-hero-image--fallback {
  background: radial-gradient(circle at top left, #facc15, #f97316, #7c3aed);
}

.tc-sc-hero-content {
  padding: 32px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.tc-sc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(248, 250, 252, 0.25);
}

.tc-sc-hero-title {
  font-size: 26px;
  margin: 0;
}

.tc-sc-hero-subtitle {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.tc-sc-hero-countdown {
  margin-top: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tc-sc-count-label {
  opacity: 0.8;
}

.tc-sc-count-part {
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(248, 250, 252, 0.25);
}

.tc-sc-count-sep {
  opacity: 0.8;
}

.tc-sc-hero-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: #facc15;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.35);
}

.tc-sc-hero-btn:hover {
  background: #fde047;
}

/* Responsive */
@media (max-width: 768px) {
  .tc-sc-hero-inner {
    grid-template-columns: 1fr;
  }
  .tc-sc-hero-image {
    min-height: 160px;
  }
  .tc-sc-hero-content {
    padding: 20px 18px 22px;
  }
  .tc-sc-hero-title {
    font-size: 22px;
  }
}
