.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: center;
    align-items: stretch;
    text-align: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.location-preview {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-decoration: none;
    justify-content: center;
    padding: 1rem;
    transition: 0.2s;
}

.location-preview:hover {
    box-shadow: 10px 10px var(--shadow);
    border-top: 1px solid var(--highlight-hover);    
    border-left: 1px solid var(--highlight-hover);    
}

.location-name {
    font-size: large;
    font-weight: bold;
    color: var(--text);
    margin-top: 0 0.5rem;
}

.location-town {
    color: var(--text-muted);
}

.location-preview:hover .location-name {
    text-decoration: underline; 
}
