.preview-vimeo-player-root {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
.preview-vimeo-player-root .caption-box,
.preview-vimeo-player-root .vpc-bottom-bar {
    flex-shrink: 0;
}
.vpc-media-stage {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.video-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0 auto;
    flex-shrink: 1;
    min-height: 0;
}
.video-shell {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    min-width: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    aspect-ratio: 1.77 / 1;
    background: #fff;
    overflow: hidden;
}
.video-shell iframe {
    display: block;
    position: absolute;
    width: auto;
    height: 100%;
    border: 0;
    aspect-ratio: 16 / 9; /* overridden at runtime from Vimeo dimensions */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.vpc-poster-cover {
    position: absolute;
    z-index: 1;
    display: block;
    width: auto;
    height: 100%;
    aspect-ratio: 16 / 9; /* match iframe; overridden at runtime from Vimeo dimensions */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    background: #fff;
    opacity: 1;
    pointer-events: none;
}
/* Solid white load cover: fill the whole shell so aspect-ratio swaps cannot leak Vimeo gray. */
.vpc-load-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background: #fff;
    opacity: 1;
    pointer-events: none;
}
.vpc-poster-cover.is-hidden,
.vpc-load-scrim.is-hidden {
    opacity: 0;
}
/* Non-intrusive caption-fetch-failed notice: captions failing does not stop Video
   playback, so this sits in flow next to the caption row — it must never cover the
   Video (unlike .vpc-empty-state, which is for states where there is no Video at all). */
.vpc-caption-error {
    flex-shrink: 0;
    margin: 0;
    padding: 0.15rem 1rem;
    text-align: center;
    color: #666;
    font-size: 0.75rem;
}
.vpc-caption-error.is-hidden {
    display: none;
}
/* Empty player state (e.g. an unknown/empty Participant collection): plain, minimal
   message above the load scrim, in place of a Video. */
.vpc-empty-state {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}
.vpc-empty-state.is-hidden {
    display: none;
}
@media screen and (min-width: 651px) {
    .video-shell {
        --vpc-top-crop: 9%;
    }
    .video-shell iframe,
    .vpc-poster-cover {
        height: calc(100% + var(--vpc-top-crop));
        bottom: 0;
        top: auto;
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 650px) {
    .video-shell {
        aspect-ratio: 1.2 / 1;
    }
    .caption-box.caption-box--two-line {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-box-pack: end;
        -webkit-line-clamp: 2;
        white-space: normal;
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}
.vpc-video-hitarea {
    position: absolute;
    inset: 0;
    z-index: 2;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.vpc-video-hitarea::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.vpc-video-hitarea:focus-visible {
    outline: 2px solid #007800;
    outline-offset: 2px;
}
.caption-box {
    width: var(--vpc-caption-width, 100%);
    max-width: 100%;
    align-self: center;
    margin: 0;
    padding: 0.15em 1rem 0;
    box-sizing: border-box;
    background: #fff;
    color: rgb(0, 120, 0);
    font-family: 'Roboto', 'Noto Sans Arabic', sans-serif;
    --vpc-caption-line-height: 1.28;
    line-height: var(--vpc-caption-line-height);
    font-size: var(--vpc-caption-font-size, 1.125rem);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    /* Single-line reserve — fixed px so layout never feeds back into font sizing. */
    height: var(--vpc-caption-block-height, 55px);
    min-height: var(--vpc-caption-block-height, 55px);
    max-height: var(--vpc-caption-block-height, 55px);
}

/* ── Single control row (D15″, D24, D25) ─────────────────────────────────── */
.vpc-control-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0.35rem 1rem 0.5rem;
    box-sizing: border-box;
    gap: 0.5rem;
    /* Shared fixed width for the six square chrome buttons (Verbal language, Sign
       language, City, Participants, DEAF+HEARING, Typology). Equal length by design
       (Toni): they don't grow to fill the row, so the video reads as if on a pedestal. */
    --vpc-square-btn-w: 9.5rem;
}
.vpc-control-secondary {
    display: contents;
}
.vpc-control-secondary-l,
.vpc-control-secondary-r {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}
.vpc-control-zone--nav-r {
    flex-wrap: nowrap;
}
.vpc-control-secondary-l {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
}
.vpc-control-secondary-r {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-start;
}
.vpc-control-transport-cluster {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    /* Whitespace between flex children becomes selectable text nodes — block I-beam/caret in gaps. */
    user-select: none;
    -webkit-user-select: none;
}
.vpc-control-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
}
.vpc-control-zone {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
}
.vpc-control-zone--nav {
    flex-wrap: nowrap;
}

/* ── R2 filters (right secondary) ─────────────────────────────────────────── */
.vpc-r2-filters {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
    max-width: none;
}

/* ── Custom picker (button + dropdown) — not a native <select> ──────────── */
.vpc-picker {
    position: relative;
    display: inline-block;
}

/* Unified control-row button styling (D15″ story 16) */
.vpc-control-row .vpc-picker-btn,
.vpc-control-row .vpc-prev-btn,
.vpc-control-row .vpc-next-btn,
.vpc-control-row .vpc-reset-btn,
.vpc-control-row .vpc-play-pause-btn,
.vpc-control-row .vpc-chrome-btn,
.vpc-control-row .preview-site-nav__btn {
    font-family: 'Roboto', 'Noto Sans Arabic', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.45em 0.85em;
    border: 2px solid rgb(0, 120, 0);
    border-radius: 8px;
    background: #fff;
    color: rgb(0, 120, 0);
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    transition: border-color 0.1s, color 0.1s, background 0.1s;
    box-sizing: border-box;
    text-decoration: none;
}
.vpc-control-row .preview-site-nav__btn.preview-site-nav__btn--person-name {
    text-transform: none;
}
.vpc-control-row .vpc-picker-btn:hover,
.vpc-control-row .vpc-prev-btn:hover:not(:disabled),
.vpc-control-row .vpc-next-btn:hover:not(:disabled),
.vpc-control-row .vpc-reset-btn:hover,
.vpc-control-row .vpc-chrome-btn:hover,
.vpc-control-row a.preview-site-nav__btn:hover {
    background: #f0f0f0;
    border-color: rgb(0, 100, 0);
}
.vpc-control-row .vpc-picker-btn:focus-visible,
.vpc-control-row .vpc-prev-btn:focus-visible,
.vpc-control-row .vpc-next-btn:focus-visible,
.vpc-control-row .vpc-reset-btn:focus-visible,
.vpc-control-row .vpc-chrome-btn:focus-visible,
.vpc-control-row a.preview-site-nav__btn:focus-visible {
    outline: 2px solid rgb(0, 120, 0);
    outline-offset: 2px;
}

/* Active/current state: inverted green polarity (D26+) */
.vpc-control-row .preview-site-nav__btn.is-active,
.vpc-control-row .preview-site-nav__btn.is-current,
.vpc-control-row .preview-site-nav__btn[aria-current="page"],
.vpc-control-row .vpc-picker[data-active="true"] .vpc-picker-btn,
.vpc-control-row .vpc-deaf-hearing-btn.is-active {
    background: rgb(0, 120, 0);
    border-color: rgb(0, 120, 0);
    color: #fff;
    font-weight: 700;
}
.vpc-control-row .preview-site-nav__btn.is-active:hover,
.vpc-control-row .preview-site-nav__btn.is-current:hover,
.vpc-control-row .preview-site-nav__btn[aria-current="page"]:hover,
.vpc-control-row .vpc-picker[data-active="true"] .vpc-picker-btn:hover,
.vpc-control-row .vpc-deaf-hearing-btn.is-active:hover {
    background: rgb(0, 100, 0);
    border-color: rgb(0, 100, 0);
}
.vpc-control-row .vpc-picker[data-active="true"] .vpc-picker-btn::after {
    color: #fff;
    opacity: 1;
}

/* SVG chrome icons: circle-filled assets (help/play/reset) or bare glyphs (prev/next) */
.vpc-control-row .preview-site-nav__btn.preview-site-nav__btn--icon,
.vpc-control-row .vpc-reset-btn,
.vpc-control-row .vpc-prev-btn,
.vpc-control-row .vpc-next-btn,
.vpc-control-row .vpc-play-pause-btn {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: inherit;
    box-shadow: none;
    overflow: visible;
}
.vpc-control-row .preview-site-nav__btn.preview-site-nav__btn--icon:hover,
.vpc-control-row .vpc-reset-btn:hover,
.vpc-control-row .vpc-prev-btn:hover:not(:disabled),
.vpc-control-row .vpc-next-btn:hover:not(:disabled),
.vpc-control-row .vpc-play-pause-btn:hover:not(:disabled) {
    background: transparent;
    border: none;
    opacity: 0.85;
}
.vpc-chrome-icon {
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    pointer-events: none;
}
.vpc-play-pause-btn .vpc-chrome-icon {
    width: 3rem;
    height: 3rem;
}
.preview-site-nav__btn--icon .vpc-chrome-btn__label,
.vpc-reset-btn .vpc-reset-btn__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Picker button: dropup caret */
.vpc-picker-btn::after {
    content: '\25B4'; /* ▴ — dropup opens above the button */
    font-size: 0.75em;
    opacity: 0.5;
    margin-left: 0.15em;
}
.vpc-control-row .vpc-picker-btn {
    gap: 0.25em;
}
.vpc-control-row .vpc-picker-btn::after {
    flex-shrink: 0;
    margin-left: 0;
}
.vpc-chrome-btn__label {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-align: center;
}
/* Desktop: full studio label. Maketa ≤1024: compact short_label (no JS measure). */
.vpc-chrome-btn__label-full,
.vpc-chrome-btn__label-short {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.vpc-chrome-btn__label-short {
    display: none;
}
@media screen and (max-width: 1024px) {
    .vpc-chrome-btn__label-full {
        display: none;
    }
    .vpc-chrome-btn__label-short {
        display: block;
    }
}
.vpc-picker-btn:hover {
    background: #efefef;
    border-color: #bbb;
}
.vpc-picker-btn:focus-visible {
    outline: 2px solid rgb(0, 120, 0);
    outline-offset: 2px;
}
/* Active filter state: brand green accent (restrained, D15) */
.vpc-picker[data-active="true"] .vpc-picker-btn {
    border-color: rgb(0, 120, 0);
    color: rgb(0, 100, 0);
    background: #e8f5e9;
    font-weight: 500;
}
.vpc-picker[data-active="true"] .vpc-picker-btn::after {
    opacity: 1;
    color: rgb(0, 120, 0);
}

/* Custom dropup (role="listbox") — opens above R2 buttons so menus stay on canvas */
.vpc-picker-dropdown {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 0;
    z-index: 200;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    min-width: 100%;
    max-width: 22rem;
    max-height: min(40vh, 16rem);
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgb(0, 120, 0);
    border-radius: 8px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
}
.vpc-picker-dropdown[hidden] {
    display: none;
}
.vpc-picker-option {
    font-family: 'Roboto', 'Noto Sans Arabic', sans-serif;
    font-size: 0.9375rem;
    padding: 0.5em 1em;
    cursor: pointer;
    white-space: nowrap;
    color: #333;
    transition: background 0.08s, color 0.08s;
}
.vpc-picker-option:hover {
    background: #e8f5e9;
    color: rgb(0, 80, 0);
}
/* Selected item: brand green highlight */
.vpc-picker-option[aria-selected="true"] {
    background: rgb(0, 120, 0);
    color: #fff;
    font-weight: 500;
}
.vpc-picker-option[aria-selected="true"]:hover {
    background: rgb(0, 100, 0);
}
/* Keyboard-active option (roving aria-activedescendant) — same treatment as :hover
   so keyboard and mouse users see a consistent "this is what Enter/click picks". */
.vpc-picker-option--active {
    background: #e8f5e9;
    color: rgb(0, 80, 0);
}
.vpc-picker-option--active[aria-selected="true"] {
    background: rgb(0, 100, 0);
}
/* "Clear / all" option: slightly muted */
.vpc-picker-clear {
    color: #666;
    font-style: italic;
}
.vpc-picker-clear[aria-selected="true"] {
    background: #f0f0f0;
    color: #444;
    font-style: normal;
    font-weight: 400;
}

.vpc-play-pause-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}
.vpc-play-pause-btn:focus-visible {
    outline: 2px solid #007800;
    outline-offset: 2px;
}
.vpc-play-pause-btn__hourglass {
    display: none;
    width: 1.6rem;
    height: 1.6rem;
    position: relative;
    z-index: 1;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}
/*
 * play_circle SVG viewBox 2 2 16 16 — the r=8 disc fills that box edge-to-edge,
 * so at 3rem the green circle is the full icon. Loading ::before must match 100%.
 */
.vpc-play-pause-btn[data-loading="true"] {
    width: 3rem;
    height: 3rem;
    background: transparent;
}
.vpc-play-pause-btn[data-loading="true"]::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #007800;
    z-index: 0;
}
.vpc-play-pause-btn[data-loading="true"] .vpc-chrome-icon {
    display: none;
}
.vpc-play-pause-btn[data-loading="true"] .vpc-play-pause-btn__hourglass {
    display: block;
    animation: vpc-transport-spin 0.8s linear infinite;
}
@keyframes vpc-transport-spin {
    to { transform: rotate(360deg); }
}
/* Help (?) and reset are icon buttons — content-width, never part of the square set. */
.vpc-control-secondary-l > .preview-site-nav,
.vpc-control-secondary-r > .vpc-reset-btn {
    flex: 0 0 auto;
    min-width: 0;
}
/* The six square buttons all share one fixed width. grow:0 = don't stretch the row;
   shrink:1 + equal basis = they narrow together, staying equal to each other. */
.vpc-control-secondary-l > .vpc-deaf-hearing-btn,
.vpc-control-secondary-l > .vpc-picker,
.vpc-control-secondary-r > .vpc-r2-filters > .vpc-picker,
.vpc-control-secondary-r > .preview-site-nav {
    flex: 0 1 var(--vpc-square-btn-w);
    width: var(--vpc-square-btn-w);
    max-width: var(--vpc-square-btn-w);
    min-width: 0;
}
/* The sign/city filter group hugs its two square children rather than stretching. */
.vpc-control-secondary-r > .vpc-r2-filters {
    flex: 0 1 auto;
    min-width: 0;
}
.vpc-control-secondary-l .preview-site-nav__btn,
.vpc-control-secondary-l .vpc-picker-btn,
.vpc-control-secondary-r .vpc-picker-btn,
.vpc-control-secondary-r .preview-site-nav__btn {
    width: 100%;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vpc-control-row .vpc-reset-btn {
    flex: 0 0 auto;
    overflow: visible;
    min-width: 2.75rem;
    max-width: none;
}
.vpc-control-secondary-l > .preview-site-nav {
    display: flex;
}
.vpc-control-secondary-r > .vpc-r2-filters {
    display: flex;
    gap: 0.5rem;
}
.vpc-control-secondary-r > .vpc-r2-filters > .vpc-picker {
    flex: 0 1 var(--vpc-square-btn-w);
    width: var(--vpc-square-btn-w);
    max-width: var(--vpc-square-btn-w);
    min-width: 0;
}

.vpc-control-row .vpc-shuffle-btn {
    min-width: 2.75rem;
    padding: 0.5rem;
    color: rgb(0, 120, 0);
    width: auto;
}
.vpc-reset-btn__text {
    font-size: 0.9375rem;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    max-width: 100%;
}
.vpc-prev-btn:hover:not(:disabled),
.vpc-next-btn:hover:not(:disabled) {
    /* hover handled by unified rule above */
}
/* Shuffle OFF — muted grey icon and border; no opacity trick (D13) */
.vpc-shuffle-btn[aria-pressed='false'] {
    color: #aaa;
    border-color: #ddd;
    background: #fafafa;
}
.vpc-shuffle-btn[aria-pressed='false'] .material-icons {
    color: #bbb;
}
.vpc-shuffle-btn[aria-pressed='false']:hover {
    color: #888;
    border-color: #ccc;
    background: #efefef;
}
/* Shuffle ON — brand green active state (D13) */
.vpc-shuffle-btn[aria-pressed='true'],
.vpc-shuffle-btn.is-active {
    background: #e8f5e9;
    border-color: rgb(0, 120, 0);
    color: rgb(0, 92, 0);
}
.vpc-shuffle-btn[aria-pressed='true'] .material-icons,
.vpc-shuffle-btn.is-active .material-icons {
    color: rgb(0, 120, 0);
}
.vpc-shuffle-btn[aria-pressed='true']:hover,
.vpc-shuffle-btn.is-active:hover {
    background: #d4edda;
    border-color: rgb(0, 100, 0);
}
.vpc-prev-btn:disabled,
.vpc-next-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
/* Legacy: vpc-nav-hidden kept for shuffle button removal compat; prev/next use disabled only. */
.vpc-shuffle-btn.vpc-nav-hidden,
.vpc-prev-btn.vpc-nav-hidden,
.vpc-next-btn.vpc-nav-hidden {
    display: none;
}
.vpc-shuffle-btn:focus-visible,
.vpc-prev-btn:focus-visible,
.vpc-next-btn:focus-visible {
    outline: 2px solid #007800;
    outline-offset: 2px;
}
/* Reset icon hover/focus are handled by the shared icon button rules. */

/*
 * Maketa narrow (≤1024):
 *   Shared chrome flattening + square button sizing.
 *   Phone (≤500): 2-col × 3-row (maketa_mobil.png).
 *   Mid (501–1024): 3-col × 2-row, same gutters / centering.
 * Placed after desktop flex rules so grid areas win on specificity/order.
 */
@media screen and (max-width: 1024px) {
    .vpc-control-row {
        --vpc-mobile-col-gap: 0.5rem;
        display: grid;
        align-items: center;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0.35rem 1rem 0.5rem;
        row-gap: 0.35rem;
        column-gap: 0;
    }
    .vpc-control-secondary,
    .vpc-control-secondary-l,
    .vpc-control-secondary-r,
    .vpc-control-row .vpc-r2-filters,
    .vpc-control-row .vpc-control-secondary-r > .vpc-r2-filters {
        display: contents;
    }
    .vpc-control-transport-cluster {
        grid-row: 1;
        grid-column: 1 / -1;
        justify-self: center;
        flex-wrap: nowrap;
    }
    .vpc-control-row .vpc-reset-btn {
        max-width: none;
        z-index: 1;
    }
    .vpc-control-secondary-l > .preview-site-nav {
        z-index: 1;
    }
    .vpc-control-row .vpc-picker[data-picker="language"] {
        grid-area: lang;
        min-width: 0;
        width: 100%;
        max-width: var(--vpc-square-btn-w);
    }
    .vpc-control-row .vpc-picker[data-picker="sign_language"] {
        grid-area: signs;
        min-width: 0;
        width: 100%;
        max-width: var(--vpc-square-btn-w);
    }
    .vpc-control-row .vpc-picker[data-picker="edition"] {
        grid-area: cities;
        min-width: 0;
        width: 100%;
        max-width: var(--vpc-square-btn-w);
    }
    .vpc-control-row .vpc-control-secondary-r > .preview-site-nav {
        grid-area: participants;
        min-width: 0;
        width: 100%;
        max-width: var(--vpc-square-btn-w);
    }
    .vpc-control-row .vpc-deaf-hearing-btn {
        grid-area: deaf;
        min-width: 0;
        width: 100%;
        max-width: var(--vpc-square-btn-w);
    }
    .vpc-control-row .vpc-picker[data-picker="typology"] {
        grid-area: typology;
        min-width: 0;
        width: 100%;
        max-width: var(--vpc-square-btn-w);
    }
    .vpc-control-row .vpc-picker-btn,
    .vpc-control-row .vpc-control-secondary-r > .preview-site-nav .preview-site-nav__btn,
    .vpc-control-row .vpc-deaf-hearing-btn {
        width: 100%;
    }
    .vpc-control-row .vpc-picker-btn {
        font-size: 0.875rem;
        padding: 0.4em 0.7em;
    }
    .vpc-picker-dropdown {
        font-size: 0.875rem;
        max-width: 90vw;
    }
}

/* Phone: 2 columns × 3 rows; ?/reset align with outer filter columns */
@media screen and (max-width: 500px) {
    .vpc-control-row {
        grid-template-columns: 1fr var(--vpc-square-btn-w) var(--vpc-mobile-col-gap) var(--vpc-square-btn-w) 1fr;
        grid-template-areas:
            "icons icons icons icons icons"
            ". lang . signs ."
            ". cities . participants ."
            ". deaf . typology .";
    }
    .vpc-control-secondary-l > .preview-site-nav {
        grid-row: 1;
        grid-column: 2;
        justify-self: start;
    }
    .vpc-control-row .vpc-reset-btn {
        grid-row: 1;
        grid-column: 4;
        justify-self: end;
    }
}

/* Mid / tablet: 3 columns × 2 rows; ?/reset align with outer filter columns */
@media screen and (min-width: 501px) and (max-width: 1024px) {
    .vpc-control-row {
        grid-template-columns:
            1fr
            var(--vpc-square-btn-w) var(--vpc-mobile-col-gap)
            var(--vpc-square-btn-w) var(--vpc-mobile-col-gap)
            var(--vpc-square-btn-w)
            1fr;
        grid-template-areas:
            "icons icons icons icons icons icons icons"
            ". lang . signs . cities ."
            ". participants . deaf . typology .";
    }
    .vpc-control-secondary-l > .preview-site-nav {
        grid-row: 1;
        grid-column: 2;
        justify-self: start;
    }
    .vpc-control-row .vpc-reset-btn {
        grid-row: 1;
        grid-column: 6;
        justify-self: end;
    }
}
