/* Dodge brand article — unique styles */

:root {
  --dodge-red: #D52B1E;
  --dodge-dark: #1A1A1A;
  --brand-color: #D52B1E;
  --brand-color-light: #D52B1E33;
}

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

/* ═══ Muscle Highlight Box ═══ */
.muscle-highlight-box {
  position: relative;
  background: linear-gradient(135deg, rgba(213, 43, 30, 0.14) 0%, rgba(26, 26, 26, 0.08) 100%);
  border: 1px solid rgba(213, 43, 30, 0.28);
  border-left: 4px solid var(--dodge-red);
  border-radius: 12px;
  padding: 2rem 2rem 1.5rem;
  margin: 1.5rem 0 2rem;
  overflow: hidden;
}

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

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

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

[data-theme="light"] .muscle-highlight-box {
  background: linear-gradient(135deg, rgba(213, 43, 30, 0.07) 0%, rgba(26, 26, 26, 0.03) 100%);
  border-color: rgba(213, 43, 30, 0.18);
  border-left-color: var(--dodge-red);
}

[data-theme="light"] .muscle-highlight-box::before {
  color: rgba(213, 43, 30, 0.05);
}

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

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