.city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.city-links a {
    background: #ffffff;
    border: 1px solid #e5d7e6;
    border-radius: 18px;
    color: #4b134f;
    padding: 0.45rem 0.8rem;
    text-decoration: none;
}

.city-links a:hover {
    border-color: #6e4a7e;
}

.logements-mini-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.mini-logement {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    color: inherit;
    display: block;
    padding: 1.2rem;
    text-decoration: none;
}

.mini-logement img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    display: block;
    margin-bottom: 0.8rem;
    object-fit: cover;
    width: 100%;
}

.mini-logement span,
.mini-logement small {
    display: block;
}

.mini-logement span {
    color: #4b134f;
    font-weight: 700;
}

.mini-logement small {
    color: #666666;
    margin-top: 0.25rem;
}
