/* ---------------------------------------------
 * Custom Course Item (Manual Courses)
 * --------------------------------------------- */

.custom-course-item {
  background-color: var(--white);
  /* border: 2px solid var(--border-color); */
  border-radius: 1rem;
  /* padding: 1rem; */
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Title */
.custom-course-item__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--almost-black);
  line-height: 1.3;
}

.custom-course-item__content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--almost-black);
  line-height: 1.3;
  margin: 0;
}

.custom-course-item__content h3.esol {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.4;
  margin: 0 auto 1rem auto;
  padding: 0 0 1rem 0;
  border-bottom: 2px dotted currentColor;
}

.custom-course-item__content h3.esol-last {
  margin: 2rem auto 1rem auto;
}

.enrol-text h4 {
  margin: 2rem 0 1rem 0;
}

/* Content */
.custom-course-item__content {
  line-height: 1.625rem;
  color: var(--almost-black);
  margin-bottom: 0;
}

.custom-course-item__content p {
  margin-bottom: 1rem;
}

.custom-course-item__content p.esol {
  margin-bottom: 2rem;
}

.custom-course-item__content p.intro {
  margin: 0 0 2rem 0;
}

/* .custom-course-item__content a {
  color: var(--deep-blue);
  text-decoration: underline;
} */

.custom-course-item__content ul {
  padding-left: 1rem;
  margin: 0.75rem 0;
}

.custom-course-item__content ul.esol {
  padding-left: 1rem;
  margin: 0.75rem 0 2rem;
}

.custom-course-item__content li {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* ---------------------------------------------
 * Custom Course Item List Bullets
 * --------------------------------------------- */

.custom-course-item__content ul {
  list-style: none;
  margin: 0.75rem 0;
  padding: 0 0 0 1rem;
}

.custom-course-item__content li {
  display: flex;
  align-items: flex-start; /* ✅ align to top line */
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.custom-course-item__content li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Sharp", "Font Awesome 6 Free", "Font Awesome 6 Pro";
  font-weight: 900;
  color: var(--green);
  font-size: 1rem;
  line-height: 1;
  margin-top: 0.4em; /* tweak so icon optically aligns with text baseline */
}

/* Tablet/Desktop Enhancements */
@media (min-width: 48rem) {
  .custom-course-item {
    padding: 2rem;
    max-width: 56rem;
    margin: 0 auto;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
  }

  .custom-course-item__title {
    font-size: 2.4rem;
    margin: 0;
  }
}
