

/* Event Boxen BEGIN */

    /* Horizontal Scrolling Container */
            .category-section {
                margin-bottom: 48px;
                overflow: hidden;
            }

            .category-header {
                padding: 0 20px;
                margin-bottom: 10px;
                margin-top: 25px;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .category-title {
                font-size: 1.5rem;
                font-weight: 700;
                color: #1a1a1a;
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .category-icon {
                font-size: 1.75rem;
            }

            .view-all-link {
                color: #667eea;
                text-decoration: none;
                font-size: 0.9rem;
                font-weight: 600;
                transition: color 0.2s;
                display: flex;
                align-items: center;
                gap: 6px;
            }

            .view-all-link:hover {
                color: #764ba2;
            }

            /* Pure CSS Horizontal Scroll */
            .horizontal-scroll-container {
                display: flex;
                gap: 20px;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-behavior: smooth;
                padding: 0 20px 16px 20px;

                /* Custom Scrollbar */
                scrollbar-width: thin;
                scrollbar-color: #667eea #e9ecef;
            }

            .horizontal-scroll-container::-webkit-scrollbar {
                height: 8px;
            }

            .horizontal-scroll-container::-webkit-scrollbar-track {
                background: #e9ecef;
                border-radius: 4px;
            }

            .horizontal-scroll-container::-webkit-scrollbar-thumb {
                background: #667eea;
                border-radius: 4px;
                transition: background 0.2s;
            }

            .horizontal-scroll-container::-webkit-scrollbar-thumb:hover {
                background: #764ba2;
            }

            /* Snap Scrolling für besseres UX (optional) */
            .horizontal-scroll-container {
                scroll-snap-type: x proximity;
            }

            .event-card-horizontal {
                scroll-snap-align: start;
            }

            /* Event Card (identisch zu deinem Design) */
            .event-card-horizontal {
                background: white;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                min-width: 320px;
                max-width: 320px;
                flex-shrink: 0;
                transition: transform 0.2s, box-shadow 0.2s;
                cursor: pointer;
                text-decoration: none;
                color: inherit;
                display: block;
            }

            .event-card-horizontal:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            }

            .event-header {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                padding: 16px;
            }

            .category-icons-event {
                display: flex;
                gap: 8px;
                margin-bottom: 12px;
                flex-wrap: wrap;
            }

            .category-icon-event {
                background: rgba(255, 255, 255, 0.2);
                backdrop-filter: blur(10px);
                border-radius: 8px;
                width: 36px;
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.2s;
            }

            .category-icon-event:hover {
                transform: scale(1.1);
                background: rgba(255, 255, 255, 0.3);
            }

            .category-icon-event i {
                color: white;
                font-size: 18px;
            }

            .event-title {
                color: white;
                font-size: 16px;
                font-weight: 600;
                line-height: 1.3;
                margin: 0;
            }

            .event-body {
                padding: 14px 16px;
            }
			
			

            .event-info {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 10px;
                color: #666;
                font-size: 14px;
            }

            .event-info:last-child {
                margin-bottom: 0;
            }

            .event-info i {
                color: #667eea;
                flex-shrink: 0;
                width: 16px;
            }

            .event-info span {
                line-height: 1.4;
            }

            /* Optional: Scroll Hint für bessere UX */
            .horizontal-scroll-container::after {
                content: '';
                position: sticky;
                right: 0;
                width: 40px;
                height: 100%;
                background: linear-gradient(to left, #f8f9fa, transparent);
                pointer-events: none;
                flex-shrink: 0;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .category-title {
                    font-size: 1.25rem;
                }

                .category-icon {
                    font-size: 1.5rem;
                }

                .event-card-horizontal {
                    min-width: 280px;
                    max-width: 280px;
                }

                .horizontal-scroll-container {
                    padding: 0 16px 16px 16px;
                }
            }

            @media (max-width: 480px) {
                .event-card-horizontal {
                    min-width: 260px;
                    max-width: 260px;
                }

                .category-header {
                    padding: 0 16px;
                }
            }
			
			 .events-grid {
				display: grid;
				grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
				gap: 24px;
				margin-top: 0;
				padding: 0 20px;
			}
		
		@media (max-width: 768px) {
			.events-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
		}
		
			.result-info-label {
                text-align: center;
                color: #666;
                font-size: 14px;
                font-weight: 600;
                margin-bottom: 0px;
            }
			
			
			.event-card {
                background: white;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                /*max-width: 340px;*/
                width: 100%;
                transition: transform 0.2s, box-shadow 0.2s;
                cursor: pointer;
            }

            .event-card:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            }

            .event-header {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                padding: 16px;
            }

            .category-icons-event {
                display: flex;
                gap: 8px;
                margin-bottom: 12px;
                flex-wrap: wrap;
            }

            .category-icon-event {
                background: rgba(255, 255, 255, 0.2);
                backdrop-filter: blur(10px);
                border-radius: 8px;
                width: 36px;
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.2s;
            }

            .category-icon-event:hover {
                transform: scale(1.1);
                background: rgba(255, 255, 255, 0.3);
            }

            .category-icon-event svg {
                width: 20px;
                height: 20px;
                stroke: white;
                fill: none;
                stroke-width: 2;
            }

            .event-title {
                color: white;
                font-size: 16px;
                font-weight: 600;
                line-height: 1.3;
            }

            .event-body {
                padding: 14px 16px;
            }

            .event-info {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 10px;
                color: #666;
                font-size: 14px;
            }

            .event-info:last-child {
                margin-bottom: 0;
            }

            .event-info svg {
                width: 16px;
                height: 16px;
                stroke: #667eea;
                fill: none;
                stroke-width: 2;
                flex-shrink: 0;
            }

            .event-info span {
                line-height: 1.4;
            }

            .tag {
                display: inline-block;
                background: #f0f0f0;
                color: #666;
                padding: 4px 10px;
                border-radius: 12px;
                font-size: 12px;
                font-weight: 500;
                margin-top: 8px;
            }


/* Event Boxen END */


/* Links sollen sich gleich verhalten wie text BEGIN */

	a {
		color: inherit !important;
		text-decoration: none !important;
	}

	a:visited {
		color: inherit !important;
	}

	a:hover,
	a:active,
	a:focus {
		color: inherit !important;
		text-decoration: none !important;
		outline: none !important;
	}

/* Links sollen sich gleich verhalten wie text END */
