/* ─── Fiat Brand Article Styles ─── */

:root {
  --fiat-red: #CC0000;
  --brand-color: #CC0000;
}

/* ─── Brand Hero ─── */
.brand-hero .brand-tagline {
  color: var(--fiat-red);
  font-style: italic;
  opacity: 0.85;
}

/* ─── Stats Cards Brand Accent ─── */
.stat-card.danger .stat-value {
  color: var(--fiat-red);
}

/* ─── Doblo Kingdom Highlight Box ─── */
.doblo-highlight-box {
  background: linear-gradient(135deg, rgba(204,0,0,0.12) 0%, rgba(74,144,217,0.10) 100%);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.doblo-highlight-box::before {
  content: 'DOBLO';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.04;
  color: var(--fiat-red);
  pointer-events: none;
  line-height: 1;
}

[data-theme="light"] .doblo-highlight-box {
  background: linear-gradient(135deg, rgba(204,0,0,0.08) 0%, rgba(74,144,217,0.06) 100%);
  border-color: rgba(204,0,0,0.20);
}

.doblo-highlight-box h3 {
  color: var(--fiat-red);
  margin-top: 0;
}

.doblo-highlight-box .stats-grid {
  margin: 1.5rem 0;
}

/* ─── Chart Containers ─── */
.chart-container canvas {
  max-height: 400px;
}

/* ─── Price Table Brand Accent ─── */
.data-table tr:hover {
  background: rgba(204,0,0,0.06);
}

.data-table thead {
  background: rgba(204,0,0,0.10);
}

[data-theme="light"] .data-table thead {
  background: rgba(204,0,0,0.06);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .doblo-highlight-box {
    padding: 1.25rem;
  }
  .doblo-highlight-box::before {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .doblo-highlight-box {
    padding: 1rem;
    border-radius: 12px;
  }
}
