:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-86c7d99 */.bp-condition-container {
    max-width: 1150px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 50px 20px;
    color: #1d1d1f;
}

/* Header */
.bp-condition-header {
    text-align: center;
    margin-bottom: 50px;
}

.bp-condition-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1d1d1f;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.bp-condition-header p {
    font-size: 16px;
    color: #555555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.bp-condition-header strong {
    color: #1d1d1f;
}

/* 4-Column Grid */
.bp-condition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Condition Cards */
.bp-condition-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bp-condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #FF3503;
}

/* Special Highlighting for the "Steal" Card */
.bp-card-steal {
    background: #fffcfb; /* Very faint orange tint */
    border: 1px solid rgba(255, 53, 3, 0.2);
}

/* Badges */
.bp-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.bp-badge-pristine {
    background-color: #1d1d1f;
    color: #ffffff;
}

.bp-badge-verygood {
    background-color: #f1f5f9;
    color: #475569;
}

.bp-badge-good {
    background-color: #f3f4f6;
    color: #6b7280;
}

.bp-badge-poor {
    background-color: #FF3503; /* Electric Orange */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(255, 53, 3, 0.3);
}

/* Card Text */
.bp-condition-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #1d1d1f;
}

.bp-condition-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 20px 0;
    min-height: 65px; /* Keeps the cards aligned */
}

/* Bullet Points */
.bp-condition-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0; /* Pushes the list to the bottom */
}

.bp-condition-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: #1d1d1f;
    line-height: 1.4;
}

/* Custom Tiny Arrow Bullet */
.bp-condition-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 14px;
    font-weight: 700;
    color: #FF3503; /* Orange Arrows */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .bp-condition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bp-condition-card p {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .bp-condition-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */