/* Mitsubishi brand article — unique styles */

:root {
  --mitsu-red: #CC0000;
  --mitsu-accent: #E60012;
  --brand-color: #CC0000;
  --brand-color-light: #CC000033;
}

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

/* ═══ Lancer Evolution Hero Box ═══ */
.evo-hero-box {
  position: relative;
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.12) 0%, rgba(230, 0, 18, 0.06) 100%);
  border: 1px solid rgba(204, 0, 0, 0.25);
  border-left: 4px solid var(--mitsu-red);
  border-radius: 12px;
  padding: 2rem 2rem 1.5rem;
  margin: 1.5rem 0 2rem;
  overflow: hidden;
}

.evo-hero-box::before {
  content: 'EVO';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(204, 0, 0, 0.06);
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.evo-hero-content h3 {
  color: var(--mitsu-red);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

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

[data-theme="light"] .evo-hero-box {
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.06) 0%, rgba(230, 0, 18, 0.03) 100%);
  border-color: rgba(204, 0, 0, 0.15);
  border-left-color: var(--mitsu-red);
}

[data-theme="light"] .evo-hero-box::before {
  color: rgba(204, 0, 0, 0.04);
}

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

@media (max-width: 480px) {
  .evo-hero-box::before {
    font-size: 3rem;
  }
}
