.bs-courses-soon {
  background: #ffffff;
  padding: clamp(48px, 6.94vw, 100px) clamp(24px, 6.67vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 3.89vw, 56px);
  width: 100%;
  box-sizing: border-box;
}

/* ── Heading block ── */
.bs-courses-soon__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.bs-courses-soon__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.75vw, 54px);
  line-height: 1.3;
  color: #21254a;
  margin: 0;
  text-transform: uppercase;
}

.bs-courses-soon__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.53vw, 22px);
  line-height: 1.55;
  color: #21254a;
  margin: 0;
}

/* ── 3-column grid ── */
.bs-courses-soon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}

/* ── Card ── */
.bs-courses-soon__card {
  background: #ffffff;
  border: 1px solid rgba(199, 197, 207, 0.85);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bs-courses-soon__card-image-wrap {
  width: 100%;
  height: 192px;
  overflow: hidden;
  flex-shrink: 0;
}

.bs-courses-soon__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bs-courses-soon__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.bs-courses-soon__card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
}

.bs-courses-soon__card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.67vw, 24px);
  line-height: 1.3;
  color: #0d0f39;
  margin: 0;
}

.bs-courses-soon__card-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: #0d0f39;
  margin: 0;
}

/* ── Bullet list ── */
.bs-courses-soon__card-list {
  list-style: disc;
  padding-left: 21px;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bs-courses-soon__card-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #46464e;
}

.bs-courses-soon__card-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #21254a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: normal;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.bs-courses-soon__card-cta:hover {
  opacity: 0.88;
  color: #ffffff !important;
  text-decoration: none;
}

/* ── Tablet: 2 columns ── */
@media (max-width: 1024px) {
  .bs-courses-soon__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile: 1 column ── */
@media (max-width: 599px) {
  .bs-courses-soon {
    padding: 48px 20px;
  }

  .bs-courses-soon__grid {
    grid-template-columns: 1fr;
  }

  .bs-courses-soon__card-cta {
    align-self: stretch;
    text-align: center;
  }
}
