.property-details-table {
    width: 100%;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.property-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-style: solid;
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 3px;
    border-left-width: 0px;
    border-color: var(--e-global-color-accent);
    border-color: var(--e-global-color-accent);
    padding-top: 0px;
    padding-bottom: 1.5rem;
    padding-left: 0px;
    padding-right: 0px;
}

.property-row:last-child {
    border-bottom: none;
}

.property-label {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight);
    text-transform: var(--e-global-typography-primary-text-transform);
    color: var(--e-global-color-primary);
    font-size: var(--e-global-typography-text-font-size);
    margin-bottom: 0;
}

.property-value {
    font-size: var(--e-global-typography-text-font-size);
    font-family: "SF UI Display", sans-serif;
    color: var(--primary-color-blue);
    font-weight: var(--e-global-typography-text-font-weight);
}

@media (max-width: 768px) {
    .property-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .property-label {
        margin-bottom: 0.5rem;
    }

    .property-value {
        text-align: left;
    }
}