.workout-split-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 18px;
  padding: 8px;
  border: 1px solid #e7e2df;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 16, 19, 0.06);
}

.workout-split-switch button {
  min-height: 66px;
  padding: 12px 16px;
  border: 0;
  border-radius: 13px;
  background: #f3f0ee;
  color: #747078;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.workout-split-switch button strong,
.workout-split-switch button span {
  display: block;
}

.workout-split-switch button strong {
  margin-bottom: 3px;
  color: inherit;
  font-size: 15px;
  letter-spacing: 0.03em;
}

.workout-split-switch button span {
  font-size: 12px;
}

.workout-split-switch button.active {
  background: #e11d2e;
  color: #fff;
  box-shadow: 0 10px 22px rgba(225, 29, 46, 0.25);
}

.workout-day-notice {
  margin: 0 0 16px;
  padding: 13px 16px;
  border-left: 4px solid #e11d2e;
  border-radius: 4px 12px 12px 4px;
  background: #fff0f2;
  color: #4c4548;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .workout-split-switch {
    position: sticky;
    top: 70px;
    z-index: 8;
    gap: 7px;
    margin-top: 14px;
    padding: 6px;
    border-radius: 15px;
  }

  .workout-split-switch button {
    min-height: 58px;
    padding: 9px 11px;
    border-radius: 11px;
  }

  .workout-split-switch button strong {
    font-size: 13px;
  }

  .workout-split-switch button span {
    font-size: 10px;
  }
}
