.landing-seo-page .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.landing-seo-page .city-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(65, 136, 201, 0.08);
    color: #4188c9;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.landing-seo-page .city-link:hover {
    background: #4188c9;
    color: #fff;
}

.landing-users h2,
.landing-cities h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.landing-seo-text {
    line-height: 1.7;
    color: #555;
    font-size: 0.95rem;
}

.landing-seo-text h2,
.landing-seo-text h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.landing-seo-text p {
    margin-bottom: 1rem;
}

body.body-landing-page .landing-seo-page .breadcrumb {
    background: transparent;
    padding: 0.5rem 0;
}

body.body-landing-page .landing-seo-page .directory-list {
    row-gap: 1.5rem;
}

/* --- Landing user grid / profile cards --- */
.landing-users .directory-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.landing-users .directory-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-bottom: 1.5rem;
}

.landing-users .directory-item .card {
    height: 100%;
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.landing-users .directory-item .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.landing-users .user-photo {
    display: block;
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}

.landing-users .user-photo .card-img-top-wrapper {
    min-height: 240px;
}

.landing-users .user-photo .card-img-top {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
}

.landing-users .card-body {
    padding: 1rem;
}

.landing-users .card-body h4 {
    font-size: 1rem;
    line-height: 1.3;
}

.landing-users .card-body .display-name {
    font-weight: 600;
    color: #333;
}

.landing-users .card-body .text-muted {
    color: #777;
    font-size: 0.9rem;
}

.landing-users .user-photos-count {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
}
