/* =============================================================================
   PANEL - Ticker (sizing and layout only - base styles from shared/ui.css)
   ============================================================================= */

/* Input sizing */
.ticker-input {
    flex: 1 1 auto;
    min-width: 200px;
    max-width: 400px;
}

/* Layout */
.ticker-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1200px) {
    .ticker-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        position: relative;
    }

    .ticker-layout::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: var(--color-accent);
    }
}
