        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }


        .compendium-container {
            max-width: 1400px;
            width: 100%;
            text-align: center;
            position: relative;
        }

        .compendium-title {
            font-size: 1.125rem;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .compendium-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 40px;
        }

        /* Auto-scrolling Carousel Container */
        .carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .cards-track {
            display: flex;
            gap: 24px;
            width: max-content;
            /* Infinite scroll animation: Right to Left */
            animation: scroll-rtl 18s linear infinite;
        }

        /* Pause animation on hover */
        .carousel-container:hover .cards-track {
            animation-play-state: paused;
        }

        @keyframes scroll-rtl {
            0% {
                transform: translateX(0);
            }
            100% {
                /* Moves exactly half the total width of duplicated items */
                transform: translateX(calc(-50% - 12px));
            }
        }

        .journal-card {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            width: 350px;
            flex-shrink: 0;
            padding: 28px 24px;
            text-align: left;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .journal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
        }

        /* Card color variants */
        .journal-card.green-tint {
            background-color: #f7fcf9;
            border-color: #d1fae5;
        }

        .journal-card.yellow-tint {
            background-color: #fffdf5;
            border-color: #fef3c7;
        }

        .journal-card.blue-tint {
            background-color: #f4fbfd;
            border-color: #cffafe;
        }

        .card-header h2 {
            font-size: 1.5rem;
            color: #111827;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .card-header p {
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.4;
            min-height: 44px;
            margin-bottom: 20px;
        }

        .card-divider {
            height: 1px;
            background-color: #e5e7eb;
            margin-bottom: 20px;
        }

        .card-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.88rem;
            color: #374151;
            line-height: 1.4;
        }

        .detail-item i {
            color: #ea580c;
            margin-top: 2px;
        }

        .detail-item strong {
            color: #1f2937;
        }

        .visit-btn {
            display: block;
            width: 100%;
            padding: 12px;
            text-align: center;
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            color: #ffffff !important; /* Forces white text color and fixes the link error */
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(234, 88, 12, 0.2);
            transition: opacity 0.2s ease, box-shadow 0.2s ease;
        }

        .visit-btn:hover {
            opacity: 0.95;
            box-shadow: 0 6px 8px rgba(234, 88, 12, 0.3);
            color: #ffffff !important;
        }