.wpgmpld-listing-details {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 10px 0;
}

/* Two-column layout container */
.wpgmpld-two-column {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

/* Left and right columns: equal width */
.wpgmpld-left,
.wpgmpld-right {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}

/* Center the extra fields content vertically */
.wpgmpld-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image or Map inside left column */
.wpgmpld-left iframe {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.wpgmpld-left img {
    display: block;
    width: 70%;
    height: auto;
    border-radius: 8px;
}

/* Each info row */
.wpgmpld-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* Strong labels */
.wpgmpld-row strong {
    min-width: 130px;
    font-weight: 600;
}

/* Marker icons */
.wpgmpld-marker {
    width: 24px;
    height: 24px;
    margin-left: 5px;
}

/* Paragraphs */
.wpgmpld-row p {
    width: 100%;
}

/* Transform dashed keys visually */
.wpgmpld-key {
    text-transform: capitalize;
}

/* Map full-width below image/extra field layout */
.wpgmpld-map-full {
    width: 100%;
    margin-top: 30px;
}

/* Add equal spacing between sections */
.wpgmpld-description,
.wpgmpld-extra-fields,
.wpgmpld-category,
.wpgmpld-row {
    margin-bottom: 16px;
}

/* Optional responsive stacking for mobile */
@media (max-width: 768px) {
    .wpgmpld-two-column {
        flex-direction: column;
        gap: 20px;
    }

    .wpgmpld-left,
    .wpgmpld-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .wpgmpld-right {
        justify-content: flex-start;
    }
}
