@media print {

    .pageLabel-homepage {

        .blue1 {
            color: #1e53a5 !important;
        }

        .researchProduct {
            ul {
                li {
                    &:last-child {
                        border-bottom: none;
                        border-right: none;
                    }
                }
            }
        }

        .supportResearch {
            .col-sm-4.col-xs-12 {
                width: 33.33333333%;
            }
        }

        .yCmsComponent.aboutTCI {
            display: none;
        }
    }


}

/* =========================
   SAFARI PRINT FIX – HOMEPAGE
   ========================= */
@media print {
    @supports (-webkit-touch-callout: none) {

        /* ===== COLOR NOT APPLY IN SAFARI ===== */
        .pageLabel-homepage .blue1 {
            color: #1e53a5 !important;
            -webkit-print-color-adjust: exact !important;
        }

        /* ===== FIX GRID WIDTH (Safari ignores %) ===== */
        .pageLabel-homepage .supportResearch .col-sm-4.col-xs-12 {
            float: left !important;
            width: 33.33333333% !important;
            max-width: 33.33333333% !important;
        }

        /* ===== LIST BORDER FIX ===== */
        .pageLabel-homepage .researchProduct ul li:last-child {
            border-bottom: none !important;
            border-right: none !important;
        }

        /* ===== SAFARI FLEX / ROW BUG ===== */
        .pageLabel-homepage .row {
            display: block !important;
        }

        /* ===== HIDE CMS COMPONENT SAFELY ===== */
        .pageLabel-homepage .yCmsComponent.aboutTCI {
            display: none !important;
        }

    }
}