.weather-row {
    max-width: 1200px;
    margin: 0 auto;
}

.weather-search {
    max-width: 430px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: box-shadow 0.2s ease;
}

.weather-search:focus-within {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
}

.weather-card {
    min-width: 300px;
    max-width: 380px;
    flex: 1 1 300px;
    background: linear-gradient(135deg, #0891b2 0%, #6366f1 100%);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.weather-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.3);
}

.weather-card .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.weather-icon {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* Dark mode */
[data-theme="dark"] .weather-search {
    background: var(--surface);
    border-color: var(--border);
}

[data-theme="dark"] .weather-card {
    background: linear-gradient(135deg, #164e63 0%, #312e81 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1000px) {
    .weather-card {
        min-width: 100%;
        max-width: 100%;
    }
}
