:root {
    --white: #ffffff;
    --ink: #1e1830;
    --muted: #665f72;
    --line: #ddd8e4;
    --soft: #f7f4f8;
    --purple: #4a2879;
    --purple-dark: #321958;
    --purple-light: #ede6f5;
    --coral: #ef7f70;
    --teal: #268a8b;
    --yellow: #f7bd3f;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

body.modal-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    border-radius: 0;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--purple);
    transition: top 180ms ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgb(255 255 255 / 94%);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    width: min(calc(100% - 48px), var(--max-width));
    min-height: 76px;
    margin-inline: auto;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--purple);
    line-height: .86;
    letter-spacing: -.08em;
}

.brand-mark {
    margin-right: 4px;
    color: var(--coral);
    font-size: 42px;
    font-weight: 900;
}

.brand strong,
.brand small {
    display: block;
    font-size: 19px;
    font-weight: 900;
}

.brand small {
    color: var(--coral);
    font-size: 15px;
    letter-spacing: -.04em;
}

.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 24px;
}

.main-nav a {
    position: relative;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--coral);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.quick-exit {
    padding: 10px 14px;
    border: 1px solid var(--purple);
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 180ms ease;
}

.quick-exit:hover,
.quick-exit:focus-visible {
    color: var(--white);
    background: var(--purple);
}

.menu-toggle {
    display: none;
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    touch-action: pan-y;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    min-height: 680px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 650ms ease;
}

.hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide-image {
    background: url("/cartel-tipo-web.jpeg") var(--hero-position) / cover no-repeat;
    transform: scale(1.035);
    transition: transform 6s ease;
}

.hero-slide.is-active .hero-slide-image {
    transform: scale(1);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgb(255 255 255 / 98%) 0%, rgb(255 255 255 / 94%) 34%, rgb(255 255 255 / 58%) 58%, rgb(255 255 255 / 8%) 100%),
        linear-gradient(0deg, rgb(50 25 88 / 12%), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 58px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero h1,
.hero h2 {
    max-width: 680px;
    margin: 0;
    color: var(--purple);
    font-size: clamp(62px, 8vw, 112px);
    font-weight: 900;
    letter-spacing: -.095em;
    line-height: .88;
    text-transform: uppercase;
}

.hero h1 span,
.hero h2 span {
    color: var(--coral);
}

.hero h2 {
    max-width: 720px;
    font-size: clamp(54px, 7vw, 92px);
}

.hero-lead {
    max-width: 610px;
    margin: 24px 0 0;
    color: var(--ink);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.2;
}

.hero-actions {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: 180ms ease;
}

.button-primary {
    border-color: var(--purple);
    color: var(--white);
    background: var(--purple);
}

.button-primary:hover,
.button-primary:focus-visible {
    border-color: var(--coral);
    background: var(--coral);
}

.button-link {
    color: var(--purple);
}

.button-link:hover,
.button-link:focus-visible {
    color: var(--coral);
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.slider-dots button {
    width: 28px;
    height: 3px;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: rgb(74 40 121 / 35%);
    transition: 180ms ease;
}

.slider-dots button.is-active {
    width: 52px;
    background: var(--purple);
}

.slider-arrows,
.news-arrows {
    display: flex;
    gap: 8px;
}

.slider-arrows button,
.news-arrows button {
    display: grid;
    width: 44px;
    height: 44px;
    border: 1px solid var(--purple);
    color: var(--purple);
    cursor: pointer;
    background: var(--white);
    font-size: 20px;
    place-items: center;
    transition: 180ms ease;
}

.slider-arrows button:hover,
.slider-arrows button:focus-visible,
.news-arrows button:hover,
.news-arrows button:focus-visible {
    color: var(--white);
    background: var(--purple);
}

.emergency-bar {
    color: var(--white);
    background: var(--purple);
}

.emergency-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) repeat(3, auto);
    align-items: center;
    min-height: 86px;
    gap: 30px;
}

.emergency-grid p {
    margin: 0;
    font-size: 15px;
}

.emergency-grid a {
    display: flex;
    align-items: baseline;
    padding-left: 22px;
    border-left: 1px solid rgb(255 255 255 / 35%);
    gap: 9px;
}

.emergency-grid span {
    color: var(--purple-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.emergency-grid strong {
    color: var(--white);
    font-size: 23px;
}

.section {
    padding: 108px 0;
    scroll-margin-top: 74px;
}

.section-heading {
    margin-bottom: 48px;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    gap: 72px;
}

.section-heading h2,
.action-copy h2,
.contact-copy h2 {
    max-width: 760px;
    margin: 0;
    color: var(--purple);
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: -.07em;
    line-height: .98;
}

.section-heading > p,
.split-heading > p,
.action-copy > p,
.contact-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.signal-card {
    min-height: 290px;
    padding: 30px 26px;
    border-left: 1px solid var(--line);
}

.signal-card:last-child {
    border-right: 1px solid var(--line);
}

.signal-number {
    color: var(--coral);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .12em;
}

.signal-card h3 {
    margin: 68px 0 12px;
    color: var(--purple);
    font-size: 23px;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.signal-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.action-section {
    color: var(--white);
    background: var(--purple);
}

.action-section .eyebrow {
    color: var(--coral);
}

.action-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
    gap: 84px;
}

.action-copy h2 {
    color: var(--white);
}

.action-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 24px;
    color: var(--purple-light);
}

.text-link {
    display: inline-flex;
    padding: 0;
    border: 0;
    color: var(--coral);
    cursor: pointer;
    background: transparent;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--teal);
}

.action-copy .text-link {
    margin-top: 32px;
}

.action-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgb(255 255 255 / 28%);
    list-style: none;
}

.action-list li {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgb(255 255 255 / 28%);
    gap: 20px;
}

.action-list span {
    color: var(--coral);
    font-size: 13px;
    font-weight: 800;
}

.action-list strong {
    font-size: 20px;
    letter-spacing: -.025em;
}

.news-section {
    overflow: hidden;
}

.news-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.news-viewport {
    overflow: hidden;
    touch-action: pan-y;
}

.news-track {
    display: flex;
    gap: 24px;
    transition: transform 450ms ease;
}

.news-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}

.news-image {
    height: 220px;
    margin-bottom: 18px;
    overflow: hidden;
    background: var(--purple-light);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.news-card:hover .news-image img {
    transform: scale(1.045);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.news-meta time {
    color: var(--muted);
}

.news-card h3 {
    margin: 14px 0 10px;
    color: var(--purple);
    font-size: 25px;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.news-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 15px;
}

.news-dots {
    justify-content: center;
    margin-top: 34px;
}

.resources-section {
    background: var(--soft);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.resource-card {
    display: flex;
    min-height: 248px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    flex-direction: column;
    transition: 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
    color: var(--white);
    background: var(--purple);
}

.resource-featured {
    color: var(--white);
    background: var(--purple);
}

.resource-label {
    color: var(--coral);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.resource-card strong {
    margin-top: 26px;
    color: inherit;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.06em;
    line-height: .95;
}

.resource-card .resource-email {
    font-size: clamp(23px, 3vw, 37px);
}

.resource-card p {
    max-width: 520px;
    margin: 12px 0 18px;
    color: var(--muted);
    font-size: 15px;
}

.resource-featured p,
.resource-card:hover p,
.resource-card:focus-visible p {
    color: var(--purple-light);
}

.resource-action {
    margin-top: auto;
    color: var(--coral);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.privacy-note {
    display: grid;
    grid-template-columns: 190px 1fr;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--purple);
    gap: 28px;
}

.privacy-note strong {
    color: var(--purple);
}

.privacy-note p {
    margin: 0;
    color: var(--muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(460px, 1fr);
    gap: 84px;
}

.contact-copy > p:not(.eyebrow) {
    margin-top: 22px;
}

.contact-copy a {
    color: var(--purple);
    font-weight: 800;
}

.contact-note {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 14px !important;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form .form-field-full,
.consent-check,
.contact-form .button {
    grid-column: 1 / -1;
}

.contact-form span {
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.contact-form small {
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    outline: 0;
    transition: border-color 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--purple);
}

.contact-form textarea {
    min-height: 148px;
    resize: vertical;
}

.contact-form .consent-check {
    display: flex;
    align-items: start;
    gap: 10px;
}

.consent-check input {
    width: 16px;
    margin-top: 3px;
    accent-color: var(--purple);
}

.consent-check span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-status {
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid;
}

.form-status p,
.form-status ul {
    margin: 5px 0 0;
    font-size: 14px;
}

.form-success {
    border-color: var(--teal);
    color: var(--teal);
    background: #f1fafa;
}

.form-error {
    border-color: var(--coral);
    color: #8c3128;
    background: #fff6f5;
}

.site-footer {
    padding: 32px 0;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.footer-grid nav {
    display: flex;
    gap: 18px;
}

.footer-grid nav a {
    color: var(--purple);
    font-size: 12px;
    font-weight: 700;
}

.footer-organizations {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-organizations img {
    display: block;
    width: auto;
    height: auto;
}

.footer-organizations .organization-pacto {
    max-height: 58px;
}

.footer-organizations .organization-government {
    max-height: 42px;
}

.footer-organizations .organization-city {
    max-height: 54px;
}

.privacy-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    border-top: 1px solid #e2d9d5;
    color: var(--purple);
    background: #fbf8f6;
}

.privacy-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    gap: 24px;
}

.privacy-banner p {
    margin: 0;
    font-size: 14px;
}

.privacy-banner button {
    flex: 0 0 auto;
    border: 1px solid var(--purple);
    padding: 9px 14px;
    color: var(--purple);
    cursor: pointer;
    background: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.privacy-banner button:hover,
.privacy-banner button:focus-visible {
    color: var(--purple);
    background: #f9e3df;
}

.news-modal {
    width: min(calc(100% - 32px), 720px);
    padding: 42px;
    border: 1px solid var(--purple);
    color: var(--ink);
    background: var(--white);
}

.news-modal::backdrop {
    background: rgb(30 24 48 / 68%);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    color: var(--purple);
    cursor: pointer;
    background: transparent;
    font-size: 32px;
    line-height: 1;
}

.modal-eyebrow {
    margin: 0 0 10px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.news-modal h2 {
    margin: 0;
    color: var(--purple);
    font-size: clamp(30px, 5vw, 48px);
    letter-spacing: -.06em;
    line-height: 1;
}

.modal-copy {
    margin-top: 22px;
    color: var(--muted);
}

.modal-copy p:last-child {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .header-inner {
        gap: 16px;
    }

    .menu-toggle {
        display: grid;
        width: 40px;
        height: 40px;
        margin-left: auto;
        padding: 8px;
        border: 0;
        cursor: pointer;
        background: transparent;
        align-content: center;
        gap: 5px;
    }

    .menu-toggle > span:not(.sr-only) {
        width: 100%;
        height: 2px;
        background: var(--purple);
    }

    .main-nav {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        margin: 0;
        padding: 10px 24px 18px;
        border-bottom: 1px solid var(--line);
        background: var(--white);
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 10px 0;
    }

    .quick-exit {
        padding: 8px 10px;
        font-size: 11px;
    }

    .hero-slider,
    .hero-slide {
        min-height: 590px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgb(255 255 255 / 98%), rgb(255 255 255 / 82%) 58%, rgb(255 255 255 / 36%));
    }

    .emergency-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 16px 0;
        gap: 14px;
    }

    .emergency-grid p {
        grid-column: 1 / -1;
    }

    .emergency-grid a {
        display: grid;
        padding-left: 12px;
        gap: 0;
    }

    .emergency-grid strong {
        font-size: 19px;
    }

    .signals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signal-card {
        border-bottom: 1px solid var(--line);
    }

    .action-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .news-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .footer-grid {
        grid-template-columns: auto 1fr;
        gap: 18px 24px;
    }

    .footer-grid nav {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 640px) {
    .container,
    .header-inner {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-mark {
        font-size: 34px;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small {
        font-size: 13px;
    }

    .main-nav {
        top: 68px;
    }

    .quick-exit {
        max-width: 72px;
        padding: 6px 8px;
        text-align: center;
        line-height: 1.1;
    }

    .hero-slider,
    .hero-slide {
        min-height: 540px;
    }

    .hero-slide-image {
        background-position: 64% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgb(255 255 255 / 98%), rgb(255 255 255 / 88%) 75%, rgb(255 255 255 / 55%));
    }

    .hero-content {
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: clamp(58px, 19vw, 82px);
    }

    .hero h2 {
        max-width: 420px;
        font-size: clamp(46px, 14vw, 68px);
    }

    .hero-lead {
        max-width: 380px;
        font-size: 18px;
    }

    .hero-actions {
        align-items: start;
        flex-direction: column;
        gap: 6px;
    }

    .slider-arrows {
        display: none;
    }

    .emergency-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .emergency-grid p,
    .emergency-grid a {
        grid-column: auto;
    }

    .emergency-grid a {
        display: flex;
        padding: 8px 0 0;
        border-top: 1px solid rgb(255 255 255 / 25%);
        border-left: 0;
        align-items: baseline;
        justify-content: space-between;
    }

    .section {
        padding: 76px 0;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-heading h2,
    .action-copy h2,
    .contact-copy h2 {
        font-size: 44px;
    }

    .section-heading > p,
    .split-heading > p,
    .action-copy > p,
    .contact-copy > p {
        font-size: 16px;
    }

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

    .signal-card {
        min-height: auto;
        padding: 22px 18px;
        border-right: 1px solid var(--line);
    }

    .signal-card h3 {
        margin-top: 32px;
    }

    .action-layout {
        gap: 38px;
    }

    .action-list strong {
        font-size: 17px;
    }

    .news-card {
        flex-basis: 100%;
    }

    .news-image {
        height: 200px;
    }

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

    .resource-card {
        min-height: 220px;
        padding: 22px;
    }

    .privacy-note,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .privacy-note {
        gap: 6px;
    }

    .contact-form label,
    .contact-form .form-field-full,
    .consent-check,
    .contact-form .button {
        grid-column: 1;
    }

    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 14px 0;
    }

    .footer-brand {
        width: 25%;
        justify-content: center;
        padding-right: 8px;
    }

    .footer-brand .brand-mark {
        margin-right: 2px;
        font-size: 26px;
    }

    .footer-brand strong {
        font-size: 12px;
    }

    .footer-brand small {
        font-size: 10px;
    }

    .footer-organizations {
        display: grid;
        width: 75%;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .footer-organizations img {
        max-width: 86%;
        margin: auto;
        object-fit: contain;
    }

    .footer-organizations .organization-pacto,
    .footer-organizations .organization-government,
    .footer-organizations .organization-city {
        max-height: 38px;
    }

    .footer-grid nav {
        order: -1;
        width: 100%;
        justify-content: center;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--line);
        gap: 14px;
    }

    .news-modal {
        padding: 32px 22px;
    }

    .privacy-banner-inner {
        min-height: auto;
        padding-block: 12px;
        gap: 12px;
    }

    .privacy-banner p {
        font-size: 12px;
        line-height: 1.35;
    }

    .privacy-banner button {
        padding: 8px 10px;
        font-size: 10px;
    }
}
