/**
 * Industry Page Styles
 */

.industry_category_section {
    padding: 50px 0 60px;
    background: #fff;
}

.industry_category_section + .industry_category_section {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.industry_category_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.industry_category_title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.industry_category_header .view_all_btn {
    background: #fff;
    border: 1px solid #D54648;
    color: #D54648;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.industry_category_header .view_all_btn:hover {
    background: #D54648;
    color: #fff;
}

.industry_products_row {
    margin: 0 -12px;
}

/* When 1 product: center it */
.industry_products_row.products_count_1 .col-lg-3 {
    flex: 0 0 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* When 2 products: show 2 in row, centered */
.industry_products_row.products_count_2 .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 992px) {
    .industry_products_row.products_count_2 {
        justify-content: center;
    }
    .industry_products_row.products_count_2 .col-lg-3 {
        flex: 0 0 auto;
        max-width: 280px;
    }
}

/* When 3 products: show 3 in row */
.industry_products_row.products_count_3 .col-lg-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

@media (max-width: 991.98px) {
    .industry_products_row.products_count_3 .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .industry_products_row.products_count_2 .col-lg-3,
    .industry_products_row.products_count_3 .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.industry_product_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.industry_product_card:hover {
    border-color: #D54648;
    box-shadow: 0 4px 16px rgba(213, 70, 72, 0.12);
}

.industry_product_card .product_image_wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}

.industry_product_card .product_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry_product_card .product_info {
    padding: 18px 16px;
}

.industry_product_card .product_title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.industry_product_card .product_title a {
    color: #333;
    text-decoration: none;
}

.industry_product_card .product_title a:hover {
    color: #D54648;
}

.industry_product_card .learn_more_link {
    font-size: 14px;
    color: #D54648;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.industry_product_card .learn_more_link:hover {
    text-decoration: underline;
}
