.schedule-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
  background: linear-gradient(120deg, #0f252d, #0a171e);
}

.schedule-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 5px;
  font-size: 18px;
}

.schedule-card h3 i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px #54d6c214;
  animation: pulse 2.2s infinite;
}

.schedule-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.schedule-next {
  text-align: right;
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.schedule-next span {
  display: block;
  color: #708b96;
  font-size: 9px;
}

.schedule-next strong {
  display: block;
  margin-top: 6px;
  color: var(--orange);
  font-size: 14px;
}

@media (max-width: 520px) {
  .schedule-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-next {
    width: 100%;
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }
}
