.city-introduction {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: solid 0.5px #00000015;
    box-shadow: 0 6px 55px rgba(0, 0, 0, 0.08);
    padding: 24px;
    border-radius: 16px;
}

@media (prefers-color-scheme: dark) {
    .city-introduction {
        background-color: #ffffff10;
        border: solid 0.5px #ffffff25;
    }
}

.city-introduction h2 {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.city-introduction p {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.city-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin: 0;
}

.city-fact {
    border-radius: 12px;
    background-color: #00000008;
    padding: 10px 12px;
}

.city-fact dt {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.65;
}

.city-fact dd {
    margin: 2px 0 0;
    font-size: 0.95rem;
    font-weight: 700;
}

@media (prefers-color-scheme: dark) {
    .city-fact {
        background-color: #ffffff12;
    }
}

.city-introduction .download-button {
    background: #9704f9;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    align-self: flex-start; /* 👈 prevents stretching to parent width */
    width: fit-content;     /* 👈 makes it fit its own text */
    transition: all 0.2s ease;
}

.city-introduction .download-button:hover {
    transform: scale(1.05);
    background-color: #a855f7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.line-list-truncated {
    margin-top: 12px;
    font-size: 0.9rem;
}
