        
        .text-container {
            position: relative;
            overflow: hidden;
            transition: height 0.5s ease-in-out;
        }
        
        .text-content {
            margin-bottom: 10px;
        }
        
        .fade-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .fade-overlay.active {
            opacity: 1;
        }
        
        .toggle-control {
            display: flex;
         /* justify-content: space-between; */
            align-items: center;
            padding: 0px;
            cursor: pointer;
         /* border-top: 1px solid #eaeaea; */
            margin-top: 5px;
            position: relative;
            z-index: 2;
            background-color: white;
        }
        
        .toggle-dots {
            color: #888;
        }
        
        .toggle-text {
            color: #888;
            font-size: 16px;
        }
        
        .toggle-control:hover .toggle-text {
            color: #333;
        }