/* Mazda brand article — unique styles */

:root {
  --mazda-red: #910C12;
  --mazda-dark: #1a1a1a;
  --brand-color: #910C12;
  --brand-color-light: #910C1233;
}

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

/* ═══ SKYACTIV Highlight Box ═══ */
.skyactiv-highlight-box {
  position: relative;
  background: linear-gradient(135deg, rgba(145, 12, 18, 0.12) 0%, rgba(26, 26, 26, 0.08) 100%);
  border: 1px solid rgba(145, 12, 18, 0.25);
  border-left: 4px solid var(--mazda-red);
  border-radius: 12px;
  padding: 2rem 2rem 1.5rem;
  margin: 1.5rem 0 2rem;
  overflow: hidden;
}

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

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

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

[data-theme="light"] .skyactiv-highlight-box {
  background: linear-gradient(135deg, rgba(145, 12, 18, 0.06) 0%, rgba(26, 26, 26, 0.03) 100%);
  border-color: rgba(145, 12, 18, 0.15);
  border-left-color: var(--mazda-red);
}

[data-theme="light"] .skyactiv-highlight-box::before {
  color: rgba(145, 12, 18, 0.04);
}

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

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