/* ========================================= */
/* 信用卡分期付款表格（全站共用）               */
/* 使用頁面：前台嚴選主機內容頁、後台嚴選主機編輯頁 */
/* ========================================= */

.bundle-pc-installment-box {
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 4px;
    background: #f4f4f4;
}

.bundle-pc-installment-box-title {
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.bundle-pc-installment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.bundle-pc-installment-grid .bpi-item {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    padding: 9px 14px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.4;
}

.bundle-pc-installment-grid .bpi-item:nth-child(-n + 2) {
    border-top: 0;
}

.bundle-pc-installment-grid .bpi-item:nth-child(2n) {
    border-left: 1px solid #ddd;
}

.bundle-pc-installment-grid .bpi-months {
    color: #d0021b;
    font-weight: 700;
    white-space: nowrap;
}

.bundle-pc-installment-grid .bpi-label {
    color: #333;
}

.bundle-pc-installment-grid .bpi-amount {
    color: #d0021b;
    font-weight: 700;
    white-space: nowrap;
}

.bundle-pc-installment-grid .bpi-unit {
    color: #333;
}

.bundle-pc-installment-note {
    margin-top: 8px;
    color: #8593a3;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 575.98px) {
    .bundle-pc-installment-grid {
        grid-template-columns: 1fr;
    }

    .bundle-pc-installment-grid .bpi-item:nth-child(-n + 2) {
        border-top: 1px solid #ddd;
    }

    .bundle-pc-installment-grid .bpi-item:first-child {
        border-top: 0;
    }

    .bundle-pc-installment-grid .bpi-item:nth-child(2n) {
        border-left: 0;
    }

    .bundle-pc-installment-grid .bpi-item.bpi-filler {
        display: none;
    }
}
