.brinvest-price-list {
    --brinvest-ink: #17202a;
    --brinvest-muted: #667085;
    --brinvest-line: #e5e7eb;
    --brinvest-accent: #a42522;
    color: var(--brinvest-ink);
    margin: 2rem 0;
}

.brinvest-price-header {
    margin-bottom: 1.5rem;
}

.brinvest-price-header h2 {
    margin: .15rem 0 .65rem;
}

.brinvest-eyebrow {
    color: var(--brinvest-accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .11em;
    margin: 0;
    text-transform: uppercase;
}

.brinvest-location {
    color: var(--brinvest-muted);
}

.brinvest-table-wrap {
    border: 1px solid var(--brinvest-line);
    border-radius: 12px;
    overflow-x: auto;
    width: 100%;
}

.brinvest-table {
    border: 0;
    border-collapse: collapse;
    margin: 0;
    min-width: 760px;
    width: 100%;
}

.brinvest-table th,
.brinvest-table td {
    border: 0;
    border-bottom: 1px solid var(--brinvest-line);
    padding: .9rem 1rem;
    text-align: left;
    vertical-align: middle;
}

.brinvest-table th {
    background: #f8fafc;
    color: #344054;
    font-size: .78rem;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.brinvest-table tbody tr:last-child td {
    border-bottom: 0;
}

.brinvest-status {
    border-radius: 999px;
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem .7rem;
    white-space: nowrap;
}

.brinvest-status--available { background: #dcfce7; color: #166534; }
.brinvest-status--reserved { background: #fef3c7; color: #92400e; }
.brinvest-status--sold { background: #e5e7eb; color: #374151; }

.brinvest-notes,
.brinvest-contact,
.brinvest-history {
    margin-top: 1.75rem;
}

.brinvest-notes {
    background: #f8fafc;
    border-left: 4px solid var(--brinvest-accent);
    padding: 1rem 1.2rem;
}

.brinvest-notes p:last-child,
.brinvest-contact p:last-child {
    margin-bottom: 0;
}

.brinvest-button {
    background: var(--brinvest-accent);
    border-radius: 6px;
    color: #fff !important;
    display: inline-block;
    font-weight: 700;
    padding: .7rem 1rem;
    text-decoration: none !important;
}

.brinvest-button:hover,
.brinvest-button:focus {
    background: #801c1a;
}

.brinvest-more {
    margin-top: 1rem;
}

.brinvest-price-list--compact .brinvest-table {
    min-width: 560px;
}

@media (max-width: 700px) {
    .brinvest-table-wrap {
        border: 0;
        overflow: visible;
    }

    .brinvest-table,
    .brinvest-table thead,
    .brinvest-table tbody,
    .brinvest-table tr,
    .brinvest-table th,
    .brinvest-table td {
        display: block;
        min-width: 0;
        width: 100%;
    }

    .brinvest-table thead {
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        white-space: nowrap;
        width: 1px;
    }

    .brinvest-table tr {
        border: 1px solid var(--brinvest-line);
        border-radius: 10px;
        margin-bottom: .85rem;
        overflow: hidden;
    }

    .brinvest-table td {
        align-items: center;
        border-bottom: 1px solid var(--brinvest-line);
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        padding: .72rem .85rem;
        text-align: right;
    }

    .brinvest-table td::before {
        color: var(--brinvest-muted);
        content: attr(data-label);
        flex: 0 0 44%;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .025em;
        text-align: left;
        text-transform: uppercase;
    }

    .brinvest-table tbody tr:last-child td:last-child,
    .brinvest-table td:last-child {
        border-bottom: 0;
    }
}

