/* ============================================================
   CULTURILY — POLISH CULTURE ACCENT
   Applied by adding class="culture-polish" to <body>.
   Overrides the global --culture-accent / --culture-accent-2
   tokens so every culture-aware component reflects Polish colours
   with zero additional CSS.

   Polish flag colours:
     White #FFFFFF
     Red   #DC143C
   ============================================================ */

body.culture-polish {
  --culture-accent:      #DC143C;
  --culture-accent-2:    #A00E2C;
  --culture-accent-dim:  rgba(220, 20, 60, 0.10);
  --culture-accent-text: #ffffff;

  /* Border variants */
  --border-accent: rgba(220, 20, 60, 0.35);

  /* Shadow variant */
  --shadow-culture: 0 0 28px rgba(220, 20, 60, 0.22);
}

/* ── Gradient treatment for Polish hero areas ─────────────── */
body.culture-polish .culture-hero-gradient {
  background: linear-gradient(
    135deg,
    rgba(220, 20, 60, 0.15) 0%,
    rgba(160, 14, 44, 0.15) 100%
  );
}
