.sport-layout {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.sport-day-card {
  border: 2px solid #000;
  background: #fff;
  padding: 8px 10px;
  min-height: 80px;
  box-sizing: border-box;
}

.sport-day-title {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
}

.sport-day-body {
  font-size: 11px;
}


