﻿/* =========================================================
   doc-card-premium.css
   Modern Stitch Vibe Card
   ========================================================= */

:root {
  --doc-blue: #0EA5E9;
  --doc-blue-dark: #0284C7;
  --doc-blue-50: #F0F9FF;
  --doc-navy: #0F172A;
  --doc-slate: #64748B;
  --doc-line: #F1F5F9;
  --doc-bg: #ffffff;
}

.doc-card-premium {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--doc-bg);
  border: 1px solid var(--doc-line);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  overflow: hidden;
}

.doc-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.08);
  border-color: #BAE6FD;
}

/* Remove the old side tab if we want to match screenshot, but let's hide it for now */
.card-tab {
  display: none;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.card-badge {
  background: #E0F2FE;
  color: #0284C7;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.card-id {
  font-size: 0.8rem;
  color: var(--doc-slate);
  font-weight: 500;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--doc-navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--doc-slate);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--doc-line);
  padding-top: 16px;
}

.card-date {
  font-size: 0.85rem;
  color: var(--doc-slate);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.card-action-btn {
  font-size: 1rem;
  color: #0284C7;
  font-weight: 600;
  transition: transform 0.2s;
}

.doc-card-premium:hover .card-action-btn {
  transform: translateX(4px);
}
