/* ═══════════════════════════════════════════════
   WAJHA AGENCY — CARDS.CSS
   Rule: Glassmorphic cards shells. No section-specific content inside.
   ═══════════════════════════════════════════════ */

.card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--ease-base);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--color-border-base);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* Glassmorphism Card Subclass */
.glass-card {
  background: rgba(var(--color-bg-card-rgb), 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Card Visual Signature: Left vertical accent stripe */
.card-signature::before {
  content: '';
  position: absolute;
  top: var(--space-6);
  bottom: var(--space-6);
  inset-inline-start: 0;
  width: 5px;
  background-color: var(--color-brand-primary);
  border-radius: 0;
  border-start-end-radius: var(--radius-sm);
  border-end-end-radius: var(--radius-sm);
}

/* Card Visual Signature (Alternative Accent): orange color */
.card-signature-accent::before {
  content: '';
  position: absolute;
  top: var(--space-6);
  bottom: var(--space-6);
  inset-inline-start: 0;
  width: 5px;
  background-color: var(--color-brand-accent);
  border-radius: 0;
  border-start-end-radius: var(--radius-sm);
  border-end-end-radius: var(--radius-sm);
}

.card-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.card-body {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  flex-grow: 1;
}
