/* Kia brand article — unique styles */

:root {
  --kia-red: #BB162B;
  --kia-dark: #05141F;
  --brand-color: #BB162B;
  --brand-color-light: #BB162B33;
}

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

/* ═══ EV Highlight Box ═══ */
.ev-highlight-box {
  position: relative;
  background: linear-gradient(135deg, rgba(187, 22, 43, 0.12) 0%, rgba(5, 20, 31, 0.08) 100%);
  border: 1px solid rgba(187, 22, 43, 0.25);
  border-left: 4px solid var(--kia-red);
  border-radius: 12px;
  padding: 2rem 2rem 1.5rem;
  margin: 1.5rem 0 2rem;
  overflow: hidden;
}

.ev-highlight-box::before {
  content: 'EV6';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(187, 22, 43, 0.06);
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ev-highlight-content h3 {
  color: var(--kia-red);
  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(187, 22, 43, 0.06) 0%, rgba(5, 20, 31, 0.03) 100%);
  border-color: rgba(187, 22, 43, 0.15);
  border-left-color: var(--kia-red);
}

[data-theme="light"] .ev-highlight-box::before {
  color: rgba(187, 22, 43, 0.04);
}

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

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