.course-location-bar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 35, 59, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(23, 35, 59, .1);
  backdrop-filter: blur(12px);
}

.course-location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-location-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef3f8;
  color: #17233b;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.course-location-bar a:hover {
  background: #dce9f7;
  color: #2a4e7d;
}

.course-location-bar .current-location {
  color: #566171;
  font-size: 14px;
  font-weight: 800;
}

.course-start-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid rgba(23, 35, 59, .14);
  border-radius: 16px;
  background: #eef3f8;
}

.course-start-panel p {
  margin: 0;
  color: #566171;
}

.course-start-panel strong {
  display: block;
  margin-bottom: 4px;
  color: #17233b;
}

.course-start-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #17233b;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.course-start-button:hover {
  background: #2a4e7d;
}

@media (max-width: 720px) {
  .course-location-bar,
  .course-start-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .course-location-links,
  .course-location-bar a,
  .course-start-button {
    width: 100%;
  }
}
