/*
 * Volyn SOS — base.css (DESIGN SYSTEM / SHARED CHROME)
 * Loaded globally on every page. Contains ONLY what is common across all pages:
 *   :root tokens · reset · body/paper texture · .container · top-bar · header/nav ·
 *   logo · buttons · footer · the global "live dynamic system" layer · shared utilities.
 * Page-specific CSS lives in assets/css/{slug}.css (see functions.php convention).
 * Extracted byte-faithfully from the redesign HTML — do not rename these classes.
 */

  :root {
    --paper: #F0EDE3;
    --paper-deep: #E5E1D3;
    --paper-warm: #D8D2BE;
    --ink: #1A1A1A;
    --ink-soft: #4A4A4A;
    --ink-muted: #5C5C5C;
    --line: #CFC9B5;
    --line-soft: #DCD6C5;
    --forest: #1A3D2F;
    --forest-deep: #0F2A20;
    --forest-soft: #2D5642;
    --success: #2D6A4F;
    --forest-mid: #4E7766;
    --forest-pale: #A4B8AE;
    --khaki: #3A5142;
    --sand: #C9B89A;
    --sand-light: #E5D9BF;
    --display: 'Montserrat', system-ui, sans-serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --container: 1240px;
    --gutter: clamp(20px, 4vw, 64px);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  a { color: inherit; text-decoration: none; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Paper texture overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(201, 184, 154, 0.04) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(61, 74, 46, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
  }

  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
  }

  /* ─── HEADER ─────────────────────────────────────── */
  .top-bar {
    background: var(--forest);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    z-index: 100;
  }
  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top-bar-status {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pulse {
    width: 7px;
    height: 7px;
    background: var(--forest);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
  }

  /* Pulse on dark forest sections — flip to paper color */
  .priority-kicker .pulse,
  .top-bar-status .pulse,
  footer .pulse,
  .priority .pulse,
  .transparency .pulse,
  .coins .pulse,
  .reports-cta .pulse,
  .support-all .pulse,
  .newsletter .pulse,
  .featured .pulse,
  .donate-widget .pulse,
  .trust-strip .pulse,
  .author-bio .pulse,
  .article-donate-cta .pulse,
  .reports-aside .pulse,
  .aside-subscribe .pulse {
    background: var(--paper);
    animation: pulse-light 1.8s ease-in-out infinite;
  }
  @keyframes pulse-light {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(240, 239, 230, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(240, 239, 230, 0); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(26, 61, 47, 0.7); }
    50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(26, 61, 47, 0); }
  }
  .top-bar-meta {
    display: flex;
    gap: 24px;
    opacity: 0.7;
  }

  header.main-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(10px);
    background: rgba(245, 242, 234, 0.95);
  }
  /* Offset the sticky header below the WP admin bar — only on desktop, where the
     admin bar is position:fixed. On mobile (<=782px) the admin bar is
     position:absolute (it scrolls away), so the header must stick to top:0 —
     otherwise a 46px gap appears under it once the bar scrolls off. */
  @media screen and (min-width: 783px) {
    body.admin-bar header.main-header { top: 32px; }
  }
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
  }
  .logo-mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--forest);
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
  }
  .logo-mark::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid var(--paper);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
  }
  .logo-mark span {
    position: relative;
    z-index: 2;
    color: var(--paper);
    font-family: var(--display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .logo-mark::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid var(--forest);
    border-radius: 50%;
  }
  .logo-text {
    line-height: 1;
  }
  .logo-text .name {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.02em;
  }
  .logo-text .tagline {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 3px;
  }

  nav.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  nav.main-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
  }
  nav.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--forest);
    transition: width 0.3s ease;
  }
  nav.main-nav a:hover::after { width: 100%; }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .lang-switch {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
  }
  .lang-switch .active { color: var(--ink); font-weight: 600; }

  .btn-donate {
    background: var(--forest);
    color: var(--paper);
    border: none;
    padding: 12px 24px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
  }
  .btn-donate:hover { background: var(--forest-deep); }
  .btn-donate svg { width: 14px; height: 14px; }

  /* Language switch is relocated into the burger dropdown on narrow phones. */
  .nav-lang { display: none; }

  /* Narrow phones: trim the header actions so logo + actions + burger fit the container. */
  @media (max-width: 560px) {
    .header-actions { gap: 10px; }
    .lang-switch { display: none; }
    .btn-donate { padding: 10px 14px; font-size: 12px; gap: 0; }
    .btn-donate svg { display: none; }
    nav.main-nav .nav-lang {
      display: flex;
      gap: 6px;
      align-items: center;
      padding: 12px 0;
      border-top: 1px solid var(--line);
      margin-top: 4px;
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 0.08em;
      color: var(--ink-muted);
    }
    nav.main-nav .nav-lang .active { color: var(--ink); font-weight: 600; }
  }

  /* ─── MOBILE NAV TOGGLE (additive; hidden on desktop) ─────────── */
  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--ink);
  }
  .nav-toggle svg { width: 22px; height: 22px; }

  /* ─── FOOTER ───────────────────────────────────────── */
  footer {
    background: var(--forest);
    color: var(--paper);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(245, 242, 234, 0.05);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(245, 242, 234, 0.1);
    margin-bottom: 32px;
  }
  .footer-brand .logo-text .name { color: var(--paper); font-size: 22px; }
  .footer-brand .logo-text .tagline { color: rgba(245, 242, 234, 0.7); }
  .footer-brand p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(245, 242, 234, 0.8);
    max-width: 340px;
  }
  .footer-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(245, 242, 234, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
  }
  .footer-col a:hover { color: var(--paper); }
  .footer-col p {
    color: rgba(245, 242, 234, 0.8);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    font-family: var(--mono);
  }
  .footer-col p strong { color: var(--paper); font-weight: 500; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(245, 242, 234, 0.7);
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-social {
    display: flex;
    gap: 12px;
  }
  .footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(245, 242, 234, 0.2);
    display: grid;
    place-items: center;
    color: rgba(245, 242, 234, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .footer-social a:hover {
    border-color: var(--forest);
    color: var(--forest);
  }
  .footer-social svg { width: 16px; height: 16px; }

  /* ─── RESPONSIVE (shared chrome only) ───────────────────────── */
  @media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    nav.main-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      padding: 8px var(--gutter) 16px;
      z-index: 89;
    }
    nav.main-nav.is-open { display: flex; }
    nav.main-nav a { padding: 12px 0; width: 100%; }
    .nav-toggle { display: inline-flex; }
    header .container { position: relative; }
  }


/* ===== GLOBAL "LIVE DYNAMIC SYSTEM" (identical across all pages) ===== */
  /* ============== CURSOR FOLLOWER ============== */
  .cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--forest);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, transform 0.05s linear;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0;
  }
  .cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid var(--forest);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), height 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
    mix-blend-mode: difference;
    opacity: 0;
  }
  .cursor-dot.visible, .cursor-ring.visible { opacity: 1; }
  .cursor-dot.hover { width: 4px; height: 4px; }
  .cursor-ring.hover { width: 56px; height: 56px; border-color: var(--paper); }
  @media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

  /* ============== LIVE TICKER IN TOP BAR ============== */
  .top-bar { overflow: hidden; }
  .top-bar .container {
    position: relative;
  }
  .live-ticker {
    position: relative;
    flex: 1;
    overflow: hidden;
    margin-left: 24px;
    margin-right: 24px;
    height: 18px;
  }
  .live-ticker-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    will-change: transform;
  }
  .live-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 237, 227, 0.85);
  }
  .live-ticker-item .check {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--paper);
  }
  .live-ticker-item .check svg { width: 100%; height: 100%; }
  .live-ticker-item .amount {
    color: var(--paper);
    font-weight: 600;
  }
  @keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @media (max-width: 900px) { .live-ticker { display: none; } }

  /* ============== ANIMATED COUNTERS ============== */
  [data-count] {
    display: inline-block;
    font-variant-numeric: tabular-nums;
  }

  /* ============== SCROLL REVEAL ============== */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
  .reveal-stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
  .reveal-stagger.visible > *:nth-child(8) { transition-delay: 560ms; }
  .reveal-stagger.visible > *:nth-child(n+9) { transition-delay: 640ms; }

  /* Reveal — letters splitting */
  .reveal-letters {
    overflow: hidden;
  }
  .reveal-letters .word {
    display: inline-block;
    overflow: hidden;
    line-height: 1;
  }
  .reveal-letters .letter {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  .reveal-letters.visible .letter {
    transform: translateY(0);
  }

  /* ============== MAGNETIC CARDS ============== */
  .magnetic {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  /* ============== ANIMATED PROGRESS BARS ============== */
  .progress-fill, .mini-progress-fill, .mission-progress-fill {
    width: 0 !important;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .progress-fill.animate, .mini-progress-fill.animate, .mission-progress-fill.animate {
    /* width applied via JS data-target */
  }

  /* ============== BACKGROUND MARQUEE TEXT ============== */
  .bg-marquee {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 96px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
  }
  .bg-marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: bg-marquee-scroll 60s linear infinite;
    font-family: var(--display);
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--ink);
    will-change: transform;
  }
  .bg-marquee.dark .bg-marquee-track { color: var(--paper); }
  @keyframes bg-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ============== HERO PARALLAX ============== */
  [data-parallax] {
    will-change: transform;
    transition: transform 0.1s linear;
  }

  /* ============== UPTIME TICKER ============== */
  .uptime-ticker {
    font-variant-numeric: tabular-nums;
  }
  .uptime-ticker .uptime-digit {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* ============== LIVE ACTIVITY FEED (sticky right side) ============== */
  .live-feed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 320px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(15, 42, 32, 0.12);
    z-index: 80;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .live-feed.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .live-feed-header {
    padding: 12px 16px;
    background: var(--forest);
    color: var(--paper);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .live-feed-header .left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .live-feed-close {
    background: transparent;
    border: none;
    color: rgba(240, 237, 227, 0.7);
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s ease;
  }
  .live-feed-close:hover { color: var(--paper); }
  .live-feed-body {
    max-height: 280px;
    overflow-y: auto;
  }
  .live-feed-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.4;
    animation: feed-item-slide-in 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .live-feed-item:last-child { border-bottom: none; }
  .live-feed-item .feed-meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
  }
  .live-feed-item .feed-amount {
    font-weight: 700;
    color: var(--forest);
    font-family: var(--display);
    letter-spacing: -0.02em;
  }
  @keyframes feed-item-slide-in {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  @media (max-width: 900px) { .live-feed { display: none; } }

  /* ============== LINK HOVER ANIMATIONS ============== */
  nav.main-nav a {
    overflow: hidden;
  }
  nav.main-nav a::after {
    transform-origin: left;
    transform: scaleX(0);
    width: 100% !important;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }
  nav.main-nav a:hover::after,
  nav.main-nav a.current::after {
    transform: scaleX(1);
  }

  /* ============== BUTTON SHIMMER ============== */
  .btn-donate, .btn-primary, .btn-give, .form-submit, .donate-cta-btn {
    position: relative;
    overflow: hidden;
  }
  .btn-donate::before, .btn-primary::before, .btn-give::before, .form-submit::before, .donate-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }
  .btn-donate:hover::before, .btn-primary:hover::before, .btn-give:hover::before, .form-submit:hover::before, .donate-cta-btn:hover::before {
    left: 100%;
  }

  /* ============== IMAGE HOVER PARALLAX ============== */
  .image-tilt {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
    will-change: transform;
  }
  .image-tilt > * {
    transform: translateZ(20px);
  }

  /* ============== COUNTDOWN TIMER ============== */
  .countdown-display {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .countdown-num {
    font-variant-numeric: tabular-nums;
    min-width: 1.2em;
    text-align: right;
    display: inline-block;
  }
  .countdown-sep {
    color: currentColor;
    opacity: 0.5;
  }
  .countdown-label {
    font-family: var(--mono);
    font-size: 0.5em;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-left: 2px;
    opacity: 0.7;
  }

  /* ============== PULSE WAVE ON CTA ============== */
  .pulse-wave {
    position: relative;
  }
  .pulse-wave::after {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid var(--forest);
    border-radius: inherit;
    animation: pulse-wave-expand 2.4s ease-out infinite;
    pointer-events: none;
  }
  @keyframes pulse-wave-expand {
    0% {
      transform: scale(1);
      opacity: 0.7;
    }
    100% {
      transform: scale(1.15);
      opacity: 0;
    }
  }

  /* ============== HOVER GRADIENT FOR DARK SECTIONS ============== */
  .hover-glow {
    position: relative;
    overflow: hidden;
  }
  .hover-glow::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 237, 227, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .hover-glow:hover::before {
    opacity: 1;
  }

  /* ============== SCROLL PROGRESS BAR (global) ============== */
  .scroll-progress-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--forest);
    z-index: 200;
    transition: width 0.05s linear;
  }

  /* prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > *, .reveal-letters .letter,
    .live-ticker-track, .bg-marquee-track, .live-feed,
    .pulse-wave::after, .cursor-dot, .cursor-ring {
      animation: none !important;
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
  }
