/* Footer new table CSS code */
.city-course-heading {
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  font-family: "p22-mackinac-pro";
  line-height: 1.1;
  color: white;
  font-size: 18px;
}

.course-table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  font-size: 16px;
}

.course-table th,
.course-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  color: white;
}

.course-table a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.course-table .course-link {
  color: white !important;
}

.course-table .course-link:hover {
  color: #ec6502 !important;
}

/* Desktop: show table only */
@media (min-width: 769px) {
  .mobile-course-layout {
    display: none;
  }
}

/* Mobile: hide table and show vertical list */
@media (max-width: 768px) {
  .course-table {
    display: none;
  }
  .city-course-heading {
    margin-left: 12px; /* 👈 Added padding for mobile */
  }
  .mobile-course-layout {
    display: block;
    color: white;
    font-size: 14px;
  }

  .mobile-course-layout h3 {
    font-size: 16px;
    color: #ec6502;
    margin-bottom: 10px;
  }

  .mobile-course-layout ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
  }

  .mobile-course-layout li {
    margin-bottom: 8px;
  }

  .mobile-course-layout a {
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
  }

  .mobile-course-layout a:hover {
    color: #ec6502;
  }
}
