.property-layout-row {
    --property-pane-height: calc(110vh - 88px);
    height: var(--property-pane-height);
}

.property-list-column,
.property-map-column {
    height: 100%;
}

.property-list-column {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.property-list-column .sticky-top {
    top: 0;
    flex: 0 0 auto;
}

#property-list-container {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

.property-map-area {
    height: 100%;
    width: 100%;
}

.property-card-trigger {
    padding: 0;
}

.property-card-trigger:focus {
    outline: none;
}

.property-neon-marker-wrap {
    position: relative;
    width: 18px;
    height: 18px;
}

.property-neon-marker-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(12, 18, 30, 0.65);
    background: rgba(9, 14, 24, 0.25);
}

.property-neon-marker-core,
.property-neon-marker-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.property-neon-marker-core {
    width: 8px;
    height: 8px;
    background: #14f1ff;
    border: 1px solid #0a1020;
    box-shadow: 0 0 8px rgba(20, 241, 255, 0.95), 0 0 16px rgba(20, 241, 255, 0.65);
}

.property-neon-marker-pulse {
    width: 8px;
    height: 8px;
    border: 2px solid rgba(20, 241, 255, 0.85);
    box-shadow: 0 0 14px rgba(20, 241, 255, 0.55);
    animation: propertyNeonPulse 1.2s ease-out infinite;
}

@keyframes propertyNeonPulse {
    0% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1);
    }
    70% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.6);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.6);
    }
}

@media (max-width: 1199.98px) {
    .property-layout-row {
        height: auto;
    }

    .property-list-column,
    .property-map-column {
        height: auto;
    }

    .property-list-column {
        overflow: visible;
    }

    .property-list-column .sticky-top {
        position: static;
    }

    #property-list-container {
        max-height: none;
        overflow: visible;
    }

    .property-map-area {
        height: 420px;
    }
}

@media (max-width: 575.98px) {
    .property-map-area {
        height: 320px;
    }
}
