/* =========================================
   LABCALCULUS.IT — Global Stylesheet
   Design: Technical / Engineering / Precision
   Palette: Deep navy, steel blue, warm gold
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --navy:        #0d1b2a;
  --navy-mid:    #1a2e42;
  --navy-light:  #233d56;
  --steel:       #4a7fa5;
  --steel-light: #6fa3c8;
  --gold:        #c9a84c;
  --gold-light:  #e2c06a;
  --offwhite:    #f4f1eb;
  --cream:       #faf8f4;
  --gray-100:    #edf0f4;
  --gray-300:    #c0c8d2;
  --gray-500:    #7a8898;
  --gray-700:    #3c4a57;
  --success:     #2e7d57;
  --error:       #b5372a;
  --warning:     #c9a84c;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'IBM Plex Sans', 'Helvetica Neue', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 4px rgba(13,27,42,0.12);
  --shadow-md:  0 4px 16px rgba(13,27,42,0.15);
  --shadow-lg:  0 12px 40px rgba(13,27,42,0.2);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 3px; }

/* ── NAVIGATION ───────────────────────────── */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(13,27,42,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: -1px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--offwhite);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--offwhite); background: var(--navy-light); }
.nav-links a.active { color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
}

.btn-nav:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.3) !important;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1e3a54 100%);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,127,165,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,127,165,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--offwhite);
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  position: relative;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  display: block;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--offwhite);
  border: 1.5px solid rgba(244,241,235,0.25);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--steel);
  border: 1.5px solid var(--steel);
}
.btn-outline:hover {
  background: var(--steel);
  color: white;
  transform: translateY(-2px);
}

.btn-danger {
  background: var(--error);
  color: white;
}
.btn-danger:hover {
  background: #c9402f;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-full { width: 100%; justify-content: center; }

/* ── MAIN CONTENT ─────────────────────────── */
main { flex: 1; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ── AD CARDS ─────────────────────────────── */
.ads-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ad-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 32px;
  align-items: start;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.ad-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gray-300);
  transition: background var(--transition);
}

.ad-card:hover {
  border-color: var(--steel-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.ad-card:hover::before { background: var(--gold); }

.ad-card.full .ad-badge {
  background: rgba(46,125,87,0.08);
  color: var(--success);
  border-color: rgba(46,125,87,0.2);
}

.ad-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.ad-category {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
  background: rgba(74,127,165,0.08);
  border: 1px solid rgba(74,127,165,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}

.ad-date {
  font-size: 13px;
  color: var(--gray-500);
}

.ad-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ad-desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ad-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 120px;
}

.ad-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.ad-badge.open {
  background: rgba(74,127,165,0.08);
  color: var(--steel);
  border-color: rgba(74,127,165,0.25);
}

.ad-badge.full {
  background: rgba(46,125,87,0.08);
  color: var(--success);
  border-color: rgba(46,125,87,0.2);
}

.ad-slots {
  font-size: 13px;
  color: var(--gray-500);
  text-align: right;
}

.ad-slots strong {
  color: var(--navy);
  font-weight: 600;
}

.ad-attachments {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray-500);
}

/* ── FILTERS BAR ──────────────────────────── */
.filters-bar {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: var(--gray-100);
  transition: border-color var(--transition);
}

.filter-input:focus {
  outline: none;
  border-color: var(--steel);
  background: white;
}

/* ── FORMS ────────────────────────────────── */
.form-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.form-card-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.form-card-header h1 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-card-header p {
  color: var(--gray-500);
  font-size: 15px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.required::after {
  content: ' *';
  color: var(--error);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(74,127,165,0.12);
}

textarea { resize: vertical; min-height: 120px; }

.input-hint {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
}

.form-divider {
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  margin: 24px 0;
  position: relative;
}

.form-divider::before,
.form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 43%;
  height: 1px;
  background: var(--gray-300);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* ── ALERT MESSAGES ───────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-error {
  background: rgba(181,55,42,0.08);
  border: 1px solid rgba(181,55,42,0.25);
  color: var(--error);
}

.alert-success {
  background: rgba(46,125,87,0.08);
  border: 1px solid rgba(46,125,87,0.25);
  color: var(--success);
}

.alert-info {
  background: rgba(74,127,165,0.08);
  border: 1px solid rgba(74,127,165,0.2);
  color: var(--steel);
}

/* ── DETAIL PAGE ──────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.detail-main {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 40px;
}

.detail-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.price-display {
  text-align: center;
  padding: 20px 0;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.price-currency {
  font-size: 22px;
  color: var(--gray-500);
}

.price-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 6px;
  display: block;
}

.slots-meter {
  margin: 16px 0;
}

.slots-track {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.slots-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.slots-fill.full { background: var(--success); }

/* ── ATTACHMENTS ──────────────────────────── */
.file-list {
  list-style: none;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: all var(--transition);
}

.file-item:hover {
  border-color: var(--steel-light);
  background: rgba(74,127,165,0.03);
}

.file-icon {
  width: 36px;
  height: 36px;
  background: rgba(74,127,165,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.file-name { font-size: 14px; color: var(--navy); font-weight: 500; }
.file-size { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* ── PAYPAL BUTTON ────────────────────────── */
.paypal-wrap {
  text-align: center;
  padding: 8px 0;
}

.paypal-wrap img { height: 28px; margin-bottom: 12px; }

.contact-reveal {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 16px;
  text-align: center;
}

.contact-reveal.unlocked {
  background: rgba(46,125,87,0.06);
  border: 1px solid rgba(46,125,87,0.2);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 14px;
}

.contact-info-item strong { color: var(--navy); }

/* ── DASHBOARD ────────────────────────────── */
.dashboard-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.dash-sidebar {
  position: sticky;
  top: 80px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dash-user-info {
  background: var(--navy);
  padding: 28px 24px;
  text-align: center;
}

.dash-avatar {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  margin: 0 auto 12px;
}

.dash-name {
  color: var(--offwhite);
  font-weight: 600;
  font-size: 16px;
}

.dash-role {
  color: var(--gold-light);
  font-size: 12px;
  margin-top: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.dash-nav {
  list-style: none;
  padding: 12px 0;
}

.dash-nav-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all var(--transition);
}

.dash-nav-item a:hover { background: var(--gray-100); color: var(--navy); }
.dash-nav-item a.active {
  background: rgba(74,127,165,0.08);
  color: var(--steel);
  border-right: 3px solid var(--steel);
}

.dash-nav-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 8px 0;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
}

.stat-card-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--navy);
  display: block;
}

.stat-card-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── FILE UPLOAD ──────────────────────────── */
.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gray-100);
}

.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--steel);
  background: rgba(74,127,165,0.04);
}

.upload-zone-icon { font-size: 36px; margin-bottom: 12px; }

.upload-zone p { color: var(--gray-500); font-size: 14px; }

.upload-zone strong { color: var(--steel); }

.uploaded-files { margin-top: 16px; }

/* ── BADGE ────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--navy);
  color: var(--gray-500);
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--offwhite);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--navy-light);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-bottom a { color: var(--gray-500); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── PAGINATION ───────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  background: white;
}

.page-btn:hover, .page-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 16px; }
  .form-card { padding: 28px 20px; }
  .ad-card { grid-template-columns: 1fr; }
  .ad-card-right { flex-direction: row; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── UTILITY ──────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); font-size: 14px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--gray-500);
}

.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; }

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}
