/* Shared Course Sales Layout Stylesheet */
.course-hero {
  background: var(--primary-dark, #0C1620);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.hero-badge {
  color: #ffeb3b;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 15px;
}

.curriculum-section {
  display: flex;
  gap: 30px;
  padding: 60px 5%;
  background: #0C1620;
  color: #ffffff;
}

.left-box {
  width: 32%;
  background: #152232;
  padding: 30px;
  border-radius: var(--radius-md, 10px);
}

.right-box {
  width: 68%;
}

.curr-item {
  background: #152232;
  padding: 18px 24px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm, 6px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.curr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.curr-header h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.curr-content {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag {
  background: var(--accent-red, #ED2B3B);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.compare-table, .batch-table {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: var(--radius-md, 10px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare-table th, .batch-table th {
  background: var(--primary-dark, #0C1620);
  color: #ffffff;
  padding: 18px;
}

.compare-table td, .batch-table td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.bad { color: #d62828; font-weight: 600; }
.good { color: #198754; font-weight: 700; }

@media(max-width: 768px) {
  .curriculum-section { flex-direction: column; }
  .left-box, .right-box { width: 100%; }
}