.decp-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0;
}

.decp-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.decp-section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.decp-section-header svg {
  width: 16px;
  height: 16px;
  color: #1a2a72;
  flex-shrink: 0;
}
.decp-section-header h3 {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a2a72;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.decp-section-body {
  padding: 0;
}

.decp-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
.decp-row:last-child {
  border-bottom: none;
}
.decp-row:nth-child(even) {
  background: #f9fafb;
}

.decp-label {
  flex-shrink: 0;
  min-width: 130px;
  max-width: 150px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.4;
}

.decp-value {
  color: #1a1a1a;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-word;
}

.decp-section--full {
  grid-column: 1/-1;
}

@media (max-width: 768px) {
  .decp-sections {
    grid-template-columns: 1fr;
  }
  .decp-section--full {
    grid-column: auto;
  }
  .decp-label {
    min-width: 110px;
  }
  .actions-grid {
    flex-direction: column !important;
  }
  .actions-grid a {
    width: 100%;
  }
}

/*# sourceMappingURL=decp.css.map */
