

        /* Header */
       .cim-news-heading{
        color: #D9142F;
       }

       .cim-news-heading::after{
        background: #D9142F;
       }

       .cim-news-chevron-button{
        background: #D9142F;
       }
       .cim-news-chevron-button:hover{
        background: #af2234;
       }
        .swiper-wrapper a {
            text-decoration: none;
            color: inherit;
        }

        /* Cards */
        .cim-newspress-card {
            /* background: #fff; */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
            transition: .3s ease;
        }

        /* Image */
        .cim-newspress-image-wrapper {
            height: 230px;
            position: relative;
        }

        .cim-newspress-image-wrapper > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        /* Badges */
        .cim-newspress-badge-group {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            gap: 8px;
        }

        .cim-newspress-badge {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            font-weight: 600;
        }

        .cim-newspress-date {
            position: absolute;
            right: 12px;
            top: 12px;
            opacity: 0.6;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .cim-newspress-calendar{
            width: 14px;
            height: 14px;
        }

        /* Category colors */
		.cim-newspress-content{
			background: #040054;
		}
		
		.cim-newspress .cim-newspress-content,
        .cim-newspress .cim-newspress-date,
        .cim-newspress .cim-newspress-badge {
            background: #ff3019;
        }
		
        .cim-newspress-programs .cim-newspress-content,
        .cim-newspress-programs .cim-newspress-date,
        .cim-newspress-programs .cim-newspress-badge {
            background: #ff3019;
        }
		
		.cim-newspress-press-realease .cim-newspress-content,
        .cim-newspress-press-realease .cim-newspress-date,
        .cim-newspress-press-realease .cim-newspress-badge {
            background: #ff3019;
        }

        .cim-newspress-events .cim-newspress-content,
        .cim-newspress-events .cim-newspress-date,
        .cim-newspress-events .cim-newspress-badge {
            background: #1FA75D;
        }

        .cim-newspress-projects .cim-newspress-content,
        .cim-newspress-projects .cim-newspress-date,
        .cim-newspress-projects .cim-newspress-badge {
            background: #1E2B88;
        }

        /* Content area */
        .cim-newspress-content {
            padding:18px;
            min-height: 100px;
            max-height: 100px;
            display: flex;
            align-items: flex-start;
        }

        .cim-newspress-heading {
            color: #fff;
            font-size: 16px;
            line-height: 1.45;
            font-weight: 600;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Responsive */
        @media (max-width: 768px) {

            .cim-newspress-image-wrapper {
                height: 220px;
            }
        }
