/* ==========================================================================
   1MAI.FR — CSS-Only Animated Characters v3.0
   Realistic marching protesters with RAISED ARMS holding signs
   Pure CSS art, no SVG, no images, no JS
   v3.0 — Mars 2026
   ========================================================================== */

/* ==========================================================================
   A. Shared Character System
   ========================================================================== */

.css-scene {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    user-select: none;
}
.css-scene--sm { height: 80px; }
.css-scene--md { height: 120px; }
.css-scene--lg { height: 160px; }
.css-scene--banner {
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(192,57,43,0.04) 100%);
    margin: var(--space-8) 0;
    border-top: 1px solid var(--gris-300);
    border-bottom: 1px solid var(--gris-300);
    padding: var(--space-4) 0;
}

/* ==========================================================================
   B. Character 1: Marching Protesters — REALISTIC v3
   Arms RAISED UP holding signs, walking legs, body bounce
   Structure top-to-bottom: sign → raised-arms (V going down) → head → body → legs
   ========================================================================== */

.march {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    animation: marchScroll 22s linear infinite;
}
.march--reverse {
    animation-direction: reverse;
    animation-duration: 28s;
}

@keyframes marchScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* --- Single protester figure --- */
.protester {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    /* Walking bounce */
    animation: protesterWalk 0.55s ease-in-out infinite;
}
.protester:nth-child(2n) { animation-delay: -0.27s; }
.protester:nth-child(3n) { animation-delay: -0.14s; }
.protester:nth-child(5n) { animation-delay: -0.40s; }

@keyframes protesterWalk {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-3px) rotate(0.8deg); }
    50% { transform: translateY(-1px); }
    75% { transform: translateY(-3px) rotate(-0.8deg); }
}

/* --- Sign / placard — at the TOP, held by raised arms --- */
.protester__sign {
    width: 34px;
    height: 20px;
    border-radius: 2px;
    position: relative;
    z-index: 5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    animation: signSway 0.9s ease-in-out infinite alternate;
    /* Sign text lines (decorative) */
    background-image: linear-gradient(transparent 30%, rgba(255,255,255,0.3) 30%, rgba(255,255,255,0.3) 40%, transparent 40%, transparent 55%, rgba(255,255,255,0.3) 55%, rgba(255,255,255,0.3) 65%, transparent 65%);
}

.protester__sign--rouge { background-color: var(--rouge); }
.protester__sign--noir { background-color: var(--noir); }
.protester__sign--or { background-color: var(--or); }
.protester__sign--blanc {
    background-color: var(--blanc);
    border: 1px solid var(--gris-400);
    background-image: linear-gradient(transparent 30%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.1) 40%, transparent 40%, transparent 55%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.1) 65%, transparent 65%);
}

.protester:nth-child(odd) .protester__sign { animation-delay: -0.45s; }

@keyframes signSway {
    0% { transform: rotate(-4deg); }
    100% { transform: rotate(4deg); }
}

/* --- RAISED ARMS — V-shape from sign down to shoulders --- */
/* Two sticks going from the bottom of the sign DOWN to where the shoulders are */
.protester__arms {
    width: 28px;
    height: 22px;
    position: relative;
    z-index: 3;
    margin-top: -2px;
    margin-bottom: -4px;
}
/* Left arm — diagonal going from upper-left down to center-left */
.protester__arms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2px;
    width: 3px;
    height: 24px;
    background: var(--gris-600);
    border-radius: 2px;
    transform: rotate(-22deg);
    transform-origin: top center;
}
/* Right arm — diagonal going from upper-right down to center-right */
.protester__arms::after {
    content: '';
    position: absolute;
    top: 0;
    right: 2px;
    width: 3px;
    height: 24px;
    background: var(--gris-600);
    border-radius: 2px;
    transform: rotate(22deg);
    transform-origin: top center;
}

/* Arm colors match body clothing */
.protester .protester__arms::before,
.protester .protester__arms::after { background: #b83224; }
.protester:nth-child(2n) .protester__arms::before,
.protester:nth-child(2n) .protester__arms::after { background: var(--gris-800); }
.protester:nth-child(3n) .protester__arms::before,
.protester:nth-child(3n) .protester__arms::after { background: #1d4ed8; }
.protester:nth-child(4n) .protester__arms::before,
.protester:nth-child(4n) .protester__arms::after { background: #6b21a8; }
.protester:nth-child(5n) .protester__arms::before,
.protester:nth-child(5n) .protester__arms::after { background: #047857; }
.protester:nth-child(6n) .protester__arms::before,
.protester:nth-child(6n) .protester__arms::after { background: var(--gris-700); }
.protester:nth-child(7n) .protester__arms::before,
.protester:nth-child(7n) .protester__arms::after { background: var(--rouge-dark); }
.protester--rouge .protester__arms::before,
.protester--rouge .protester__arms::after { background: var(--rouge-dark); }
.protester--dark .protester__arms::before,
.protester--dark .protester__arms::after { background: var(--noir); }

/* --- Head — below the arms --- */
.protester__head {
    width: 13px;
    height: 14px;
    border-radius: 50% 50% 45% 45%;
    position: relative;
    z-index: 4;
    margin-top: -2px;
}

/* Hair tuft on some */
.protester:nth-child(3n) .protester__head::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 2px;
    width: 9px;
    height: 6px;
    background: inherit;
    border-radius: 50% 50% 0 0;
    filter: brightness(0.75);
}

/* Skin tones */
.protester .protester__head { background: #c8956c; }
.protester:nth-child(2n) .protester__head { background: #e8c4a0; }
.protester:nth-child(3n) .protester__head { background: #a0704f; }
.protester:nth-child(5n) .protester__head { background: #d4a880; }
.protester:nth-child(7n) .protester__head { background: #8b6040; }

/* Neck */
.protester__head::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 4px;
    background: inherit;
    border-radius: 0 0 2px 2px;
}

/* --- Body / Torso --- */
.protester__body {
    width: 14px;
    height: 18px;
    border-radius: 4px 4px 2px 2px;
    position: relative;
    z-index: 2;
    margin-top: 1px;
}

/* Clothing colors */
.protester .protester__body { background: var(--rouge); }
.protester:nth-child(2n) .protester__body { background: var(--noir); }
.protester:nth-child(3n) .protester__body { background: #2563eb; }
.protester:nth-child(4n) .protester__body { background: #7c3aed; }
.protester:nth-child(5n) .protester__body { background: #059669; }
.protester:nth-child(6n) .protester__body { background: var(--gris-800); }
.protester:nth-child(7n) .protester__body { background: var(--rouge-dark); }

/* Color variants */
.protester--rouge .protester__body { background: var(--rouge); }
.protester--dark .protester__body { background: var(--noir-light); }
.protester--dark .protester__head { background: #8b6040 !important; }

/* No more pseudo-element arms on body — arms are now a separate element */
.protester__body::before,
.protester__body::after { display: none; }

/* --- Legs — with walking animation --- */
.protester__legs {
    display: flex;
    gap: 3px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.protester__leg {
    width: 4px;
    height: 16px;
    border-radius: 2px 2px 1px 1px;
    transform-origin: top center;
    position: relative;
}

/* Leg / pants colors */
.protester .protester__leg { background: var(--gris-800); }
.protester:nth-child(2n) .protester__leg { background: #1e3a5f; }
.protester:nth-child(3n) .protester__leg { background: var(--gris-700); }
.protester:nth-child(4n) .protester__leg { background: #374151; }
.protester:nth-child(5n) .protester__leg { background: #1f2937; }

/* Shoe / foot */
.protester__leg::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -1px;
    width: 7px;
    height: 4px;
    background: var(--gris-900);
    border-radius: 2px 4px 2px 2px;
}

/* Left leg walk cycle */
.protester__leg--l {
    animation: legSwingL 0.55s ease-in-out infinite;
}
/* Right leg walk cycle — opposite phase */
.protester__leg--r {
    animation: legSwingR 0.55s ease-in-out infinite;
}

/* Stagger timing per protester for variety */
.protester:nth-child(2n) .protester__leg--l,
.protester:nth-child(2n) .protester__leg--r { animation-delay: -0.27s; }
.protester:nth-child(3n) .protester__leg--l,
.protester:nth-child(3n) .protester__leg--r { animation-delay: -0.14s; }
.protester:nth-child(5n) .protester__leg--l,
.protester:nth-child(5n) .protester__leg--r { animation-delay: -0.40s; }

@keyframes legSwingL {
    0%   { transform: rotate(-20deg) scaleY(0.96); }
    25%  { transform: rotate(-5deg) scaleY(1); }
    50%  { transform: rotate(20deg) scaleY(0.96); }
    75%  { transform: rotate(5deg) scaleY(1); }
    100% { transform: rotate(-20deg) scaleY(0.96); }
}
@keyframes legSwingR {
    0%   { transform: rotate(20deg) scaleY(0.96); }
    25%  { transform: rotate(5deg) scaleY(1); }
    50%  { transform: rotate(-20deg) scaleY(0.96); }
    75%  { transform: rotate(-5deg) scaleY(1); }
    100% { transform: rotate(20deg) scaleY(0.96); }
}

/* --- Height variants --- */
.protester--short .protester__head { width: 11px; height: 12px; }
.protester--short .protester__body { width: 11px; height: 14px; }
.protester--short .protester__leg { height: 12px; }
.protester--short .protester__sign { width: 26px; height: 16px; }
.protester--short .protester__arms { width: 22px; height: 18px; }
.protester--short .protester__arms::before { height: 20px; }
.protester--short .protester__arms::after { height: 20px; }

.protester--tall .protester__head { width: 14px; height: 15px; }
.protester--tall .protester__body { width: 16px; height: 22px; }
.protester--tall .protester__leg { height: 20px; width: 5px; }
.protester--tall .protester__sign { width: 38px; height: 22px; }
.protester--tall .protester__arms { width: 32px; height: 26px; }
.protester--tall .protester__arms::before { height: 28px; }
.protester--tall .protester__arms::after { height: 28px; }


/* ==========================================================================
   C. Character 2: Megaphone Speaker — ENHANCED
   ========================================================================== */

.megaphone-speaker {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 100px;
    margin-right: 10px;
}

.megaphone-speaker__figure {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Head */
.megaphone-speaker__head {
    width: 18px;
    height: 19px;
    border-radius: 50% 50% 45% 45%;
    background: #d4a880;
    position: relative;
    z-index: 2;
    margin-bottom: 2px;
}
/* Hair */
.megaphone-speaker__head::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 1px;
    width: 16px;
    height: 10px;
    background: var(--noir);
    border-radius: 50% 50% 0 0;
    z-index: -1;
}
/* Neck */
.megaphone-speaker__head::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 5px;
    background: #d4a880;
    border-radius: 0 0 2px 2px;
}

/* Megaphone */
.megaphone-speaker__mega {
    position: absolute;
    top: 7px;
    left: 18px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 22px solid var(--gris-700);
    z-index: 3;
    animation: megaphoneShake 0.3s ease-in-out infinite alternate;
}
.megaphone-speaker__mega::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -22px;
    width: 8px;
    height: 10px;
    background: var(--gris-600);
    border-radius: 2px;
}
.megaphone-speaker__mega::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 0;
    width: 3px;
    height: 18px;
    background: var(--rouge);
    border-radius: 0 2px 2px 0;
}

@keyframes megaphoneShake {
    0% { transform: rotate(-2deg) scale(1); }
    100% { transform: rotate(2deg) scale(1.03); }
}

/* Sound waves */
.megaphone-speaker__waves {
    position: absolute;
    top: -2px;
    left: 44px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.megaphone-speaker__wave {
    width: 3px;
    border-radius: 50%;
    border: 2px solid var(--rouge);
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    opacity: 0;
    animation: soundWave 1.2s ease-out infinite;
}
.megaphone-speaker__wave:nth-child(1) { height: 14px; animation-delay: 0s; }
.megaphone-speaker__wave:nth-child(2) { height: 20px; animation-delay: 0.3s; }
.megaphone-speaker__wave:nth-child(3) { height: 26px; animation-delay: 0.6s; }

@keyframes soundWave {
    0% { opacity: 0.9; transform: scaleX(0.6); }
    60% { opacity: 0.4; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(1.3); }
}

/* Body */
.megaphone-speaker__body {
    width: 16px;
    height: 26px;
    background: var(--rouge);
    border-radius: 4px 4px 2px 2px;
    position: relative;
    margin-top: 1px;
}
/* Arm holding megaphone */
.megaphone-speaker__body::before {
    content: '';
    position: absolute;
    top: 2px;
    right: -3px;
    width: 14px;
    height: 4px;
    background: var(--rouge-dark);
    border-radius: 2px;
    transform: rotate(-25deg);
    transform-origin: left center;
}
/* Other arm — fist pump */
.megaphone-speaker__body::after {
    content: '';
    position: absolute;
    top: 2px;
    left: -3px;
    width: 4px;
    height: 16px;
    background: var(--rouge-dark);
    border-radius: 2px;
    transform-origin: top center;
    animation: armPump 0.8s ease-in-out infinite alternate;
}

@keyframes armPump {
    0% { transform: rotate(30deg); }
    100% { transform: rotate(-20deg); }
}

/* Legs */
.megaphone-speaker__legs {
    display: flex;
    gap: 4px;
}
.megaphone-speaker__leg {
    width: 5px;
    height: 20px;
    background: var(--noir);
    border-radius: 2px 2px 1px 1px;
    position: relative;
}
.megaphone-speaker__leg::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -1px;
    width: 7px;
    height: 3px;
    background: var(--gris-900);
    border-radius: 2px 3px 2px 2px;
}

/* Particles */
.megaphone-speaker__particles {
    position: absolute;
    top: -10px;
    left: 24px;
}
.megaphone-speaker__particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--or);
    border-radius: 50%;
    opacity: 0;
    animation: particleBurst 1.5s ease-out infinite;
}
.megaphone-speaker__particle:nth-child(1) { animation-delay: 0s; top: 0; left: 22px; }
.megaphone-speaker__particle:nth-child(2) { animation-delay: 0.4s; top: -8px; left: 30px; }
.megaphone-speaker__particle:nth-child(3) { animation-delay: 0.8s; top: 8px; left: 34px; }

@keyframes particleBurst {
    0% { opacity: 0.8; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(12px, -8px) scale(0.3); }
}


/* ==========================================================================
   D. Character 3: Speaker at Podium with Crowd
   ========================================================================== */

.podium-scene {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: 140px;
    justify-content: flex-end;
}

.podium-speaker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.podium-speaker__head {
    width: 16px;
    height: 17px;
    border-radius: 50% 50% 45% 45%;
    background: #c8956c;
    margin-bottom: 2px;
    position: relative;
}
.podium-speaker__head::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 1px;
    width: 14px;
    height: 9px;
    background: var(--gris-800);
    border-radius: 50% 50% 0 0;
}
.podium-speaker__head::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 4px;
    background: #c8956c;
    border-radius: 0 0 2px 2px;
}

.podium-speaker__torso {
    width: 16px;
    height: 24px;
    background: var(--noir);
    border-radius: 4px 4px 2px 2px;
    position: relative;
    margin-top: 1px;
}
.podium-speaker__torso::before {
    content: '';
    position: absolute;
    top: 1px;
    right: -3px;
    width: 4px;
    height: 22px;
    background: var(--rouge-dark);
    border-radius: 2px;
    transform-origin: top center;
    animation: fistRaise 2s ease-in-out infinite;
}
.podium-speaker__torso::after {
    content: '';
    position: absolute;
    top: -18px;
    right: -7px;
    width: 8px;
    height: 8px;
    background: #c8956c;
    border-radius: 3px;
    animation: fistRaise 2s ease-in-out infinite;
}

@keyframes fistRaise {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    30%, 70% { transform: translateY(-8px) rotate(-5deg); }
}

.podium-speaker__arm-l {
    position: absolute;
    top: 4px;
    left: -3px;
    width: 4px;
    height: 14px;
    background: var(--rouge-dark);
    border-radius: 2px;
    transform-origin: top center;
    transform: rotate(30deg);
}

.podium-speaker__podium {
    width: 40px;
    height: 24px;
    background: var(--gris-800);
    border-radius: 4px 4px 0 0;
    position: relative;
    margin-top: -2px;
}
.podium-speaker__podium::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 3px;
    background: var(--rouge);
    border-radius: 1px;
}
.podium-speaker__podium::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 60%;
    width: 2px;
    height: 12px;
    background: var(--gris-600);
    border-radius: 1px;
}

/* --- Crowd row --- */
.crowd {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-top: 4px;
    z-index: 1;
}

.crowd__person {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.55;
    position: relative;
}
.crowd__person:nth-child(odd) { opacity: 0.4; }
.crowd__person:nth-child(3n+1) { opacity: 0.6; }

.crowd__head {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-bottom: 1px;
}
.crowd__person .crowd__head { background: #c8956c; }
.crowd__person:nth-child(2n) .crowd__head { background: #a0704f; }
.crowd__person:nth-child(3n) .crowd__head { background: #e8c4a0; }
.crowd__person:nth-child(5n) .crowd__head { background: #8b6040; }
.crowd__person:nth-child(7n) .crowd__head { background: #d4a880; }

.crowd__body {
    width: 6px;
    height: 10px;
    border-radius: 2px 2px 0 0;
}
.crowd__person .crowd__body { background: var(--gris-700); }
.crowd__person:nth-child(2n) .crowd__body { background: var(--rouge-dark); }
.crowd__person:nth-child(3n) .crowd__body { background: #2563eb; }
.crowd__person:nth-child(4n) .crowd__body { background: var(--noir); }
.crowd__person:nth-child(5n) .crowd__body { background: #7c3aed; }

.crowd__person {
    animation: crowdSway 2s ease-in-out infinite alternate;
}
.crowd__person:nth-child(2n) { animation-delay: -0.5s; }
.crowd__person:nth-child(3n) { animation-delay: -1s; }
.crowd__person:nth-child(5n) { animation-delay: -1.5s; }

@keyframes crowdSway {
    0% { transform: translateX(-1.5px) translateY(0); }
    50% { transform: translateX(0) translateY(-1px); }
    100% { transform: translateX(1.5px) translateY(0); }
}

.crowd__person--hand::after {
    content: '';
    display: block;
    width: 3px;
    height: 10px;
    background: inherit;
    border-radius: 2px;
    position: relative;
    top: -18px;
    left: 5px;
    transform-origin: bottom center;
    animation: handRaise 1.5s ease-in-out infinite alternate;
}
.crowd__person--hand .crowd__body { position: relative; }
.crowd__person--hand::after { background: var(--gris-600); }
.crowd__person--hand:nth-child(2n)::after { background: var(--rouge-dark); }
.crowd__person--hand:nth-child(3n)::after { background: #1d4ed8; }

@keyframes handRaise {
    0% { transform: rotate(0deg) translateY(0); }
    100% { transform: rotate(-15deg) translateY(-4px); }
}

.crowd__person--sm .crowd__head { width: 6px; height: 6px; }
.crowd__person--sm .crowd__body { width: 5px; height: 7px; }
.crowd__person--lg .crowd__head { width: 8px; height: 8px; }
.crowd__person--lg .crowd__body { width: 7px; height: 12px; }


/* ==========================================================================
   E. Composition Scenes
   ========================================================================== */

.css-scene--protest {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    padding: 0 var(--space-4);
}

/* Footer — ghost/translucent marchers */
.css-scene--footer {
    height: 75px;
    margin-bottom: var(--space-4);
    opacity: 0.55;
}
.css-scene--footer .march {
    animation-duration: 32s;
}
.css-scene--footer .protester__head { background: rgba(255,255,255,0.5) !important; }
.css-scene--footer .protester__head::before { background: rgba(255,255,255,0.3) !important; }
.css-scene--footer .protester__head::after { background: rgba(255,255,255,0.5) !important; }
.css-scene--footer .protester__body { background: rgba(255,255,255,0.35) !important; }
.css-scene--footer .protester__arms::before,
.css-scene--footer .protester__arms::after { background: rgba(255,255,255,0.3) !important; }
.css-scene--footer .protester__leg { background: rgba(255,255,255,0.25) !important; }
.css-scene--footer .protester__leg::after { background: rgba(255,255,255,0.2) !important; }
.css-scene--footer .protester__sign--rouge { background-color: rgba(231,76,60,0.45); }
.css-scene--footer .protester__sign--or { background-color: rgba(212,168,67,0.35); }
.css-scene--footer .protester__sign--blanc {
    background-color: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.15);
}

/* Ground line */
.css-scene--ground::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gris-300), transparent);
}


/* ==========================================================================
   F. Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .march,
    .protester,
    .protester__sign,
    .protester__leg--l,
    .protester__leg--r,
    .megaphone-speaker__mega,
    .megaphone-speaker__wave,
    .megaphone-speaker__particle,
    .megaphone-speaker__body::after,
    .podium-speaker__torso::before,
    .podium-speaker__torso::after,
    .crowd__person,
    .crowd__person--hand::after {
        animation: none !important;
    }
}

/* ==========================================================================
   G. Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .css-scene--banner { height: 100px; margin: var(--space-6) 0; }
    .css-scene--lg { height: 130px; }
    .css-scene--protest { gap: 12px; }
    .megaphone-speaker { transform: scale(0.85); }
    .podium-scene { transform: scale(0.85); height: 120px; }
}

@media (max-width: 480px) {
    .css-scene--banner { height: 80px; margin: var(--space-4) 0; }
    .css-scene--lg { height: 100px; }
    .megaphone-speaker { transform: scale(0.7); }
    .podium-scene { transform: scale(0.7); height: 95px; }
    .march { gap: 4px; }
    .protester__sign { width: 24px; height: 16px; }
    .protester__arms { width: 20px; height: 16px; }
    .protester__arms::before { height: 18px; }
    .protester__arms::after { height: 18px; }
}
