/* ============ COURSE OVERVIEW ============ */
.overview {
  background: #fff;
  padding: 64px 0 80px;
}

.overview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.overview__text p {
  font-size: 14.9px;
  line-height: 1.625;
  color: var(--text-body);
  margin-bottom: 16px;
}

.overview__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.overview__chip {
  background: var(--green-bg);
  border-radius: 20px;
  padding: 10px 16px;
}

.overview__chip-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11.2px;
  color: #007441;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  margin-bottom: 4px;
}

.overview__chip-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.4px;
  color: var(--purple-text);
}

.sessions-panel {
  background: #f4f3ff;
  border-radius: 16px;
  padding: 28px;
}

.sessions-panel__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--purple-deep);
  margin-bottom: 24px;
}

.sessions-panel__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.session {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.session__number {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #007936;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.session__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.1px;
  color: var(--purple-text);
  margin-bottom: 4px;
}

.session__desc {
  font-size: 12.8px;
  line-height: 1.625;
  color: #5b5c6e;
}

@media (max-width: 860px) {
  .overview .container { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .overview__chips { grid-template-columns: 1fr; }
}
