/**
 * Info Card Components CSS
 * 
 * Information card styling with gradient backgrounds
 * Extends base card system from cards.css
 * 
 * Contains:
 * - Info cards (.card-info)
 * - Gradient styling and hover effects
 */

/* ============================
   Info Card
   ============================ */

/* Info Card - special gradient background variant */
body.theme-pt .card.card-info {
    background: var(--card-info-gradient);
    color: white;
    border: none;
}

body.theme-pt .card.card-info .card-text,
body.theme-pt .card.card-info .card-title {
    color: white;
}

