/*
Theme Name: Divi Talent Child
Theme URI: https://talentstudent.in
Description: Modern Child Theme for Talent Student Platform
Author: Talent Student
Author URI: https://talentstudent.in
Template: Divi
Version: 1.0.0
*/

/* ========================================
   MODERN GLOBAL STYLES
======================================== */

:root {
  --primary: #4F46E5;
  --primary-hover: #4338CA;
  --secondary: #0D9488;
  --dark: #0F172A;
  --gray: #64748B;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--light);
}

/* Modern Cards */
.talent-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 24px;
}

/* Modern Buttons */
.talent-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.talent-btn:hover {
  background: var(--primary-hover);
}

.talent-btn-secondary {
  background: #E2E8F0;
  color: #334155 !important;
}

.talent-btn-secondary:hover {
  background: #CBD5E1;
}

/* Dashboard Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: var(--shadow);
}

.stat-card .label {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
}

.stat-card .number {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}