/* ==========================================
   ChenBridge Packaging Pages
   Shared styles for packaging category pages
   ========================================== */


/* Product category cards with image */

.product-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card .product-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-card .product-body {
    padding: 25px;
}

.product-card .product-body h3 {
    color: #0F3D2E;
    margin-bottom: 10px;
    font-size: 19px;
}

.product-card .product-body p {
    color: #4b5563;
    font-size: 15px;
}


/* Icon-less text grid for solution inclusions */

.inclusion-card {
    text-align: center;
    padding: 34px 25px;
}

.inclusion-card .step-num {
    display: block;
    margin-bottom: 8px;
}


/* Split feature row */

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(15, 61, 46, 0.15);
}

.feature-row h2 {
    text-align: left;
    margin-bottom: 20px;
}

.feature-row p {
    color: #4b5563;
    margin-bottom: 14px;
}

.feature-list {
    list-style: none;
    margin-top: 10px;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #374151;
    border-bottom: 1px solid #eceae4;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F28C28;
    font-weight: 700;
}


@media (max-width: 900px) {

    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-row h2 {
        text-align: center;
    }

    .product-card .product-image {
        height: 200px;
    }
}
