.service-schedule {
  padding: 17px;
  border: 1px solid #dcece3;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4faf6, #fff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-schedule-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 0 2px;
}

.service-schedule-head strong {
  display: block;
  color: #26342d;
  font-size: 14px;
}

.service-schedule-head p {
  margin: 2px 0 0;
  color: #66736b;
  font-size: 12px;
}

.schedule-live {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border: 1px solid #d4eadf;
  border-radius: 999px;
  color: #0d7955;
  background: #edf8f2;
  font-size: 11px;
  font-weight: 800;
}

.schedule-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #21b77b;
  box-shadow: 0 0 0 4px rgba(33, 183, 123, 0.1);
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.schedule-card {
  position: relative;
  min-width: 0;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid #e1e9e4;
  border-radius: 12px;
  background: #fff;
}

.schedule-card.automatic {
  padding-right: 60px;
  border-color: #cfe8db;
  background: linear-gradient(135deg, #ecf8f1, #f8fcfa);
}

.schedule-card.manual {
  border-color: #ebe6df;
  background: linear-gradient(135deg, #fffaf6, #fff);
}

.schedule-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #159568, #087751);
  box-shadow: 0 8px 18px rgba(15, 132, 89, 0.18);
  font-weight: 850;
}

.schedule-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schedule-card.manual .schedule-icon {
  color: #b95b31;
  background: #fff0e7;
  box-shadow: none;
}

.schedule-copy {
  min-width: 0;
}

.schedule-copy > span,
.schedule-copy strong,
.schedule-copy small {
  display: block;
}

.schedule-copy > span {
  margin-bottom: 2px;
  color: #5f6c65;
  font-size: 12px;
  font-weight: 800;
}

.schedule-copy strong {
  overflow-wrap: anywhere;
  color: #203029;
  font-size: 15px;
  line-height: 1.35;
}

.schedule-copy small {
  margin-top: 3px;
  color: #65736b;
  font-size: 12px;
}

.schedule-card.automatic .schedule-copy strong {
  color: #0b7552;
}

.schedule-badge {
  position: absolute;
  right: 12px;
  top: 11px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #0e7b56;
  background: #dff3e8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (max-width: 700px) {
  .service-schedule-head {
    align-items: center;
  }

  .service-schedule-head p {
    max-width: 230px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .service-schedule {
    padding: 13px;
  }

  .service-schedule-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .schedule-live {
    align-self: flex-start;
  }

  .schedule-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 13px;
  }

  .schedule-card.automatic {
    padding-right: 55px;
  }

  .schedule-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .schedule-copy strong {
    font-size: 14px;
  }
}
