/* Peugeot brand article — unique styles */

:root {
  --peugeot-blue: #1B3370;
  --peugeot-dark: #0e1632;
  --brand-color: #1B3370;
  --brand-color-light: #1B337033;
}

/* Stat card brand color */
.stat-card.peugeot {
  border-top-color: var(--peugeot-blue);
}
.stat-card.peugeot .stat-value {
  color: var(--peugeot-blue);
}

/* ═══ DIESEL Highlight Box ═══ */
.diesel-highlight-box {
  position: relative;
  background: linear-gradient(135deg, rgba(27, 51, 112, 0.12) 0%, rgba(26, 26, 26, 0.08) 100%);
  border: 1px solid rgba(27, 51, 112, 0.25);
  border-left: 4px solid var(--peugeot-blue);
  border-radius: 12px;
  padding: 2rem 2rem 1.5rem;
  margin: 1.5rem 0 2rem;
  overflow: hidden;
}

.diesel-highlight-box::before {
  content: 'DIESEL';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(27, 51, 112, 0.06);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.diesel-highlight-content h3 {
  color: var(--peugeot-blue);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.diesel-highlight-content p {
  color: var(--md-sys-color-on-surface);
  line-height: 1.7;
  margin: 0;
}

[data-theme="light"] .diesel-highlight-box {
  background: linear-gradient(135deg, rgba(27, 51, 112, 0.06) 0%, rgba(26, 26, 26, 0.03) 100%);
  border-color: rgba(27, 51, 112, 0.15);
  border-left-color: var(--peugeot-blue);
}

[data-theme="light"] .diesel-highlight-box::before {
  color: rgba(27, 51, 112, 0.04);
}

@media (max-width: 768px) {
  .diesel-highlight-box {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .diesel-highlight-box::before {
    font-size: 3rem;
    right: 10px;
    top: -5px;
  }
  .diesel-highlight-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .diesel-highlight-box::before {
    font-size: 2rem;
  }
}
