/* ============================================================
   COMPONENT: Cards (Grunddesign)
   ============================================================ */

.card {
    background: var(--color-card);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 18px 20px;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(75, 163, 227, 0.35), transparent);
    opacity: 0.7;
    pointer-events: none;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.card-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title span.icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(75, 163, 227, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.card-subtitle {
    font-size: 13px;
    color: var(--color-muted);
}