.risk-detail-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.risk-detail-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 0 32px 0;
}

.risk-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.risk-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.risk-subtitle {
  font-size: 1.1rem;
  color: #888;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.risk-section {
  margin-bottom: 32px;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 32px;
}

.property-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  padding: 0;
  min-width: 0;
}

.property-label {
  font-size: 0.97rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 4px;
}

.property-value {
  font-size: 1.09rem;
  color: #222;
  word-break: break-word;
}

/* Full width for tag fields or long text */
.property-item.full-width {
  grid-column: 1 / -1;
}

.editable-field {
  width: 100%;
}

@media (max-width: 900px) {
  .property-grid {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
}
