:root {
  --primary: hsl(348, 90%, 35%);
  --primary-dark: #7a061c;
  --primary-soft: hsla(348, 90%, 35%, 0.1);
  --accent: hsl(0, 100%, 50%);
  --white: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 9%);
  --muted: hsl(0, 0%, 96.1%);
  --muted-2: #f8f8f9;
  --text-muted: #6b7280;
  --border: rgba(15, 23, 42, 0.1);
  --dark: hsl(224, 71%, 4%);
  --dark-card: #080d18;

  --metallic-red: linear-gradient(135deg, #ff0000 0%, hsl(348, 90%, 35%) 48%, #7a061c 100%);
  --button-gradient: linear-gradient(135deg, hsl(348, 90%, 35%), #a32626);
  --shadow-glow: 0 18px 45px hsla(348, 90%, 35%, 0.28);
  --shadow-deep: 0 26px 80px rgba(15, 23, 42, 0.12);

  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;

  --container: 1200px;
  --section-py: clamp(40px, 6vw, 56px);
}

[data-theme="dark"], .dark-mode, .dark {
  --white: hsl(224, 71%, 4%);
  --foreground: #ffffff;
  --muted: #080d18;
  --muted-2: #0d1423;
  --text-muted: #a4adbd;
  --border: rgba(255, 255, 255, 0.1);
  --shadow-deep: 0 26px 80px rgba(0, 0, 0, 0.45);
}

/* Common Editorial Components */
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-deep);
}

[data-theme="dark"] .glass-card,
.dark-mode .glass-card,
.dark .glass-card {
  background: rgba(8, 13, 24, 0.72);
  border-color: rgba(255, 255, 255, 0.09);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid hsla(348, 90%, 35%, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 16px;
}

.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px var(--primary);
}

.btn-editorial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: italic;
  cursor: pointer;
  transition: 0.25s ease;
  text-decoration: none;
}

.btn-primary-editorial {
  color: #fff !important;
  background: var(--button-gradient);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary-editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: 0.6s ease;
}

.btn-primary-editorial:hover::after {
  transform: translateX(120%);
}

.btn-primary-editorial:hover {
  transform: translateY(-4px);
}

.btn-light-editorial {
  color: var(--foreground);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.btn-light-editorial:hover {
  transform: translateY(-4px);
}

/* Common Header Styles */
.site-header-blog {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .site-header-blog,
.dark-mode .site-header-blog,
.dark .site-header-blog {
  background: rgba(3, 7, 18, 0.84);
}

.nav-blog {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-blog {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--foreground);
}

.logo-mark-blog {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--metallic-red);
  color: #fff;
  box-shadow: var(--shadow-glow);
  font-size: 13px;
}

.nav-links-blog {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links-blog a {
  color: color-mix(in srgb, var(--foreground), transparent 25%);
  transition: 0.2s;
  text-decoration: none;
}

.nav-links-blog a:hover,
.nav-links-blog a.active {
  color: var(--primary);
}


@media (min-width: 1024px) {
  .nav-links-blog { display: flex; }
}
