.summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #ececec;
}

.summary-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-brand);
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed #ececec;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  color: #6b7280;
  font-weight: 600;
  min-width: 180px;
}

.summary-value {
  color: #1f2937;
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}

@media (max-width: 768px) {
  .summary-item {
    flex-direction: column;
    gap: 6px;
  }

  .summary-label {
    min-width: auto;
  }

  .summary-value {
    text-align: left;
  }
}
