*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0b0f17;
    --bg-card: #121826;
    --bg-elevated: #1a2234;
    --border: #2a3548;
    --text: #e8edf5;
    --text-muted: #8b97ab;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --us: #1d4ed8;
    --mx: #059669;
    --success: #22c55e;
    --ad-bg: #151c2c;
    --ad-border: #3d4f6f;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --font: 'DM Sans', system-ui, -apple-system, sans-serif;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-top: env(safe-area-inset-top, 0px);
    --nav-h: 52px;
    --nav-row-h: 42px;
    --tap: 44px;
    --top-shell-h: 56px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.has-ads {
    --top-shell-h: 108px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.5;
    padding-bottom: calc(72px + var(--safe-bottom));
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(5, 150, 105, 0.06), transparent);
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Shell superior: header + publicidad */
.top-shell {
    position: sticky;
    top: 0;
    z-index: 210;
    background: rgba(11, 15, 23, 0.98);
}

/* Header */
.header {
    padding-top: var(--safe-top);
    border-bottom: 1px solid var(--border);
}

body.has-ads .header {
    border-bottom: none;
}

.header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 56px;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
}

.header__logo {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--mx));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.header__logo svg {
    width: 20px;
    height: 20px;
}

.header__title {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.header__subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.header__stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    position: relative;
}

.visit-pill {
    display: none;
    align-items: center;
    padding: 0.375rem 0.625rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.6875rem;
    color: var(--text-muted);
    white-space: nowrap;
}

@media (min-width: 480px) {
    .visit-pill {
        display: flex;
    }
}

.pwa-install-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.375rem 0.625rem;
    background: linear-gradient(135deg, var(--accent), var(--mx));
    border: none;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: transform 0.15s, opacity 0.15s;
}

.pwa-install-btn:active {
    transform: scale(0.94);
}

.pwa-install-btn[hidden],
.pwa-ios-hint[hidden] {
    display: none !important;
}

.pwa-install-btn svg {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .pwa-install-btn {
        display: none !important;
    }
}

.pwa-ios-hint {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 220;
    max-width: 220px;
    padding: 0.5rem 0.625rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.6875rem;
    color: var(--text-muted);
    line-height: 1.35;
    box-shadow: var(--shadow);
}

.pwa-ios-hint strong {
    color: var(--text);
    font-weight: 600;
}

.footer__visits {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.footer__visits strong {
    color: var(--text);
}

.status-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: pulse 2s infinite;
}

.status-pill--live .status-pill__dot {
    background: var(--success);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Bridge nav — horizontal scroll tabs */
/* App section nav */
.app-nav {
    position: sticky;
    top: var(--top-shell-h);
    z-index: 90;
    background: rgba(11, 15, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.app-nav__scroll {
    display: flex;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.app-nav__scroll::-webkit-scrollbar {
    display: none;
}

.app-nav__link {
    flex-shrink: 0;
    padding: 0.4375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none !important;
    border: 1px solid transparent;
    white-space: nowrap;
}

.app-nav__link--active,
.app-nav__link:active {
    background: var(--bg-elevated);
    color: var(--text);
    border-color: var(--border);
}

.bridge-nav {
    position: sticky;
    top: calc(var(--top-shell-h) + var(--nav-row-h));
    z-index: 85;
    background: rgba(11, 15, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.bridge-nav__scroll {
    display: flex;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.bridge-nav__scroll::-webkit-scrollbar {
    display: none;
}

.bridge-nav__btn {
    flex-shrink: 0;
    min-height: var(--tap);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.bridge-nav__btn--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.bridge-nav__btn--juarez.bridge-nav__btn--active {
    background: var(--mx);
    border-color: var(--mx);
}

.bridge-nav__sep {
    flex-shrink: 0;
    align-self: center;
    width: 1px;
    height: 1.25rem;
    background: var(--border);
    margin: 0 0.125rem;
}

.juarez-main-view {
    margin-bottom: 1rem;
}

.juarez-main-view__note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    line-height: 1.45;
}

.juarez-main-view__waits {
    margin-bottom: 1rem;
}

.juarez-main-view__footer {
    margin-top: 0.875rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.juarez-main-view__empty {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

.bridge-nav__btn:active {
    transform: scale(0.96);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: var(--tap);
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background: var(--accent);
    color: #fff;
}

.btn--primary:hover {
    background: var(--accent-hover);
}

/* Main */
.page-layout {
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    margin: 0 auto;
}

.page-layout__content {
    flex: 1;
    min-width: 0;
}

.main {
    max-width: none;
    margin: 0;
    padding: 1rem 1rem 2rem;
}

.travel-sidebar {
    padding: 0 1rem 1rem;
}

.travel-mobile-dyk {
    padding: 0 1rem 0.75rem;
}

.travel-mobile-rates {
    padding: 0 1rem 2rem;
}

.travel-mobile-rates__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    padding: 0 0.25rem;
}

.travel-mobile-rates__inner .travel-sidebar__inner {
    margin-top: 0;
}

.travel-mobile-dyk .travel-sidebar__inner {
    margin-bottom: 0;
}

.travel-sidebar--desktop {
    display: none;
}

.travel-sidebar__inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.travel-sidebar__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.travel-sidebar__subtitle {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0.65rem 0 0.35rem;
}

.travel-sidebar__row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.82rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(42, 53, 72, 0.5);
}

.travel-sidebar__row strong {
    text-align: right;
}

.travel-sidebar__method {
    font-style: normal;
    font-size: 0.68rem;
    color: var(--mx);
    font-weight: 500;
}

.travel-sidebar__block + .travel-sidebar__block {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.travel-sidebar__note {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.travel-sidebar__disclaimer {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.4;
}

.travel-sidebar__empty,
.travel-sidebar__loading {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.5rem 0;
}

.travel-sidebar__block--dyk {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.travel-dyk {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(5, 150, 105, 0.35);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.65rem;
}

.travel-dyk__title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--mx);
    margin-bottom: 0.35rem;
}

.travel-dyk__body {
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--text);
    white-space: pre-line;
}

.travel-dyk__rate {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.travel-tip {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem;
    margin-top: 0.65rem;
}

.travel-tip__title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--mx);
    margin-bottom: 0.35rem;
}

.travel-tip__budget {
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
}

.travel-tip__compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.35rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.travel-tip__city {
    text-align: center;
    padding: 0.45rem;
    border-radius: 8px;
    font-size: 0.72rem;
}

.travel-tip__city strong {
    display: block;
    font-size: 1.05rem;
    margin-top: 0.15rem;
}

.travel-tip__city--mx {
    background: rgba(5, 150, 105, 0.12);
    border: 1px solid rgba(5, 150, 105, 0.25);
}

.travel-tip__city--us {
    background: rgba(29, 78, 216, 0.12);
    border: 1px solid rgba(29, 78, 216, 0.25);
}

.travel-tip__vs {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
}

.travel-tip__verdict {
    font-size: 0.75rem;
    line-height: 1.45;
}

.travel-tip__save {
    color: var(--mx);
    font-weight: 600;
}

.travel-banner {
    margin-bottom: 1rem;
}

.app-nav__link--ind-desktop {
    display: none;
}

@media (max-width: 899px) {
    .travel-banner {
        display: none;
    }

    .ind-section--desktop {
        display: none;
    }

    .hero {
        padding-bottom: 0.25rem;
    }

    .hero__lead {
        font-size: 0.875rem;
    }
}

.travel-banner__inner {
    background: linear-gradient(90deg, rgba(5, 150, 105, 0.14), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(5, 150, 105, 0.3);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.bridge-card__view-order {
    font-size: 0.75rem;
    color: var(--mx);
    font-weight: 600;
    margin: -0.25rem 0 0.65rem;
}

.camera-feed__primary-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--mx);
    background: rgba(5, 150, 105, 0.15);
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
}

.camera-feed--mx-primary {
    border-color: rgba(5, 150, 105, 0.45);
    box-shadow: 0 0 0 1px rgba(5, 150, 105, 0.2);
}

.camera-feed__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.hero {
    margin-bottom: 1rem;
}

.hero__date {
    font-size: 0.85rem;
    color: var(--mx);
    font-weight: 600;
    margin-bottom: 0.35rem;
    text-transform: capitalize;
}

.hero__title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0.375rem;
    color: var(--text);
}

.hero__lead {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 0.5rem;
}

.hero__lead strong {
    color: var(--text);
    font-weight: 600;
}

.hero__text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.hero__text strong {
    color: var(--text);
}

.hero__meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Grid — mobile: 1 column, cameras stacked */
.bridges-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bridge-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    scroll-margin-top: calc(var(--top-shell-h) + var(--nav-row-h) * 2 + 12px);
}

.bridge-card--hidden {
    display: none;
}

.bridge-card__header {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.bridge-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
}

.bridge-card__badge {
    display: none;
}

.bridge-card__cameras {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
}

/* Camera feed — full width stacked on mobile */
.camera-feed {
    background: var(--bg-card);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.camera-feed:active {
    background: var(--bg-elevated);
}

.camera-feed__header {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.camera-feed__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
}

.camera-feed__side {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.camera-feed__side--us {
    background: rgba(29, 78, 216, 0.25);
    color: #93c5fd;
}

.camera-feed__side--mx {
    background: rgba(5, 150, 105, 0.25);
    color: #6ee7b7;
}

.camera-feed__image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.camera-feed__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.camera-feed__image--loading {
    opacity: 0.35;
}

.camera-feed__tap-hint {
    position: absolute;
    bottom: 0.625rem;
    right: 0.625rem;
    padding: 0.375rem 0.625rem;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 6px;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.85);
    pointer-events: none;
}

.camera-feed__footer {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.camera-feed__indicators {
    padding: 0.55rem 1rem 0.65rem;
    background: rgba(15, 23, 42, 0.45);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cam-ind {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.72rem;
}

.cam-ind__label {
    color: var(--text-muted);
    flex-shrink: 0;
}

.cam-ind__val {
    font-weight: 600;
    text-align: right;
    color: var(--text);
}

.camera-feed__time--updated {
    color: var(--success);
}

/* Wait times on MX camera feeds */
.camera-feed--external {
    text-decoration: none !important;
    color: inherit;
}

.camera-feed--stream {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: var(--bg-card);
    cursor: pointer;
    font: inherit;
    color: inherit;
    padding: 0;
    border-radius: var(--radius);
}

.camera-feed--stream:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.camera-feed__image-wrap--stream {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0e14;
}

.camera-feed__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.camera-feed__thumb-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 140px;
    background: linear-gradient(145deg, var(--bg-elevated), #0f172a);
    color: var(--text-muted);
    gap: 0.35rem;
}

.camera-feed__thumb-placeholder-icon {
    font-size: 2rem;
    opacity: 0.85;
}

.camera-feed__thumb-placeholder em {
    font-style: normal;
    font-size: 0.78rem;
}

.camera-feed__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding-left: 0.15rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    pointer-events: none;
    transition: transform 0.15s ease, background 0.15s ease;
}

.camera-feed--stream:hover .camera-feed__play,
.camera-feed--stream:focus-visible .camera-feed__play {
    transform: translate(-50%, -50%) scale(1.06);
    background: rgba(5, 150, 105, 0.85);
}

.camera-feed__image-wrap--external {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    background: linear-gradient(145deg, var(--bg-elevated), var(--bg-card));
    border: 1px dashed var(--border);
}

.camera-feed__external {
    text-align: center;
    padding: 1rem;
}

.camera-feed__external-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.35rem;
}

.camera-feed__external-src {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--accent);
}

#bridge-101 {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--mx);
}

.bridge-card--juarez .bridge-card__badge {
    background: rgba(5, 150, 105, 0.15);
    color: var(--mx);
    border-color: rgba(5, 150, 105, 0.35);
}

.camera-feed__wait {
    padding: 0.625rem 0.875rem;
    background: linear-gradient(180deg, rgba(5, 150, 105, 0.12), rgba(5, 150, 105, 0.04));
    border-top: 1px solid rgba(5, 150, 105, 0.25);
    border-bottom: 1px solid var(--border);
}

.camera-feed__wait-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.camera-feed__wait-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6ee7b7;
}

.camera-feed__wait-primary {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1;
}

.camera-feed__wait-sub {
    font-size: 0.625rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.125rem;
}

.camera-feed__wait-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.camera-feed__wait-chip {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    white-space: nowrap;
}

.camera-feed__wait-chip.wait-status--ok { color: var(--success); border-color: rgba(34, 197, 94, 0.35); }
.camera-feed__wait-chip.wait-status--delay { color: #fbbf24; border-color: rgba(251, 191, 36, 0.35); }
.camera-feed__wait-chip.wait-status--closed { color: #f87171; border-color: rgba(248, 113, 113, 0.35); }

.camera-feed__wait-loading {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.camera-feed__wait-primary.wait-status--ok { color: var(--success); }
.camera-feed__wait-primary.wait-status--delay { color: #fbbf24; }
.camera-feed__wait-primary.wait-status--closed { color: #f87171; }

/* Demo ad cards in section */
.ads-section__demos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.demo-ad-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none !important;
    color: var(--text);
    transition: background 0.15s, transform 0.1s;
    -webkit-tap-highlight-color: transparent;
}

.demo-ad-card:active {
    background: var(--bg-elevated);
    transform: scale(0.99);
}

.demo-ad-card__badge {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--ad-accent, var(--accent));
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-ad-card__logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 4px;
}

.demo-ad-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.demo-ad-card__content strong {
    font-size: 0.9375rem;
    color: var(--text);
}

.demo-ad-card__content span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.demo-ad-card__content em {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    color: var(--ad-accent, var(--accent));
}

/* LVLTECH — fondo blanco, texto azul y negro */
.demo-ad-card--lvltech {
    background: #ffffff !important;
    border: 2px solid #2563eb !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}

.demo-ad-card--lvltech:active {
    background: #f1f5f9 !important;
}

.demo-ad-card--lvltech .demo-ad-card__logo {
    width: 52px;
    height: 52px;
    padding: 4px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    object-fit: contain;
    display: block;
}

.demo-ad-card--lvltech .demo-ad-card__content strong {
    color: #0f172a !important;
    font-weight: 800;
}

.demo-ad-card--lvltech .demo-ad-card__content span {
    color: #1d4ed8 !important;
    font-weight: 500;
}

.demo-ad-card--lvltech .demo-ad-card__content em {
    color: #0f172a !important;
    font-weight: 700;
}

/* EMPLÉATE — buscar trabajo */
.demo-ad-card--empleate {
    background: linear-gradient(135deg, #ecfdf5 0%, #eff6ff 100%) !important;
    border: 2px solid #10b981 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.demo-ad-card--empleate:active {
    background: #d1fae5 !important;
}

.demo-ad-card--empleate .demo-ad-card__logo {
    width: 52px;
    height: 52px;
    padding: 4px;
    border: 1px solid #a7f3d0;
    background: #ffffff;
    object-fit: contain;
    display: block;
}

.demo-ad-card--empleate .demo-ad-card__content strong {
    color: #047857 !important;
    font-weight: 800;
}

.demo-ad-card--empleate .demo-ad-card__content span {
    color: #1d4ed8 !important;
    font-weight: 500;
}

.demo-ad-card--empleate .demo-ad-card__content em {
    color: #0f172a !important;
    font-weight: 700;
}

.demo-ad-card--featured {
    position: relative;
    grid-column: 1 / -1;
    min-height: 88px;
    padding-top: 1.35rem;
}

.demo-ad-card__ribbon {
    position: absolute;
    top: 0.45rem;
    right: 0.55rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #047857;
    color: #ecfdf5;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.demo-ad-card--empleate.demo-ad-card--featured {
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.22);
}

/* Wait times */
.wait-section {
    border-top: 1px solid var(--border);
    padding: 1.5rem 1rem 2rem;
    scroll-margin-top: calc(var(--top-shell-h) + var(--nav-row-h) * 2 + 12px);
}

.wait-section--detail {
    background: var(--bg-card);
}

.wait-section__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.wait-section__header {
    margin-bottom: 1.25rem;
}

.wait-section__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.wait-section__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.wait-section__desc strong {
    color: var(--text);
}

.wait-section__meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.wait-region {
    margin-top: 1.25rem;
}

.wait-region--spaced {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.wait-region__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.wait-region__empty {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

.wait-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

.wait-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
}

.wait-card__head {
    margin-bottom: 0.75rem;
}

.wait-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
}

.wait-card__cbp {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.wait-card__time {
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.wait-card__minutes {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.wait-card__lane {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.wait-card__note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.625rem;
}

.wait-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
}

.wait-card__cam-link {
    font-weight: 600;
    font-size: 0.78rem;
    white-space: nowrap;
}

.wait-fastest-slot {
    margin-bottom: 0.85rem;
}

.wait-fastest {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: linear-gradient(90deg, rgba(5, 150, 105, 0.18), rgba(59, 130, 246, 0.12));
    border: 1px solid rgba(5, 150, 105, 0.35);
    text-decoration: none !important;
    color: var(--text);
}

.wait-fastest:hover {
    border-color: var(--mx);
}

.wait-fastest__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--mx);
}

.wait-fastest__value {
    flex: 1;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.wait-fastest__go {
    font-size: 0.78rem;
    color: var(--accent);
}

.wait-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.85rem 0 0.5rem;
    font-size: 0.82rem;
}

.wait-table th,
.wait-table td {
    padding: 0.45rem 0.55rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.wait-table th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    font-weight: 600;
}

.wait-table__estado {
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
}

.wait-table__estado--ok,
.wait-table__estado--delay {
    color: var(--success);
}

.wait-table__estado--closed {
    color: #ef4444;
}

.wait-detail-card__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.wait-detail-card__cam {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.wait-card__status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wait-status--ok .wait-card__minutes,
.wait-status--ok.wait-card__status-dot,
.wait-status--ok.wait-detail-card__badge {
    color: var(--success);
}
.wait-status--ok.wait-card__status-dot,
.wait-status--ok.wait-detail-card__badge {
    background: var(--success);
}

.wait-status--delay .wait-card__minutes,
.wait-status--delay.wait-detail-card__badge {
    color: #fbbf24;
}
.wait-status--delay.wait-card__status-dot {
    background: #fbbf24;
}

.wait-status--closed .wait-card__minutes,
.wait-status--closed.wait-detail-card__badge {
    color: #f87171;
}
.wait-status--closed.wait-card__status-dot {
    background: #f87171;
}

.wait-status--pending .wait-card__minutes,
.wait-status--pending.wait-detail-card__badge {
    color: var(--text-muted);
}

.wait-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wait-detail-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    scroll-margin-top: calc(var(--top-shell-h) + var(--nav-row-h) * 2 + 12px);
}

.wait-section--detail .wait-detail-card {
    background: var(--bg-elevated);
}

.wait-detail-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.wait-detail-card__head h3 {
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.wait-detail-card__head p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.wait-detail-card__badge {
    flex-shrink: 0;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 800;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.wait-detail-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.wait-detail__group {
    margin-bottom: 0.875rem;
}

.wait-detail__group-title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.wait-lane {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 0.375rem;
    border-left: 3px solid var(--border);
}

.wait-lane.wait-status--ok { border-left-color: var(--success); }
.wait-lane.wait-status--delay { border-left-color: #fbbf24; }
.wait-lane.wait-status--closed { border-left-color: #f87171; }

.wait-lane__icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.wait-lane__info {
    flex: 1;
    min-width: 0;
}

.wait-lane__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
}

.wait-lane__sub {
    display: block;
    font-size: 0.625rem;
    color: var(--text-muted);
}

.wait-lane__time {
    font-size: 0.9375rem;
    font-weight: 800;
    flex-shrink: 0;
}

.wait-lane.wait-status--ok .wait-lane__time { color: var(--success); }
.wait-lane.wait-status--delay .wait-lane__time { color: #fbbf24; }
.wait-lane.wait-status--closed .wait-lane__time { color: #f87171; }

.wait-detail-card__notice {
    margin-top: 0.75rem;
    padding: 0.625rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #93c5fd;
    line-height: 1.5;
}

/* Ads section */
.ads-section {
    border-top: 1px solid var(--border);
    background: var(--bg-card);
    padding: 2rem 1rem;
    scroll-margin-top: calc(var(--top-shell-h) + var(--nav-row-h) * 2 + 12px);
}

.ads-section__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ads-section__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ads-section__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ads-section__contact p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.ads-section__contact .btn {
    width: 100%;
    max-width: 320px;
    word-break: break-all;
}

/* Loading */
.loading-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 1.25rem 1rem calc(1.25rem + 16px);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer__source,
.footer__contact {
    margin-bottom: 0.375rem;
}

/* FAB refresh */
.fab {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + var(--safe-bottom));
    z-index: 90;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, background 0.15s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.fab:active {
    transform: scale(0.92);
    background: var(--accent-hover);
}

.refreshing .fab {
    animation: spin 0.8s linear infinite;
}

/* Modal — debajo del header + anuncios */
.modal {
    position: fixed;
    top: var(--top-shell-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.modal[hidden] {
    display: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.modal__content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
}

.modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    width: var(--tap);
    height: var(--tap);
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.modal__viewport {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.modal__media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__iframe,
.modal__video {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - var(--top-shell-h) - 88px);
    border: none;
    background: #000;
    object-fit: contain;
}

.modal__image {
    flex: 1;
    width: 100%;
    object-fit: contain;
    background: #000;
}

.modal__info {
    padding: 1rem 1rem calc(1rem + var(--safe-bottom));
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.modal__info h2 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.modal__info p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.refreshing .status-pill__dot {
    animation: spin 0.8s linear infinite;
    border-radius: 0;
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid var(--accent);
    border-top-color: transparent;
}

/* Tablet+ */
@media (min-width: 640px) {
    .wait-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .wait-summary {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 640px) {
    .header__title {
        font-size: 1.25rem;
    }

    .header__subtitle {
        font-size: 0.8125rem;
    }

    .bridge-card__badge {
        display: inline-block;
        font-size: 0.6875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        padding: 0.25rem 0.625rem;
        background: var(--bg-elevated);
        border-radius: 999px;
        color: var(--text-muted);
    }

    .bridge-card__cameras {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .camera-feed__tap-hint {
        display: none;
    }

    .ads-section__demos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .ads-section__contact .btn {
        width: auto;
    }

    .modal {
        align-items: center;
        padding: 1.5rem;
    }

    .modal__content {
        height: auto;
        max-width: 1100px;
        max-height: 90vh;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        overflow: hidden;
    }

    .modal__image {
        max-height: 70vh;
        flex: none;
    }
}

/* Desktop */
@media (min-width: 900px) {
    .page-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 0 1.25rem 2rem;
    }

    .page-layout__content {
        flex: 1;
    }

    .travel-sidebar {
        display: block;
        order: 0;
        width: 300px;
        flex-shrink: 0;
        padding: 1.5rem 0 0;
        position: sticky;
        top: calc(var(--top-shell-h) + var(--nav-row-h) + 42px);
        max-height: calc(100vh - var(--top-shell-h) - var(--nav-row-h) - 56px);
        overflow-y: auto;
    }

    .travel-sidebar--desktop {
        display: block;
    }

    .app-nav__link--ind-mobile {
        display: none;
    }

    .app-nav__link--ind-desktop {
        display: inline-flex;
    }

    .travel-mobile-dyk,
    .travel-mobile-rates {
        display: none;
    }

    .main {
        padding: 1.5rem 0 3rem;
    }

    .bridges-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .bridge-card--hidden {
        display: none;
    }

    .hero__text {
        font-size: 1.0625rem;
    }

    .fab {
        bottom: calc(1.25rem + var(--safe-bottom));
    }

    .footer {
        padding-bottom: 1.5rem;
    }

    body {
        padding-bottom: 0;
    }

    .ads-section__demos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1100px) {
    .travel-sidebar {
        width: 320px;
    }
}

.info-ribbon {
    display: none;
}

.info-ribbon__scroll {
    display: flex;
    flex: 1;
    gap: 0.375rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: center;
}

.info-ribbon__scroll::-webkit-scrollbar {
    display: none;
}

.info-ribbon__chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.6875rem;
    text-decoration: none !important;
    white-space: nowrap;
}

.info-ribbon__chip-value {
    color: var(--text);
    font-weight: 600;
}

.info-ribbon__more {
    flex-shrink: 0;
    align-self: center;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none !important;
    padding: 0.25rem 0.5rem;
}

.info-ribbon__loading,
.info-ribbon__err {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* Indicadores — sección completa */
.ind-section {
    padding: 1.25rem 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: rgba(18, 24, 38, 0.45);
}

.ind-section--juarez {
    background: rgba(11, 15, 23, 0.6);
}

.ind-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ind-section__header {
    margin-bottom: 1rem;
}

.ind-section__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.ind-section__desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.ind-section__meta {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ind-grid {
    display: grid;
    gap: 0.75rem;
}

.ind-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.875rem 1rem;
}

.ind-card--wide {
    grid-column: 1 / -1;
}

.ind-card__head {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    margin-bottom: 0.625rem;
}

.ind-card__icon {
    font-size: 1.25rem;
    line-height: 1;
}

.ind-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
}

.ind-card__sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ind-card__row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8125rem;
    padding: 0.35rem 0;
    border-top: 1px solid rgba(42, 53, 72, 0.6);
}

.ind-card__row:first-of-type {
    border-top: none;
}

.ind-card__row strong {
    color: var(--text);
    font-weight: 600;
    text-align: right;
}

.ind-card__time,
.ind-card__note {
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.ind-card__source {
    display: inline-block;
    margin-top: 0.625rem;
    font-size: 0.6875rem;
}

.ind-disclaimer {
    margin-top: 1rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.juarez-panel__note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.juarez-grid {
    display: grid;
    gap: 0.5rem;
}

.juarez-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: inherit;
    text-decoration: none !important;
    transition: border-color 0.15s, background 0.15s;
}

.juarez-card:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
}

.juarez-card__icon {
    font-size: 1.25rem;
}

.juarez-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.juarez-card__body strong {
    font-size: 0.875rem;
}

.juarez-card__body em {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: normal;
}

.juarez-card__go {
    color: var(--accent);
    font-weight: 700;
}

.juarez-panel__footer {
    margin-top: 0.875rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-ribbon__chip {
        font-size: 0.75rem;
    }
}

@media (min-width: 900px) {
    .ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .juarez-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
