/* Container */
.ajax-property-display__inner {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 12px 40px; /* row gap / column gap */
}

/* Each row */
.ajax-property-display__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

/* Label */
.ajax-property-display__cell--label {
    font-weight: 600 !important;
    margin-right: 6px;
    white-space: normal;
    width: 40%;
    overflow: hidden;
}

/* Value */
.ajax-property-display__cell--value {
    flex: 1;
    min-width: 0;
}

/* ========================= */
/* Responsive: stack columns */
/* ========================= */

@media (max-width: 768px) {
    .ajax-property-display__inner {
        grid-template-columns: 1fr; /* Single column */
    }
}

.ajax-property-display__selection {
    margin-bottom: 36px;
}

.ajax-property-display__selection-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.ajax-property-display__selection-text {
    font-weight: 600;
}

.ajax-property-display__change {
    font-size: 12px;
    padding: 4px 8px;
    cursor: pointer;
    background: transparent;
    border: 1px solid #ccc;
}

.ajax-property-display__selection-text .apd-label {
    font-weight: 600;
    color: #00bcff !important;
}

.ajax-property-display__selection-text .apd-value {
    font-weight: normal;
    color: inherit;
}

.ajax-property-display {
    margin-top: 18px !important;
}