/* Common styles moved to quick-read-common.css */

/* Page-specific styles */
.problem-list {
  margin: 32px 0;
}

.problem-item {
  background: hsl(351, 100%, 96%);
  border-left: 4px solid hsl(1, 77%, 55%);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 12px;
}

.problem-item h4 {
  color: hsl(0, 66%, 47%);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.problem-item p {
  margin: 0;
  font-size: 15px;
  color: var(--text-body);
}

.timeline {
  margin: 32px 0;
}

.timeline-item {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.timeline-day {
  background: var(--purple-main);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
  height: fit-content;
}

.timeline-content {
  flex: 1;
  background: var(--gray-light);
  padding: 16px;
  border-radius: 12px;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--gray-text);
  margin: 0;
}

@media (max-width: 600px) {
  .timeline-item {
    flex-direction: column;
  }

  .timeline-day {
    width: fit-content;
  }
}