/* Listing Fact Sheet — faits clés (dl compact deux colonnes) */

.listing-fact-sheet {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: #faf8f5;
    border: 1px solid #eee6da;
    border-radius: 12px;
}

.listing-fact-sheet__title {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.listing-fact-sheet__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 2rem;
    margin: 0;
}

.listing-fact-sheet__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #e8dfd2;
}

.listing-fact-sheet__label {
    color: #6b6257;
    font-weight: 500;
}

.listing-fact-sheet__value {
    margin: 0;
    font-weight: 600;
    text-align: right;
}

@media (max-width: 640px) {
    .listing-fact-sheet__list {
        grid-template-columns: 1fr;
    }
}
