.elementor-79500 .elementor-element.elementor-element-a44ed46{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for container, class: .elementor-element-a44ed46 *//* Modern CSS for mobile-first responsive design */
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 20px;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        /* Header styling */
        .edition-header {
            background: linear-gradient(135deg, #00AEEF 0%, #EFEFEF 100%);
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        
        .edition-header h1 {
            margin: 0 0 15px 0;
            font-size: 1.5rem;
        }
        
        .edition-highlights {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .edition-highlights li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .edition-highlights li:before {
            content: "•";
            color: #000000;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* News item styling */
        .news-item {
            display: flex;
            gap: 15px;
            padding: 20px 0;
            border-bottom: 1px solid #e9ecef;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-logo {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
        }
        
        .news-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
            border: 2px solid #e9ecef;
        }
        
        .news-content {
            flex: 1;
            min-width: 0; /* Prevents flex item from overflowing */
        }
        
        .news-content h2 {
            margin: 0 0 10px 0;
            font-size: 1.25rem;
            color: #2c3e50;
            line-height: 1.3;
        }
        
        .news-content p {
            margin: 0 0 12px 0;
            color: #555;
        }
        
        .news-link {
            display: inline-block;
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            background-color: #f8f9ff;
            border-radius: 4px;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }
        
        .news-link:hover {
            background-color: #00AEFF;
            color: white;
            text-decoration: none;
        }
        
        /* Section headers */
        .section-header {
            background: linear-gradient(135deg, #00AEEF, #EFEFEF);
            color: white;
            padding: 15px 20px;
            margin: 40px 0 20px 0;
            border-radius: 6px;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .section-header:first-of-type {
            margin-top: 20px;
        }
        
        /* Responsive design */
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .container {
                padding: 15px;
            }
            
            .news-item {
                flex-direction: column;
                gap: 10px;
                padding: 15px 0;
            }
            
            .news-logo {
                align-self: flex-start;
                width: 40px;
                height: 40px;
            }
            
            .news-content h2 {
                font-size: 1.1rem;
            }
            
            .edition-header {
                padding: 15px;
            }
            
            .edition-header h1 {
                font-size: 1.3rem;
            }
            
            .section-header h4 {
                padding: 12px 15px;
                font-size: 1.2rem;
            }
        }
        
        /* High DPI display support */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .news-logo img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }
        
        /* Print styles */
        @media print {
            .news-link {
                background: none;
                color: #000;
            }
            
            .edition-header, .section-header {
                background: none;
                color: #000;
                border: 1px solid #000;
            }
        }/* End custom CSS */