    .family-landing-shell {
        background: #fff;
        padding: 0 0 60px;
        min-height: 70vh;
    }
    .family-page-header {
        border-radius: 0 !important;
    }
    .family-landing-container {
        max-width: 980px;
        margin: 0 auto;
        padding: 0 16px;
    }
    .family-landing-description {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        color: #fff;
        font-size: 1.05rem;
        line-height: 1.6;
    }
    .family-around-me-wrap {
        margin-top: 14px;
        display: flex;
        justify-content: center;
    }
    .family-around-me-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.55);
        background: rgba(255, 255, 255, 0.16);
        color: #fff;
        border-radius: 999px;
        padding: 0.62rem 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: background .2s ease, transform .2s ease;
    }
    .family-around-me-btn:hover {
        color: #fff;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.24);
        transform: translateY(-1px);
    }
    .family-landing-cities-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1d1d1f;
        margin-bottom: 14px;
    }
    .family-cities-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .family-city-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px;
        min-height: 82px;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        color: #1d1d1f;
        text-decoration: none;
        background: #fff;
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        font-weight: 600;
    }
    .family-city-link:hover {
        transform: translateY(-1px);
        border-color: rgba(249, 163, 146, 0.8);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
        color: #1d1d1f;
        text-decoration: none;
    }
    .family-city-main {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }
    .family-city-thumb {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Evite toute déformation : on rogne (cover) */
        object-position: center !important;
        display: block;
        max-width: none;
        transform: scale(1.05); /* Léger zoom pour privilégier le rognage */
        transform-origin: center;
    }
    .family-city-thumb-wrap {
        width: 96px;
        height: 96px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.08);
        flex: 0 0 auto;
        flex-shrink: 0;
        min-width: 96px;
        min-height: 96px;
        background: #f5f5f7;
    }
    .family-city-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.2rem;
        font-weight: 700;
    }
    .family-city-arrow {
        color: #F9A392;
        font-size: 1.55rem;
        line-height: 1;
    }
    .family-editorial-section {
        margin-top: 34px;
        padding-top: 26px;
    }
    .family-editorial-intro {
        color: #3a3a3c;
        line-height: 1.75;
        margin-bottom: 28px;
    }
    .family-editorial-title {
        font-size: 1.28rem;
        font-weight: 700;
        color: #1d1d1f;
        margin: 0 0 12px;
    }
    .family-editorial-text {
        color: #4a4a4f;
        line-height: 1.75;
        margin-bottom: 24px;
    }
    .family-popular-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin: 34px 0 12px;
        color: #1d1d1f;
    }
    .family-popular-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .family-popular-pill {
        display: inline-flex;
        align-items: center;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 0.95rem;
        color: #1d1d1f;
        text-decoration: none;
        transition: all .2s ease;
        background: #fff;
    }
    .family-popular-pill:hover {
        text-decoration: none;
        color: #1d1d1f;
        border-color: rgba(249, 163, 146, 0.85);
        background: #fef1ef;
    }
    @media (max-width: 767.98px) {
        .family-landing-shell {
            padding-bottom: 40px;
        }
        .family-landing-description {
            font-size: 0.98rem;
        }
        .family-cities-grid {
            grid-template-columns: 1fr;
        }
        .family-city-link {
            padding: 6px;
            min-height: 68px;
        }
        .family-city-thumb-wrap {
            width: 78px;
            height: 78px;
            min-width: 78px;
            min-height: 78px;
        }
        .family-city-name {
            font-size: 1.02rem;
        }
        .family-city-arrow {
            font-size: 1.22rem;
        }
    }
