/* Event Sidebar Styles */
        .event-icon-wrapper {
            width: 30px;
            text-align: center;
            color: #000;
        }
        .event-item {
            margin-bottom: 2.5rem;
        }
        .event-text {
            color: #333;
            font-weight: 500;
            line-height: 1.4;
        }
        
        /* Mobile Carousel specific styles */
        @media (max-width: 767.98px) {
            .event-carousel {
                padding: 0 45px; /* Creates space for the arrows on mobile */
            }
            .event-item {
                margin-bottom: 1rem; /* Less margin inside the carousel */
            }
            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                opacity: 1; /* Make arrows fully visible */
            }
            .carousel-arrow-icon {
                color: #000080; /* Navy blue arrows */
                font-size: 1.8rem;
            }
        }

        /* Disable carousel behavior on Desktop (acts as a normal list) */
        @media (min-width: 768px) {
            .event-carousel .carousel-inner {
                overflow: visible;
            }
            .event-carousel .carousel-item {
                display: block !important;
                margin-right: 0 !important;
                opacity: 1 !important;
                position: relative !important;
                transform: none !important;
                transition: none !important;
            }
        }

        /* News Feed Styles */
        .news-title {
            color: #1a65d4; 
            font-size: 1.4rem;
            font-weight: 500;
            text-decoration: none;
        }
        .news-title:hover {
            text-decoration: underline;
            color: #144ca3;
        }
        .meta-info {
            font-size: 0.85rem;
            color: #555;
        }
        .meta-info i {
            color: #333;
        }
        .excerpt-text {
            color: #555;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .news-img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            min-height: 160px;
        }
        
        /* Button Styles */
        .btn-navy {
            background-color: #000080; 
            color: #ffffff;
            font-weight: 500;
            border-radius: 6px;
            border: none;
            padding: 0.6rem;
        }
        .btn-navy:hover {
            background-color: #000055;
            color: #ffffff;
        }
        .btn-explore-news {
            font-size: 1.1rem;
        }