/* ============================================================
    PRODUCTS GRID — LIGHT THEME
    Hero reuses about-pg.css / 0-hero.css classes as-is.
    ============================================================ */

.bd-products-section {
    padding: 100px 24px 70px;
    background: #ffffff;
}

.bd-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.bd-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(40, 110, 220, .14);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.bd-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(40, 110, 220, .38);
    box-shadow: 0 22px 55px rgba(30, 90, 200, .12);
}

.bd-product-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef2f7;
}

/* .bd-product-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,.9) 100%);
    pointer-events: none;
} */

.bd-product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.02) brightness(1);
    transition: transform .5s ease;
}

.bd-product-card:hover .bd-product-card-img img {
    transform: scale(1.06);
}

.bd-product-card-body {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bd-product-tag {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #2f6fe0;
    font-weight: 600;
}

.bd-product-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f1728;
    margin: 0;
    font-family: Montserrat, sans-serif;
}

.bd-product-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
}

.bd-product-cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2f6fe0;
    text-decoration: none;
    width: fit-content;
}

.bd-product-cta .material-icons-round {
    font-size: 16px;
    transition: transform .3s ease;
}

.bd-product-cta:hover { color: #0f1728; }
.bd-product-cta:hover .material-icons-round { transform: translateX(4px); }

@media (max-width: 860px) {
    .bd-products-grid { grid-template-columns: 1fr; gap: 24px; }
}
