html {
    scrollbar-width: none;
    max-width: 100%;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
}

video {
    border: 5px solid #1e3799;
    border-radius: 10px;
    background-color: #000;
}

.home-kicker,
.section-title-small {
    font-size: 25px;
}

.home-vote-button,
.vote-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background: #1e3799;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(30, 55, 153, .22);
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.home-vote-cta {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 18px;
    padding-top: 112px;
}

.home-click-hint {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    min-height: 40px;
    margin-bottom: 0;
    padding: 10px 26px;
    border: 2px solid rgba(30, 55, 153, .22);
    border-radius: 6px;
    background: rgba(255, 255, 255, .94);
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .14);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.home-click-hint::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: -70px;
    width: 46px;
    height: 56px;
    margin: 0;
    color: #1e3799;
    background: currentColor;
    clip-path: polygon(50% 100%, 0 70%, 30% 70%, 30% 0, 70% 0, 70% 70%, 100% 70%);
    transform: translateX(-50%);
    animation: clickHintNudge 1.1s ease-in-out infinite;
    z-index: 2;
}

.home-vote-button {
    position: relative;
    min-height: 48px;
    padding: 15px 54px 15px 24px;
    border: 2px solid #102a8f;
    border-bottom-width: 5px;
    background: linear-gradient(180deg, #2946c7 0%, #1e3799 100%);
    font-size: 14px;
    letter-spacing: .3px;
    cursor: pointer;
    overflow: hidden;
    animation: homeVotePulse 1.9s ease-in-out infinite;
}

.home-vote-button::after {
    content: "→";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-52%);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.home-vote-button::before {
    content: "";
    position: absolute;
    inset: 2px 2px auto;
    height: 42%;
    border-radius: 4px 4px 10px 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.home-simulation-note {
    max-width: 620px;
    margin: 14px 0 0;
    padding: 14px 18px;
    border-left: 5px solid #1e3799;
    border-radius: 6px;
    background: rgba(255, 255, 255, .92);
    color: #171b24;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    text-align: center;
    box-shadow: 0 16px 36px rgba(17, 24, 39, .16);
}

#home,
#home.fp-section,
#home .fp-tableCell,
#home .fp-scrollable,
#home .iScrollVerticalScrollbar {
    overflow: hidden !important;
}

#home .iScrollVerticalScrollbar {
    display: none !important;
}

.home-simulation-note span {
    display: block;
}

.home-simulation-note span + span {
    margin-top: 8px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.home-vote-button:hover,
.home-vote-button:focus,
.vote-action:hover,
.vote-action:focus {
    color: #fff;
    background: #111;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.home-vote-button:hover,
.home-vote-button:focus {
    border-color: #080808;
}

.home-vote-button:active {
    transform: translateY(1px);
    border-bottom-width: 2px;
}

@keyframes homeVotePulse {
    0%,
    100% {
        box-shadow: 0 14px 30px rgba(30, 55, 153, .22), 0 0 0 0 rgba(30, 55, 153, .34);
    }

    50% {
        box-shadow: 0 18px 38px rgba(30, 55, 153, .28), 0 0 0 9px rgba(30, 55, 153, 0);
    }
}

@keyframes clickHintNudge {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-vote-button,
    .home-click-hint::before {
        animation: none;
    }
}

.synopsis-quote {
    display: flex;
    align-items: center;
}

.document-viewer {
    height: inherit;
}

.document-viewer iframe {
    width: 100%;
    height: 90%;
    border: 0;
}

.donate-note {
    font-size: 20px;
}

.fs-menu .inner-nav ul li:nth-child(1) {
    animation-delay: .2s;
}

.fs-menu .inner-nav ul li:nth-child(2) {
    animation-delay: .35s;
}

.fs-menu .inner-nav ul li:nth-child(3) {
    animation-delay: .45s;
}

.fs-menu .inner-nav ul li:nth-child(n+4) {
    animation-delay: .55s;
}

.fs-menu {
    background: #fff;
}

.fs-menu-trigger,
.fs-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fs-menu-trigger::before {
    content: "☰";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 1;
}

.fs-menu-close::before {
    content: "×";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
}

.fs-menu.active .inner-nav ul li {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
}

.fs-menu .inner-nav ul li a,
.fs-menu .inner-nav ul li a:visited,
.fs-menu .inner-nav ul li a:focus {
    color: #111;
    opacity: 1;
}

.fs-menu .inner-nav ul li a:hover {
    color: #1e3799;
    opacity: 1;
}

.fs-menu-close,
.fs-menu-close:visited,
.fs-menu-close:focus {
    color: #111;
}

.fs-menu-close:hover {
    color: #1e3799;
}

#donate .syfRowHolder {
    flex-wrap: wrap;
}

#donate .syfCol .overbgBTxt p {
    position: static;
}

.vote-page {
    min-height: 100vh;
    background: #f6f7fb;
    color: #111;
}

.vote-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px 0;
}

.vote-layout {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(280px, .9fr);
    gap: 44px;
    align-items: center;
}

.vote-card {
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 22px 60px rgba(18, 32, 82, .12);
}

.vote-chart {
    height: 390px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: end;
    padding: 28px 24px 18px;
    border-radius: 6px;
    background:
        linear-gradient(to top, rgba(30, 55, 153, .08) 1px, transparent 1px) 0 0 / 100% 25%,
        #fbfcff;
}

.vote-bar-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    height: 100%;
}

.vote-bar {
    width: 100%;
    min-height: 28px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, #4f7cff 0%, #1e3799 100%);
    transition: height .9s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

.vote-bar-wrap:nth-child(2) .vote-bar {
    background: linear-gradient(180deg, #2fd1a0 0%, #12765c 100%);
}

.vote-bar-wrap:nth-child(3) .vote-bar {
    background: linear-gradient(180deg, #ffcb52 0%, #b47700 100%);
}

.vote-bar-wrap:nth-child(4) .vote-bar {
    background: linear-gradient(180deg, #ff6b6b 0%, #a61f3d 100%);
}

.vote-bar-wrap:nth-child(5) .vote-bar {
    background: linear-gradient(180deg, #8f7cff 0%, #47329c 100%);
}

.vote-bar-label {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.vote-instructions {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: center;
    color: #172033;
}

.vote-instructions h2 {
    margin: 0 0 18px;
    color: #1e3799;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
}

.vote-instructions ol {
    margin: 0;
    padding-left: 22px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.vote-instructions ul {
    margin: 12px 0 18px;
    padding-left: 18px;
    font-size: 16px;
    font-weight: 600;
}

.vote-instructions li + li {
    margin-top: 8px;
}

.vote-copy h1 {
    margin: 0 0 24px;
    font-size: 44px;
    line-height: 1.08;
    color: #111;
}

.vote-copy p {
    margin: 0;
    font-size: 22px;
    line-height: 1.55;
    color: #30333a;
}

.vote-action-row {
    margin-top: 40px;
}

.vote-action {
    width: 100%;
    min-height: 66px;
    padding: 18px 28px;
    font-size: 20px;
    letter-spacing: .5px;
}

.auth-panel {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(17, 17, 17, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(18, 32, 82, .1);
}

.auth-status,
.vote-session {
    margin: 16px 0 0;
    color: #39404d;
    font-size: 15px;
    line-height: 1.45;
}

.vote-session {
    margin: 0 0 16px;
    font-weight: 700;
}

.vote-logout {
    margin-top: 28px;
}

.data-policy-note {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(30, 55, 153, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    color: #2f3746;
    box-shadow: 0 14px 32px rgba(18, 32, 82, .08);
}

.data-policy-note h2 {
    margin: 0 0 10px;
    color: #1e3799;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .8px;
    text-align: left;
}

.data-policy-note p {
    margin: 0;
    color: #364052;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.data-policy-note p + p {
    margin-top: 8px;
}

.vote-back {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 3;
    color: #111;
    font-weight: 700;
}

.vote-back:hover,
.vote-back:focus {
    color: #1e3799;
    text-decoration: none;
}

.ballot-page {
    min-height: 100vh;
    padding: 72px 0 46px;
    background: #edf0f4;
}

.ballot-sheet {
    position: relative;
    overflow: visible;
    padding: 28px 30px 36px;
    border: 1px solid #c2c7ce;
    background: #d5d8dc;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .16);
}

.ballot-sheet::before {
    content: "MUESTRA NO VÁLIDA PARA VOTAR";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(0, 0, 0, .12);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    transform: rotate(-18deg);
    pointer-events: none;
}

.ballot-header,
.ballot-warning,
.ballot-status,
.ballot-grid {
    position: relative;
    z-index: 1;
}

.ballot-header {
    display: grid;
    grid-template-columns: 190px 1fr 190px;
    gap: 24px;
    align-items: center;
    margin-bottom: 18px;
}

.ballot-brand,
.ballot-code {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ballot-seal {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 2px solid #222;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
}

.ballot-brand p,
.ballot-code span {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
    color: #25272d;
}

.ballot-brand span {
    font-weight: 400;
}

.ballot-title {
    text-align: center;
    text-transform: uppercase;
}

.ballot-title p,
.ballot-title span {
    margin: 0;
    font-size: 22px;
    color: #20232a;
}

.ballot-title h1 {
    margin: 4px 0;
    font-size: 32px;
    line-height: 1.12;
    color: #20232a;
}

.ballot-code {
    justify-content: flex-end;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
}

.barcode {
    height: 32px;
    background: repeating-linear-gradient(90deg, #111 0 2px, transparent 2px 5px, #111 5px 7px, transparent 7px 10px);
}

.ballot-code span {
    text-align: center;
    font-size: 11px;
}

.ballot-warning {
    margin: 10px auto 18px;
    max-width: 850px;
    padding: 12px 18px;
    border: 2px solid #111;
    background: #fff200;
    color: #f32128;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.08;
    text-align: center;
    text-transform: uppercase;
}

.ballot-status {
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .96);
    font-weight: 700;
    z-index: 30;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
}

.ballot-status-bottom {
    position: relative;
    top: auto;
    margin: 24px 0 0;
}

.ballot-status-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.vote-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    justify-content: center;
    color: #303744;
    font-size: 13px;
    font-weight: 700;
}

.vote-legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
}

.vote-legend strong {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 4px;
    background: #fff;
    font-size: 17px;
    line-height: 1;
}

.legend-positive {
    color: #0f9d58;
}

.legend-negative {
    color: #c61f32;
}

.ballot-status p {
    flex: 1 1 260px;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #39404d;
}

.ballot-submit {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 0;
    border-radius: 5px;
    background: #111;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.ballot-submit:hover,
.ballot-submit:focus {
    background: #1e3799;
}

.ballot-submit:disabled,
.vote-box:disabled {
    cursor: not-allowed;
    opacity: .7;
}

.vote-thanks {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    padding: 22px 18px;
    border: 2px solid #0f9d58;
    border-radius: 8px;
    background: #f0fff7;
    color: #123a26;
    text-align: center;
    box-shadow: 0 18px 38px rgba(15, 157, 88, .16);
}

.vote-thanks h2 {
    margin: 0 0 8px;
    color: #0f6d41;
    font-size: 26px;
    line-height: 1.2;
}

.vote-thanks p {
    margin: 0;
    color: #1f4331;
    font-size: 16px;
    line-height: 1.45;
}

.ballot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    gap: 22px;
}

.candidate-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    border: 1px solid #9aa0a6;
    background: rgba(255, 255, 255, .92);
    padding: 8px;
}

.candidate-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    color: #25272d;
}

.candidate-roles-single {
    grid-template-columns: 1fr;
}

.candidate-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 8px 0;
}

.candidate-photos span {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    border-radius: 4px;
    background: linear-gradient(135deg, #c9d6e7, #f2f4f8);
    color: #1d2635;
    font-size: 24px;
    font-weight: 800;
}

.candidate-photos-single {
    grid-template-columns: 1fr;
}

.candidate-photos-single img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 4px;
    background: #e8edf4;
}

.candidate-ticket {
    margin: 0;
}

.candidate-ticket-image {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    display: block;
    object-fit: contain;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
}

.candidate-card h2 {
    min-height: 52px;
    margin: 0;
    color: #20232a;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.candidate-card p {
    margin: 4px 0 8px;
    color: #555b66;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}

.candidate-party {
    margin-top: auto;
    padding: 9px 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.party-blue {
    background: #1e61b6;
}

.party-green {
    background: #0f9d58;
}

.party-black {
    background: #151515;
}

.party-orange {
    background: #e5801d;
}

.party-yellow {
    background: #dbb300;
    color: #171717;
}

.party-red {
    background: #ef3d4f;
}

.candidate-votes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.vote-box {
    position: relative;
    min-height: 48px;
    border: 3px solid currentColor;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.vote-positive {
    color: #0f9d58;
}

.vote-negative {
    color: #c61f32;
}

.vote-box span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    opacity: 1;
    transform: scale(1);
    transition: opacity .15s ease, transform .15s ease;
}

.candidate-card.has-positive {
    box-shadow: 0 0 0 3px rgba(15, 157, 88, .2);
}

.candidate-card.has-negative {
    box-shadow: 0 0 0 3px rgba(198, 31, 50, .2);
}

.blank-vote-card {
    flex: 1;
    display: grid;
    place-items: center;
    min-height: 210px;
    background: #fff;
    color: #111;
    font-size: 34px;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .showcase .section {
        min-height: auto;
    }

    .document-viewer {
        height: 70vh;
        min-height: 520px;
    }
}

@media (max-width: 767px) {
    .showcase,
    .showcase .section,
    #home {
        max-width: 100%;
        overflow-x: hidden;
    }

    #home,
    #home.fp-section,
    #home .fp-tableCell,
    #home .fp-scrollable {
        height: auto !important;
        min-height: 100svh;
        overflow: visible !important;
    }

    body {
        font-size: 15px;
        line-height: 1.65;
    }

    #home {
        display: block;
        padding: 44px 0 64px;
    }

    #home .hero-caption.caption-height-center {
        top: auto !important;
    }

    #home .hero-caption.caption-right {
        position: relative !important;
        width: auto !important;
        max-width: none !important;
        left: auto !important;
        right: auto !important;
        margin: 32px 24px 0;
        padding: 0;
        text-align: center;
    }

    .home-kicker {
        padding: 0 18px;
        line-height: 1.35;
    }

    .home-vote-button {
        width: 100%;
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 22px;
        padding: 13px 44px 13px 16px;
        font-size: 13px;
        line-height: 1.25;
    }

    .home-vote-cta {
        width: 100%;
        max-width: 430px;
        margin-top: 22px;
        padding-top: 118px;
    }

    .home-click-hint {
        width: auto;
        min-width: 210px;
        padding: 9px 18px;
        border-color: rgba(30, 55, 153, .22);
        background: rgba(255, 255, 255, .94);
        color: #111827;
        font-size: 13px;
    }

    .home-click-hint::before {
        bottom: -76px;
        width: 44px;
        height: 60px;
    }

    .home-simulation-note {
        max-width: 100%;
        width: 100%;
        margin-top: 16px;
        padding: 14px 16px;
        border-left-width: 4px;
        font-size: 13px;
        line-height: 1.5;
        box-shadow: 0 12px 28px rgba(17, 24, 39, .12);
    }

    .home-simulation-note span + span {
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.42;
    }

    .hero-heading {
        letter-spacing: 0;
    }

    .showcase .section {
        padding: 56px 0;
    }

    .showcase .section .cell-vertical-container,
    .showcase .section .cell-vertical-container .content {
        display: block;
        height: auto;
    }

    #introduction .mt-25 {
        margin: 20px 0 0 !important;
    }

    #sinopsis .row,
    #explain .row {
        row-gap: 24px;
    }

    .synopsis-quote {
        margin-top: 16px;
    }

    .document-viewer {
        height: 72vh;
        min-height: 480px;
    }

    .document-viewer iframe {
        height: 100%;
    }

    #donate .syfRowHolder {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #donate .syfRowHolder > .col {
        max-width: none;
        padding: 0;
    }

    #donate .syfCol .descHolder {
        margin-top: 24px;
    }

    #donate .syfCol .icnWrap {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-left: auto;
        margin-right: auto;
    }

    #donate .syfCol .overbgBTxt {
        transform: none;
    }

    #donate .syfCol .overbgBTxt p {
        opacity: 1;
        visibility: visible;
    }

    #donate .syfCol .overbgBTxt img {
        max-height: 260px;
        width: auto;
    }

    .donate-note {
        font-size: 17px;
        line-height: 1.7;
    }

}

@media (max-width: 900px) {
    .ballot-status {
        position: relative;
        top: auto;
    }

    .vote-hero {
        align-items: flex-start;
        padding: 88px 0 48px;
    }

    .vote-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vote-card {
        padding: 22px;
    }

    .vote-chart {
        height: 320px;
        gap: 12px;
        padding: 22px 16px 16px;
    }

    .vote-instructions {
        min-height: auto;
        padding: 4px 0;
    }

    .vote-instructions h2 {
        margin-bottom: 16px;
        font-size: 24px;
        letter-spacing: 3px;
    }

    .vote-instructions ol {
        padding-left: 18px;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.65;
    }

    .vote-instructions ul {
        margin: 12px 0 20px;
        padding-left: 16px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.65;
    }

    .vote-instructions li + li {
        margin-top: 10px;
    }

    .vote-copy h1 {
        font-size: 34px;
    }

    .vote-copy p {
        font-size: 19px;
    }

    .ballot-page {
        padding-top: 78px;
    }

    .ballot-sheet {
        padding: 20px 16px 28px;
    }

    .ballot-header {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }

    .ballot-brand,
    .ballot-code {
        justify-content: center;
    }

    .ballot-code {
        align-items: center;
    }

    .barcode {
        width: 170px;
    }

    .ballot-title h1 {
        font-size: 25px;
    }

    .ballot-title p,
    .ballot-title span {
        font-size: 17px;
    }

    .ballot-warning {
        font-size: 22px;
    }

    .ballot-grid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        gap: 16px;
    }

    .ballot-sheet::before {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    #home .hero-caption.caption-height-center {
        top: auto !important;
    }

    #home .hero-caption.caption-right {
        left: auto !important;
        right: auto !important;
        margin-left: 20px;
        margin-right: 20px;
    }

    #home .hero-caption .hero-heading.ls-3 {
        font-size: 34px;
        line-height: 1.12;
    }

    #home .hero-caption h1.hero-heading {
        font-size: 40px;
        line-height: 1.1;
    }

    #home .hero-text {
        margin-top: 20px;
        font-size: 17px !important;
        line-height: 1.55;
    }

    .home-kicker {
        font-size: 24px;
        letter-spacing: 5px;
    }

    .home-vote-button {
        max-width: 100%;
        min-height: 52px;
        padding: 11px 40px 11px 13px;
        font-size: 12px;
    }

    .home-vote-cta {
        margin-top: 24px;
        padding-top: 112px;
    }

    .home-vote-button::after {
        right: 14px;
        font-size: 21px;
    }

    .home-simulation-note {
        margin-top: 14px;
        padding: 12px 13px;
        font-size: 11px;
        line-height: 1.45;
    }

    .home-simulation-note span + span {
        font-size: 10px;
        line-height: 1.4;
    }

    .vote-card {
        padding: 18px;
        border-radius: 8px;
        box-shadow: 0 12px 32px rgba(18, 32, 82, .1);
    }

    .vote-layout {
        gap: 22px;
    }

    .vote-copy h1 {
        margin-bottom: 16px;
        font-size: 31px;
        line-height: 1.16;
        letter-spacing: 2px;
    }

    .vote-copy p {
        font-size: 16px;
        line-height: 1.55;
    }

    .vote-session {
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.45;
    }

    .vote-action-row {
        margin-top: 26px;
    }

    .data-policy-note {
        padding: 14px 15px;
    }

    .data-policy-note h2 {
        font-size: 15px;
        text-align: center;
    }

    .data-policy-note p {
        font-size: 12px;
        line-height: 1.45;
        text-align: center;
    }

    .vote-instructions h2 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .vote-instructions ol {
        font-size: 14px;
        line-height: 1.6;
    }

    .vote-instructions ul {
        font-size: 13px;
        line-height: 1.6;
    }

    .vote-chart {
        height: 270px;
        gap: 8px;
    }

    .vote-bar-label {
        font-size: 10px;
    }

    .vote-copy h1 {
        font-size: 29px;
    }

    .vote-copy p {
        font-size: 17px;
    }

    .vote-action {
        min-height: 58px;
        font-size: 17px;
    }

    .ballot-grid {
        grid-template-columns: 1fr;
    }

    .candidate-card {
        min-height: auto;
    }

    .ballot-warning {
        font-size: 18px;
    }

    .ballot-status-counts,
    .vote-legend,
    .ballot-status p,
    .ballot-submit {
        width: 100%;
    }

    .ballot-status-counts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        font-size: 13px;
    }

    .ballot-status p {
        font-size: 12px;
        line-height: 1.35;
        text-align: left;
    }

    .vote-legend {
        justify-content: flex-start;
        font-size: 12px;
    }

    .ballot-submit {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 13px;
    }

    .blank-vote-card {
        min-height: 170px;
        font-size: 28px;
    }
}
