/* ============================================================
   AZN GLOBAL — PREMIUM DESIGN LAYER
   Adds depth, gradients, decorative patterns to existing
   child theme without breaking anything.
   Loaded after main style.css.
   ============================================================ */

/* ---------- 1. Decorative background patterns ---------- */

.azn-grid-pattern {
  position: relative;
  isolation: isolate;
}
.azn-grid-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center center;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}

.azn-grid-pattern-dark {
  position: relative;
  isolation: isolate;
}
.azn-grid-pattern-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,29,47,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,29,47,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}

/* Glow blobs (decorative radial gradients) */
.azn-glow {
  position: relative;
  overflow: hidden;
}
.azn-glow::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,95,180,0.25) 0%, transparent 60%);
  top: -300px;
  right: -200px;
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.azn-glow > * {
  position: relative;
  z-index: 1;
}

.azn-glow-left::after {
  right: auto;
  left: -300px;
}

/* ---------- 2. Hero kicker (small text above h2) ---------- */

.azn-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.azn-hero-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1a5fb4);
}

/* ---------- 3. Premium card with depth + hover ---------- */

.azn-card-premium {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0,29,47,0.06);
  box-shadow: 0 1px 3px rgba(0,29,47,0.04), 0 8px 24px -12px rgba(0,29,47,0.08);
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.azn-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a5fb4 0%, #0d2b5c 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.azn-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,29,47,0.06), 0 24px 48px -16px rgba(26,95,180,0.22);
  border-color: rgba(26,95,180,0.25);
}
.azn-card-premium:hover::before {
  transform: scaleX(1);
}

/* Icon container inside premium cards */
.azn-card-premium .azn-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,95,180,0.08), rgba(13,43,92,0.04));
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.azn-card-premium:hover .azn-icon-wrap {
  transform: scale(1.08) rotate(-2deg);
}
.azn-card-premium .azn-icon-wrap img {
  width: 38px;
  height: 38px;
}

/* Dark variant for dark sections */
.azn-card-premium-dark {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.azn-card-premium-dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(26,95,180,0.4);
  transform: translateY(-2px);
}

/* ---------- 4. Stat block (enhanced) ---------- */

.azn-stat-premium {
  text-align: center;
  padding: 20px 12px;
}
.azn-stat-premium .azn-stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #b7c8e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.azn-stat-premium .azn-stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-top: 8px;
  text-transform: uppercase;
}

/* Stat label (Home .azn-stat base) — white on dark blue band */
.azn-stat .azn-stat-label {
  color: #ffffff !important;
}

/* Stat on light bg */
.azn-stat-premium-light .azn-stat-number {
  background: linear-gradient(135deg, #1a5fb4 0%, #0d2b5c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.azn-stat-premium-light .azn-stat-label {
  color: #667782;
}

/* ---------- 5. Axis section header (numbered) ---------- */

.azn-axis-header {
  text-align: center;
  margin-bottom: 48px;
}
.azn-axis-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5fb4 0%, #0d2b5c 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px -8px rgba(26,95,180,0.5);
}

/* ---------- 6. Badge (improved) ---------- */

.azn-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(26,95,180,0.1);
  color: #1a5fb4;
  border: 1px solid rgba(26,95,180,0.2);
}
.azn-badge-premium::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a5fb4;
}
.azn-badge-premium-dark {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
}
.azn-badge-premium-dark::before {
  background: #ffffff;
}
.azn-badge-premium-accent {
  background: rgba(218,57,64,0.08);
  color: #da3940;
  border: 1px solid rgba(218,57,64,0.2);
}
.azn-badge-premium-accent::before {
  background: #da3940;
}

/* ---------- 7. Quote / field note (premium) ---------- */

.azn-quote-premium {
  background: linear-gradient(135deg, #f7f8f9 0%, #ffffff 100%);
  padding: 36px;
  border-radius: 24px;
  border-left: 4px solid #1a5fb4;
  position: relative;
  overflow: hidden;
}
.azn-quote-premium::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 24px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(26,95,180,0.12);
  line-height: 1;
  font-weight: 700;
}
.azn-quote-premium > * {
  position: relative;
  z-index: 1;
}

/* ---------- 8. Steps (enhanced) ---------- */

.azn-steps-premium {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.azn-step-premium {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,29,47,0.06);
  position: relative;
  transition: background 0.2s ease;
}
.azn-step-premium:last-child {
  border-bottom: none;
}
.azn-step-premium:hover {
  background: rgba(26,95,180,0.02);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 12px;
}
.azn-step-premium .azn-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,95,180,0.1), rgba(13,43,92,0.05));
  color: #1a5fb4;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

/* ---------- 9. CTA strip with depth ---------- */

.azn-cta-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2b5c 0%, #1a5fb4 50%, #15438c 100%);
}
.azn-cta-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(183,200,224,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.azn-cta-premium > * {
  position: relative;
  z-index: 1;
}

/* ---------- 10. Subtle dividers and section separators ---------- */

.azn-divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,95,180,0.3), transparent);
  margin: 0 auto;
  max-width: 200px;
}

/* ---------- 11. Link with arrow ---------- */

.azn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1a5fb4;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.azn-link-arrow:hover {
  gap: 10px;
  color: #0d2b5c;
}
.azn-link-arrow::after {
  content: "\2192";
}

.azn-link-arrow-light {
  color: #ffffff;
}
.azn-link-arrow-light:hover {
  color: #b7c8e0;
}

/* ---------- 12. Region pill (for geographic callouts) ---------- */

.azn-region-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(26,95,180,0.06);
  color: #1a5fb4;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(26,95,180,0.15);
}
.azn-region-pill.azn-region-warn {
  background: rgba(218,57,64,0.06);
  color: #da3940;
  border-color: rgba(218,57,64,0.15);
}

/* ---------- 13. Metric / KPI display ---------- */

.azn-metric {
  text-align: center;
  padding: 24px 16px;
  background: #f7f8f9;
  border-radius: 16px;
  transition: transform 0.2s ease;
}
.azn-metric:hover {
  transform: translateY(-2px);
}
.azn-metric-value {
  font-size: 32px;
  font-weight: 700;
  color: #1a5fb4;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1;
}
.azn-metric-label {
  font-size: 11px;
  font-weight: 600;
  color: #667782;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- 14. Responsive tweaks ---------- */

@media (max-width: 768px) {
  .azn-card-premium,
  .azn-card-premium-dark {
    padding: 24px;
  }
  .azn-quote-premium {
    padding: 24px;
  }
  .azn-quote-premium::before {
    font-size: 80px;
    top: -10px;
    left: 16px;
  }
  .azn-glow::after {
    width: 400px;
    height: 400px;
  }
}
/* ============================================================
   AZN GLOBAL — PREMIUM V2 ADDITIONS
   design-taste-frontend skill §11.D Modernisation Levers 1-4
   Appended to existing premium.css

   Levers applied:
   1. Typography refresh — tighter H2, better hierarchy
   2. Spacing & rhythm — section padding, hairline dividers
   3. Motion layer — CSS scroll-driven reveal (prefers-reduced-motion safe)
   4. Background diversity — 2 card variants, axis-header tint
   ============================================================ */

/* ---------- LEVER 1: TYPOGRAPHY REFRESH ---------- */

/* Tighten H2 headlines, better display feel */
.azn-card-premium h3,
.azn-card-premium h2 {
  letter-spacing: -0.015em;
  text-wrap: balance;
}

/* Section H2 — display-grade tracking */
.azn-axis-header h2 {
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* Lead paragraphs — slightly larger, more breathing room */
.azn-axis-header p {
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

/* Tabular numbers for stats and metrics */
.azn-stat-premium .azn-stat-number,
.azn-metric .azn-metric-value,
.azn-metric .azn-metric-label {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* Headline descender clearance (skill §4.1 italic rule) */
.azn-axis-header h2 em,
.azn-quote-premium em {
  display: inline-block;
  padding-bottom: 0.1em;
}

/* ---------- LEVER 2: SPACING & RHYTHM ---------- */

/* Hairline divider between axes (subtle, only on light backgrounds) */
.azn-axis-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(26, 95, 180, 0.15) 30%, rgba(26, 95, 180, 0.15) 70%, transparent 100%);
  max-width: 280px;
  margin: 0 auto 24px auto;
}

/* Section transition polish — sections breathe more */
section + section {
  scroll-margin-top: 80px;
}

/* Card grid — consistent gap rhythm */
.azn-card-premium + .azn-card-premium,
[class*="col"] + [class*="col"] .azn-card-premium {
  margin-top: 0;
}

/* ---------- LEVER 3: MOTION (CSS scroll-driven, reduced-motion safe) ---------- */

/* Reveal on scroll — only fires when motion is allowed */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .azn-card-premium,
    .azn-step-premium,
    .azn-stat-premium,
    .azn-quote-premium,
    .azn-axis-header {
      animation: azn-reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-timeline: view();
      animation-range: entry 0% entry 50%;
    }
  }
}

@keyframes azn-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger siblings inside a card grid */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .azn-card-premium:nth-child(2)  { animation-delay: 60ms; }
    .azn-card-premium:nth-child(3)  { animation-delay: 120ms; }
    .azn-card-premium:nth-child(4)  { animation-delay: 180ms; }
  }
}

/* Reduced-motion explicit fallback: instant */
@media (prefers-reduced-motion: reduce) {
  .azn-card-premium,
  .azn-step-premium,
  .azn-stat-premium,
  .azn-quote-premium,
  .azn-axis-header {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- LEVER 4: BACKGROUND DIVERSITY ---------- */

/* Variant: tinted card for axis-header context */
.azn-card-premium-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f9 100%);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(26, 95, 180, 0.12);
  box-shadow: 0 1px 3px rgba(0, 29, 47, 0.04), 0 8px 24px -12px rgba(26, 95, 180, 0.10);
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.azn-card-premium-soft::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #1a5fb4 0%, rgba(26, 95, 180, 0.2) 100%);
  opacity: 0.7;
}
.azn-card-premium-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 29, 47, 0.06), 0 24px 48px -16px rgba(26, 95, 180, 0.20);
}
.azn-card-premium-soft .azn-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 95, 180, 0.12), rgba(13, 43, 92, 0.06));
  margin-bottom: 20px;
}
.azn-card-premium-soft .azn-icon-wrap img {
  width: 38px;
  height: 38px;
}

/* Axis-header tinted backdrop (subtle visual cue per axis) */
.azn-axis-header {
  position: relative;
  padding: 32px 0;
}
.azn-axis-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(26, 95, 180, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Feature card variant — for highlighted differentiator cards */
.azn-card-feature {
  background: linear-gradient(135deg, #001d2f 0%, #0d2b5c 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.azn-card-feature::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 95, 180, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.azn-card-feature > * {
  position: relative;
  z-index: 1;
}
.azn-card-feature h3,
.azn-card-feature h4 {
  color: #ffffff;
}
.azn-card-feature p,
.azn-card-feature li {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- LEVER 5 (bonus): Button & link polish ---------- */

/* Primary button — physical press feedback (skill §4.5) */
.azn-hero-btn,
.button.primary {
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.azn-hero-btn:active,
.button.primary:active {
  transform: translateY(1px) scale(0.98);
}

/* Link arrow — already exists, add underline-on-hover */
.azn-link-arrow {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.azn-link-arrow:hover {
  border-bottom-color: currentColor;
}

/* ---------- LEVER 6 (bonus): Section rhythm backgrounds ---------- */

/* Subtle pattern for the first section after hero (visual flow) */
.azn-section-flow {
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(26, 95, 180, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(13, 43, 92, 0.03) 0%, transparent 60%),
    #ffffff;
}

/* ---------- Responsive tweaks ---------- */

@media (max-width: 768px) {
  .azn-axis-header h2 {
    font-size: 28px !important;
    letter-spacing: -0.02em;
  }
  .azn-card-premium-soft,
  .azn-card-feature {
    padding: 24px;
  }
  .azn-axis-divider {
    max-width: 200px;
  }
}


/* ============================================================
   VIDEO HERO v4 — CSS background + JS-injected video
   ============================================================ */

.azn-vh4-section { padding: 0 !important; margin: 0 !important; }

.azn-vh4-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: 70vh;
  max-height: 720px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  background-color: #001d2f;
  background-size: cover;
  background-position: center;
}

.azn-vh4-hero > video.azn-vh4-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  animation: azn-vh4-zoom 30s ease-in-out infinite alternate;
}

.azn-vh4-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,29,47,0.50) 0%, rgba(0,29,47,0.82) 100%);
  pointer-events: none;
}

.azn-vh4-content {
  position: relative !important;
  z-index: 2 !important;
  text-align: center;
  padding: 60px 24px;
  max-width: 900px;
  width: 100%;
}

.azn-vh4-kicker {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.azn-vh4-title {
  color: #ffffff !important;
  font-size: 48px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 18px 0 !important;
  text-shadow: 0 2px 24px rgba(0,29,47,0.7);
}

.azn-vh4-lead {
  color: rgba(255,255,255,0.92) !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  max-width: 680px;
  margin: 0 auto 32px auto !important;
  text-shadow: 0 1px 12px rgba(0,29,47,0.7);
}

.azn-vh4-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.azn-vh4-btn-primary,
.azn-vh4-btn-secondary {
  display: inline-block !important;
  padding: 14px 32px !important;
  border-radius: 34px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  line-height: 1.2 !important;
}
.azn-vh4-btn-primary {
  background: #1a5fb4 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(26,95,180,0.4);
}
.azn-vh4-btn-primary:hover {
  background: #15438c !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(26,95,180,0.55);
  color: #ffffff !important;
}
.azn-vh4-btn-secondary {
  background: rgba(255,255,255,0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
}
.azn-vh4-btn-secondary:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.5) !important;
  color: #ffffff !important;
}

@keyframes azn-vh4-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@media (max-width: 768px) {
  .azn-vh4-hero { min-height: 500px; height: 60vh; }
  .azn-vh4-title { font-size: 30px !important; line-height: 1.15 !important; }
  .azn-vh4-lead { font-size: 15px !important; }
  .azn-vh4-content { padding: 40px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .azn-vh4-hero > video.azn-vh4-video { animation: none; }
}

/* ---------- Language switcher ---------- */

/* Trigger button in header (the active language label that is always visible).
   Flatsome's style.css uses a high-specificity rule
   (.header-nav .nav > li > a) that wins over a 2-class selector, so we match
   the specificity and use !important. Only the trigger, not the dropdown items. */
.header .header-nav .nav > li.header-language-dropdown > a.header-language-dropdown__link.nav-top-link,
.header .header-nav .nav > li.header-language-dropdown > a.header-language-dropdown__link.nav-top-link:hover,
.header .header-nav .nav > li.header-language-dropdown > a.header-language-dropdown__link.nav-top-link:focus,
header .header-language-dropdown__link.nav-top-link,
header .header-language-dropdown__link.nav-top-link:hover,
header .header-language-dropdown__link.nav-top-link:focus {
  color: #ffffff !important;
}
