/* Detail Card - Contemporary Admin Detail Display */
.detail-card {
  background: white;
  border: 2px solid rgba(0, 123, 255, 0.2);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.detail-card__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  margin: 0;
}

.detail-card__term {
  font-family: 'Cinzel', 'Georgia', serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #007bff;
  letter-spacing: 0.03em;
  margin: 0;
  padding: clamp(0.25rem, 0.8vw, 0.35rem) 0;
  align-self: start;
}

.detail-card__definition {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #333;
  margin: 0;
  padding: clamp(0.25rem, 0.8vw, 0.35rem) 0;
  line-height: 1.5;
  word-break: break-word;
}

.detail-card__link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.detail-card__link:hover {
  color: #0056b3;
  border-bottom-color: #0056b3;
}

.detail-card__value {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 4px;
  font-weight: 600;
}

.detail-card__badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.8vw, 0.85rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.detail-card__badge--success {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.25));
  color: #1e7e34;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.detail-card__badge--muted {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.2);
}

.detail-card__empty {
  color: #6c757d;
  font-style: italic;
  font-size: clamp(0.8rem, 1.9vw, 0.9rem);
}

/* Responsive */
@media (max-width: 768px) {
  .detail-card__list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .detail-card__term {
    padding-bottom: 0.1rem;
  }

  .detail-card__definition {
    padding-top: 0;
    padding-left: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .detail-card__definition:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
