/* Honda brand article — unique styles */

:root {
  --honda-red: #CC0000;
  --honda-dark: #1A1A2E;
  --brand-color: #CC0000;
  --brand-color-light: #CC000033;
}

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

/* ═══ EV Highlight Box ═══ */
.ev-highlight-box {
  position: relative;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.12) 0%, rgba(204, 0, 0, 0.06) 100%);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-left: 4px solid #4CAF50;
  border-radius: 12px;
  padding: 2rem 2rem 1.5rem;
  margin: 1.5rem 0 2rem;
  overflow: hidden;
}

.ev-highlight-box::before {
  content: 'EV';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(76, 175, 80, 0.06);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ev-highlight-content h3 {
  color: #4CAF50;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

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

[data-theme="light"] .ev-highlight-box {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.06) 0%, rgba(204, 0, 0, 0.03) 100%);
  border-color: rgba(76, 175, 80, 0.15);
  border-left-color: #4CAF50;
}

[data-theme="light"] .ev-highlight-box::before {
  color: rgba(76, 175, 80, 0.04);
}

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

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