.lsms-jobmap-shortcode {
    margin: 1.5rem 0;
}

.lsms-jobmap-map-shell {
    border: 1px solid #dbe1ea;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
}

.lsms-jobmap-map {
    width: 100%;
    min-height: 460px;
}

.lsms-jobmap-map-error {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #334155;
    background: #f8fafc;
    font-size: 0.95rem;
}

.lsms-jobmap-section {
    margin-top: 1rem;
}

.lsms-jobmap-title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    line-height: 1.2;
}

.lsms-jobmap-empty {
    margin: 0;
    color: #475569;
}

.lsms-jobmap-city-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.lsms-jobmap-city-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid #dbe1ea;
    border-radius: 10px;
    background: #ffffff;
}

.lsms-jobmap-city-link,
.lsms-jobmap-city-label {
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.lsms-jobmap-city-link:hover {
    text-decoration: underline;
}

.lsms-jobmap-city-total {
    display: inline-flex;
    min-width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
}

.lsms-jobmap-job-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lsms-jobmap-job-card {
    border: 1px solid #dbe1ea;
    border-radius: 12px;
    padding: 0.9rem;
    background: #ffffff;
}

.lsms-jobmap-media-wrap {
    margin: 0 0 0.75rem;
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
}

.lsms-jobmap-image,
.lsms-jobmap-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.lsms-jobmap-job-title {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
    line-height: 1.35;
}

.lsms-jobmap-job-meta {
    margin: 0 0 0.5rem;
    color: #475569;
    font-size: 0.9rem;
}

.lsms-jobmap-job-summary {
    margin: 0;
    color: #1e293b;
    font-size: 0.96rem;
    line-height: 1.5;
}

.lsms-jobmap-pagination {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.lsms-jobmap-page-link {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
}

.lsms-jobmap-page-label {
    color: #334155;
    font-size: 0.95rem;
}

.lsms-jobmap-error {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

@media (max-width: 1024px) {
    .lsms-jobmap-job-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .lsms-jobmap-map {
        min-height: 340px;
    }

    .lsms-jobmap-job-list {
        grid-template-columns: 1fr;
    }
}

