/* ── Grid ─────────────────────────────────────────────────── */
.bp-grid {
    display: grid;
    grid-template-columns: repeat(var(--bp-cols, 3), 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 767px) {
    .bp-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .bp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Card ─────────────────────────────────────────────────── */
.bp-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bp-card__image {
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
}

.bp-card__image img {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    display: block !important;
}

.bp-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bp-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #111827;
    line-height: 1.3;
}

.bp-card__desc {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    flex: 1;
}

.bp-card__desc p {
    margin: 0 0 0.5rem;
}

.bp-card__desc ul {
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
}

.bp-card__desc ul li {
    padding: 0.1rem 0;
}

.bp-card__desc ul li::before {
    content: "· ";
    color: #9ca3af;
}
