:root {
    /* home-v4 variables — ahora alineadas al sistema global */
    --home-v4-ink:          #1a1a3e;
    --home-v4-ink-strong:   #0f172a;

    /* Secondary (verde) para elementos de éxito / comunidad */
    --home-v4-teal:         #16a34a;
    --home-v4-teal-soft:    #bbf7d0;

    /* Accent (ámbar) para urgencia / Hoy */
    --home-v4-sun:          #f59e0b;
    --home-v4-sun-soft:     #fef3c7;

    /* Danger para elementos críticos */
    --home-v4-coral:        #dc2626;

    /* Surfaces */
    --home-v4-surface:      #ffffff;
    --home-v4-surface-soft: #f8fafc;
    --home-v4-border:       rgba(91, 92, 235, 0.12);

    /* Shadows usando el tinte primario */
    --home-v4-shadow:       0 22px 52px rgba(15, 23, 42, 0.10);
    --home-v4-shadow-soft:  0 14px 30px rgba(15, 23, 42, 0.07);
}

.home-v4 {
    padding-bottom: 88px;
    background:
        radial-gradient(circle at top left, rgba(242, 181, 68, 0.08), transparent 22%),
        linear-gradient(180deg, #fffdf9 0%, #f7fbfe 36%, #ffffff 100%);
}

.home-v4-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-v4-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-v4-hero {
    position: relative;
    overflow: clip;
    padding: 32px 0 40px;
    background:
        radial-gradient(circle at left 10%, rgba(91, 92, 235, 0.22), transparent 22%),
        radial-gradient(circle at right top, rgba(22, 163, 74, 0.20), transparent 24%),
        linear-gradient(135deg, #1a1a5c 0%, #3b3cb8 55%, #134e2c 100%);
}

.home-v4-hero::before,
.home-v4-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(8px);
}

.home-v4-hero::before {
    width: 260px;
    height: 260px;
    right: 4%;
    top: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.home-v4-hero::after {
    width: 180px;
    height: 180px;
    left: 3%;
    bottom: 10px;
    background: rgba(255, 225, 173, 0.18);
}

.home-v4-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 24px;
    align-items: stretch;
}

.home-v4-pill,
.home-v4-stage-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.home-v4-pill {
    margin-bottom: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-v4-hero-copy h1,
.home-v4-hero-copy p,
.home-v4-stage h2,
.home-v4-stage p,
.home-v4-stage strong,
.home-v4-stage span {
    color: #fff;
}

.home-v4-hero-copy h1 {
    margin: 0 0 14px;
    max-width: 11.5ch;
    font-size: clamp(2.5rem, 4.8vw, 4.5rem);
    line-height: 0.95;
}

.home-v4-hero-text {
    max-width: 58ch;
    font-size: 1.06rem;
    color: rgba(255, 255, 255, 0.9);
}

.home-v4-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.home-v4-metric-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.home-v4-metric-card {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.home-v4-metric-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.home-v4-metric-card strong {
    display: block;
    font-size: 1.32rem;
    color: #fff;
}

.home-v4-metric-card span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
}

.home-v4-stage {
    display: grid;
    gap: 16px;
    position: relative;
}

.home-v4-stage-card,
.home-v4-search-card,
.home-v4-final-cta {
    border-radius: 28px;
    border: 1px solid var(--home-v4-border);
    box-shadow: var(--home-v4-shadow);
}

.home-v4-stage-card {
    padding: 20px;
    background: rgba(8, 31, 56, 0.28);
    border-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-v4-stage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
}

.home-v4-stage-card--hero {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
        rgba(8, 31, 56, 0.34);
}

.home-v4-stage-head,
.home-v4-card-topline,
.home-v4-stage-meta,
.home-v4-section-head,
.home-v4-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-v4-stage-kicker {
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    border: 0;
}

.home-v4-stage-thumb {
    margin-top: 16px;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.08);
}

.home-v4-stage-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-v4-stage-body {
    margin-top: 16px;
}

.home-v4-stage-zone {
    margin-bottom: 6px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.home-v4-stage-body h2 {
    margin: 0 0 8px;
    font-size: 1.55rem;
    line-height: 1.05;
}

.home-v4-stage-meta {
    margin-top: 14px;
    flex-wrap: wrap;
}

.home-v4-inline-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.home-v4-inline-link:hover {
    text-decoration: underline;
}

.home-v4-stage-card--zones {
    background: rgba(255, 255, 255, 0.08);
}

.home-v4-stage-chip-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.home-v4-stage-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.home-v4-stage-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.14);
}

.home-v4-stage-chip strong {
    color: #fff;
}

.home-v4-stage-chip span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
}

.home-v4-empty-panel {
    margin-top: 10px;
}

.home-v4-empty-panel strong {
    display: block;
    margin-bottom: 8px;
}

.home-v4-search-section { margin-top: -10px; }

.home-v4-search-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 254, 0.98) 100%);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.home-v4-search-card:hover {
    transform: translateY(-3px);
}

.home-v4-section-head {
    margin-bottom: 16px;
}

.home-v4-section-head h2 {
    margin: 4px 0 0;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    color: var(--home-v4-ink-strong);
}

.home-v4-search-form {
    margin: 0;
}

.home-v4-search-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.1fr 1.35fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.home-v4-search-grid label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--home-v4-ink);
}

.home-v4-search-grid input,
.home-v4-search-grid select {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid #d6e1ea;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-v4-search-grid input:focus,
.home-v4-search-grid select:focus,
.home-v4-inline-link:focus-visible,
.home-v4-stage-chip:focus-visible,
.home-v4-chip-link:focus-visible {
    outline: 3px solid rgba(91, 92, 235, 0.2);
    outline-offset: 2px;
}

.home-v4-search-grid input:focus,
.home-v4-search-grid select:focus {
    border-color: rgba(91, 92, 235, 0.36);
    box-shadow: 0 0 0 4px rgba(91, 92, 235, 0.08);
    transform: translateY(-1px);
}

.home-v4-search-action {
    min-width: 180px;
}

.home-v4-search-note {
    margin: 12px 0 0;
    color: rgba(13, 34, 52, 0.68);
    font-size: 0.94rem;
}

.home-v4-search-card {
    position: relative;
    overflow: hidden;
}

.home-v4-search-card.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0) 72%);
    animation: homeV4SearchShimmer 1s linear infinite;
    pointer-events: none;
}

.home-v4-search-card.is-loading .home-v4-search-form,
.home-v4-search-card.is-loading .home-v4-search-note {
    opacity: 0.58;
}

.home-v4-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
}

.home-v4-badge--upcoming {
    color: #92400e;
    background: var(--home-v4-sun-soft);
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.home-v4-badge--today {
    color: #92400e;
    background: var(--ez-accent-100);
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.home-v4-badge--week {
    color: var(--ez-primary-600);
    background: var(--ez-primary-100);
    border: 1px solid rgba(91, 92, 235, 0.22);
}

.home-v4-badge--neutral {
    color: var(--ez-neutral-700);
    background: var(--ez-neutral-100);
    border: 1px solid var(--ez-border);
}

.home-v4-badge--new {
    color: var(--ez-secondary-600);
    background: var(--ez-secondary-50);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.home-v4-chip-link,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dbe6ef;
    color: var(--home-v4-ink);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-v4-chip-link:hover,
.section-link:hover {
    transform: translateY(-1px);
    border-color: #c2d3e0;
    color: var(--home-v4-ink-strong);
    box-shadow: 0 10px 18px rgba(9, 32, 54, 0.08);
}

.home-v4-card {
    border-radius: 22px;
    padding: 14px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-v4-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 36px rgba(9, 32, 54, 0.12);
    border-color: rgba(18, 53, 82, 0.18);
}

.home-v4-card .card-thumb {
    margin: -14px -14px 14px;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.home-v4-card .card-thumb img {
    transition: transform 0.5s ease;
}

.home-v4-card:hover .card-thumb img {
    transform: scale(1.04);
}

.home-v4-card-topline {
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.home-v4-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    color: #6b7280;
    font-size: 0.92rem;
}

.home-v4-card-organizer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #475569;
    font-size: 0.92rem;
    font-weight: 600;
}

.home-v4-card-organizer a {
    color: var(--ez-primary-600);
    text-decoration: none;
}

.home-v4-card-organizer a:hover {
    text-decoration: underline;
}

.home-v4-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.home-v4-card-link-secondary {
    color: var(--ez-primary-600);
}

@keyframes homeV4SearchShimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.home-v4-empty-card {
    padding: 30px 24px;
    text-align: center;
}

.empty-state-icon {
    margin-bottom: 10px;
    font-size: 1.6rem;
    color: var(--home-v4-coral);
}

.empty-actions {
    margin-top: 16px;
}

.home-v4-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
    gap: 24px;
    padding: 26px;
    background:
        radial-gradient(circle at top left, rgba(242, 181, 68, 0.12), transparent 20%),
        linear-gradient(180deg, #fff8ef 0%, #fff 100%);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.home-v4-final-cta:hover {
    transform: translateY(-3px);
}

.home-v4-final-copy h2 {
    margin: 4px 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--home-v4-ink-strong);
}

.home-v4-final-copy p {
    max-width: 58ch;
}

.home-v4-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.home-v4-final-form {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 53, 82, 0.08);
    box-shadow: var(--home-v4-shadow-soft);
}

.home-v4-newsletter-form .form-row {
    margin-bottom: 14px;
}

.home-v4-newsletter-form .newsletter-trust {
    margin-top: 12px;
}

.home-v4-path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.home-v4-path-card {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid var(--home-v4-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 254, 0.96) 100%);
    box-shadow: var(--home-v4-shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-v4-path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(9, 32, 54, 0.1);
    border-color: rgba(18, 53, 82, 0.18);
}

.home-v4-path-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    background: linear-gradient(135deg, #5b5ceb 0%, #16a34a 100%);
    box-shadow: 0 14px 24px rgba(19, 55, 87, 0.16);
}

.home-v4-path-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: var(--home-v4-ink-strong);
}

.home-v4-path-card p {
    margin: 0 0 18px;
    color: #5d697a;
}

.home-v4-floating-stack {
    position: absolute;
    right: -16px;
    bottom: -22px;
    display: grid;
    gap: 12px;
    width: min(250px, 52%);
    pointer-events: none;
}

.home-v4-float-card {
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 40px rgba(3, 13, 28, 0.18);
    backdrop-filter: blur(12px);
    animation: homeV4FloatCard 8s ease-in-out infinite;
}

.home-v4-float-card:nth-child(2) {
    animation-delay: -2.4s;
    margin-left: 18px;
}

.home-v4-float-card:nth-child(3) {
    animation-delay: -4.8s;
    margin-left: 38px;
}

.home-v4-float-card--warm {
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.96) 0%, rgba(254, 243, 199, 0.92) 100%);
    color: #92400e;
}

.home-v4-float-card--teal {
    background: linear-gradient(180deg, rgba(240, 253, 244, 0.96) 0%, rgba(187, 247, 208, 0.92) 100%);
    color: var(--ez-secondary-600);
}

.home-v4-float-card--light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 240, 254, 0.92) 100%);
    color: var(--home-v4-ink-strong);
}

.home-v4-float-card span,
.home-v4-float-card strong,
.home-v4-float-card small {
    display: block;
}

.home-v4-float-card span {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-v4-float-card strong {
    margin: 6px 0 4px;
    font-size: 1.05rem;
    line-height: 1.15;
}

.home-v4-float-card small {
    opacity: 0.82;
    font-size: 0.86rem;
}

@keyframes homeV4FloatCard {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@media (max-width: 960px) {
    .home-v4-hero-shell {
        grid-template-columns: 1fr;
    }

    .home-v4-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-v4-search-action {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .home-v4-floating-stack {
        position: static;
        width: 100%;
        margin-top: 4px;
    }

    .home-v4-final-cta,
    .home-v4-path-grid {
        grid-template-columns: 1fr;
    }

    .home-v4-float-card:nth-child(2),
    .home-v4-float-card:nth-child(3) {
        margin-left: 0;
    }
}

@media (max-width: 720px) {
    .home-v4 {
        padding-bottom: 64px;
    }

    .home-v4-hero {
        padding: 22px 0 28px;
    }

    .home-v4-hero-copy h1 {
        max-width: none;
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .home-v4-hero-actions,
    .home-v4-final-actions {
        flex-direction: column;
    }

    .home-v4-hero-actions .btn,
    .home-v4-final-actions .btn,
    .home-v4-path-card .btn {
        width: 100%;
    }

    .home-v4-search-card,
    .home-v4-final-cta {
        padding: 18px;
        border-radius: 22px;
    }

    .home-v4-search-grid {
        grid-template-columns: 1fr;
    }

    .home-v4-section-head,
    .home-v4-stage-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-v4-stage-thumb {
        aspect-ratio: 4 / 3;
    }

    .home-v4-floating-stack {
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v4-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-v4-float-card,
    .home-v4-card,
    .home-v4-stage-card,
    .home-v4-search-card,
    .home-v4-final-cta,
    .home-v4-chip-link,
    .section-link,
    .home-v4-metric-card {
        animation: none !important;
        transition: none !important;
    }
}

/* ===== HOME V4 — DYNAMIC ENHANCEMENTS ===== */

/* --- Timing badges (new variants) --- */

.home-v4-badge--tomorrow {
    color: #b45309;
    background: var(--ez-accent-50);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.home-v4-badge--weekend {
    color: var(--ez-primary-600);
    background: var(--ez-primary-50);
    border: 1px solid rgba(91, 92, 235, 0.2);
}

/* --- Badge overlaid on card thumb --- */

.home-v4-card-thumb-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.home-v4-card .card-thumb {
    position: relative;
}

/* --- Urgency state — Hoy --- */

.home-v4-card--urgent {
    border-color: rgba(249, 115, 22, 0.4) !important;
    background: linear-gradient(180deg, #fff9f5 0%, #fff 100%) !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.08), 0 14px 28px rgba(9, 32, 54, 0.08) !important;
}

.home-v4-card--urgent:hover {
    border-color: rgba(249, 115, 22, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12), 0 22px 36px rgba(9, 32, 54, 0.12) !important;
}

/* --- New vendor state --- */

.home-v4-card--new {
    border-color: rgba(16, 185, 129, 0.3) !important;
    background: linear-gradient(180deg, #f0fdf9 0%, #fff 100%) !important;
}

/* --- Instagram meta chip --- */

.home-v4-card-instagram {
    color: #c026d3;
    font-weight: 700;
    font-size: 0.88rem;
}

/* --- Quick chips in search section --- */

.home-v4-quick-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.home-v4-quick-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--home-v4-border);
    background: var(--home-v4-surface);
    color: var(--home-v4-ink);
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}

.home-v4-quick-chip:hover {
    background: var(--ez-primary-50);
    border-color: rgba(91, 92, 235, 0.3);
    color: var(--ez-primary-600);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(91, 92, 235, 0.1);
}

.home-v4-quick-chip.is-active {
    background: var(--ez-primary-500);
    border-color: var(--ez-primary-500);
    color: #fff;
}

/* --- Card grid stagger entrance --- */

.home-v4-reveal.is-visible .home-v4-card:nth-child(2) { transition-delay: 60ms; }
.home-v4-reveal.is-visible .home-v4-card:nth-child(3) { transition-delay: 120ms; }
.home-v4-reveal.is-visible .home-v4-card:nth-child(4) { transition-delay: 180ms; }
.home-v4-reveal.is-visible .home-v4-card:nth-child(5) { transition-delay: 220ms; }
.home-v4-reveal.is-visible .home-v4-card:nth-child(6) { transition-delay: 260ms; }

/* --- Search section section-head stacking on mobile --- */

@media (max-width: 720px) {
    .home-v4-quick-chips {
        gap: 6px;
    }

    .home-v4-quick-chip {
        height: 34px;
        padding: 0 12px;
        font-size: 0.82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-v4-card--urgent,
    .home-v4-card--new,
    .home-v4-quick-chip {
        transition: none !important;
        animation: none !important;
    }
}
