		/****content***/
		
        /* Additional styles - do not override existing CSS */
        .prose-custom {
            color: #374151;
            line-height: 1.8;
        }
        .prose-custom h2 {
            font-size: 1.875rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #111827;
        }
        .prose-custom h3 {
            font-size: 1.5rem;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            color: #1f2937;
        }
        .prose-custom p {
            margin-bottom: 1.25rem;
        }
        .info-card {
            background: linear-gradient(145deg, #ffffff, #f9fafb);
            border-left: 4px solid #E07600;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15), 0 8px 10px -6px rgba(0,0,0,0.1);
        }
        .tag-cloud a {
            display: inline-block;
            padding: 0.375rem 0.75rem;
            background-color: #f3f4f6;
            border-radius: 9999px;
            font-size: 0.875rem;
            color: #374151;
            transition: all 0.2s;
        }
        .tag-cloud a:hover {
            background-color: #E07600;
            color: white;
        }
        .event-detail-list li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
        }
        .event-detail-list li svg {
            flex-shrink: 0;
            margin-top: 0.125rem;
        }
        .social-share a {
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .hero-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
            background-size: cover;
        }

        /* ===== Main Content Area Enhancements ===== */
        .content-card {
            background-color: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            padding: 2rem;
            transition: box-shadow 0.2s ease;
        }
        .content-card:hover {
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
        }
        .section-divider {
            background: linear-gradient(90deg, transparent, rgba(224,118,0,0.2), transparent);
            height: 1px;
            width: 100%;
            margin: 2rem 0;
        }
        .sticky-sidebar {
            position: sticky;
            top: 2rem;
        }
        /* Adjust spacing for better flow */
        .main-content-area {
            padding-top: 1rem;
        }
        @media (min-width: 1024px) {
            .main-content-area {
                padding-top: 0;
            }
        }