.course-hero {
  position: relative;
  padding: 100px 0 90px;
  background: var(--header-bg);
  color: #ffffff;
  overflow: hidden;
}

.course-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255,255,255,0.06) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.4;
}

.course-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.hero-content {
  max-width: 700px;
}

.hero-label {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0f172a;
  background: #7dd3fc;
  border-radius: 20px;
  margin-bottom: 18px;
  font-weight: 600;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #d4edf4;
  max-width: 600px;
  margin-bottom: 26px;
}

/* Breadcrumb */
.hero-breadcrumb {
  font-size: 14px;
  color: #b6dde7;
}

.hero-breadcrumb a {
  color: #7dd3fc;
  text-decoration: none;
  font-weight: 500;
}

.hero-breadcrumb span {
  margin: 0 6px;
}


/* Responsive */
@media (max-width: 992px) {
  .course-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-side {
    display: none;
  }

  .hero-title {
    font-size: 32px;
  }
}
