/* Стили для шорткода отображения города */
.location-city-display {
    display: inline-flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 15px;
    line-height: 1.35;
}

.location-city-label {
    color: #6b7280;
    font-weight: 400;
}

.location-city-name {
    position: relative;
    color: var(--location-primary-color, #3b82f6);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s ease;
    padding: 1px 3px;
    border-radius: 4px;
    word-break: break-word;
    white-space: normal;
}

.location-city-name:hover {
    color: var(--location-hover-color, #2563eb);
    text-decoration-color: var(--location-hover-color, #2563eb);
}

.location-city-name:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--location-hover-color, #2563eb);
    opacity: 0.1;
    border-radius: 4px;
    z-index: -1;
}

.location-city-name:active {
    color: var(--location-active-color, #1d4ed8);
}

/* Адаптивность */
@media (max-width: 768px) {
    .location-city-display {
        font-size: 14px;
    }
}

