body::-webkit-scrollbar {
	/* display: none; /* отключаем скроллбар */
	width: 18px; 	/* ширина скроллбара */
}
body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 25px #ffbb001f; 	/* цвет внутренней тени */
	background: #DFDFDF; 	/* цвет фона */
}
body::-webkit-scrollbar-thumb {
	background-color: #01A0A5; 	/* цвет ползунка */
	border-radius: 10px; 	/* скругление бордюра */
	background-image: -webkit-linear-gradient(90deg, #02BEC1, #005E69);
}

        /* Custom CSS that overrides FD01 default styles */
        .t-feed {
            --primary-color: #2c5a5a;
            --bg-color: #e8e8e8;
            --text-color: #000;
            --description-color: #333;
            --card-width: 100%;
            --card-height-collapsed: 200px;
            --card-height-expanded: 550px;
            --title-size: 48px;
            --title-size-hover: 42px;
            --image-height: 200px;
        }

        /* Override FD01 container */
        .t-feed__container {
            display: block !important;
            width: 100% !important;
            max-width: none !important;
        }

        /* Override FD01 item styling */
        .t-feed__item {
            width: var(--card-width) !important;
            height: var(--card-height-collapsed) !important;
            background: var(--bg-color) !important;
            position: relative !important;
            overflow: hidden !important;
            cursor: pointer !important;
            transition: height 0.4s ease !important;
            margin: 0 0 40px 0 !important;
            max-width: none !important;
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            padding: 0 !important;
            display: block !important;
            float: none !important;
        }

        .t-feed__item:hover {
            height: var(--card-height-expanded) !important;
        }

        /* Add header bar */
        .t-feed__item::before {
            content: '';
            background: var(--primary-color);
            height: 8px;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        /* Content wrapper for FD01 */
        .t-feed__content {
            padding: 40px 60px !important;
            height: calc(100% - 8px) !important;
            box-sizing: border-box !important;
            position: relative !important;
            background: transparent !important;
            margin-top: 8px !important;
            border: none !important;
        }

        /* Date styling for FD01 */
        .t-feed__date {
            position: absolute !important;
            top: 40px !important;
            right: 60px !important;
            font-size: 16px !important;
            color: var(--text-color) !important;
            font-weight: normal !important;
            margin: 0 !important;
            background: none !important;
            border: none !important;
            padding: 0 !important;
            display: block !important;
        }

        /* Title styling for FD01 */
        .t-feed__title,
        .t-feed__title a {
            font-size: var(--title-size) !important;
            font-weight: bold !important;
            color: var(--text-color) !important;
            line-height: 1.1 !important;
            margin: 0 !important;
            text-transform: uppercase !important;
            letter-spacing: -1px !important;
            max-width: 800px !important;
            transition: all 0.3s ease !important;
            position: relative !important;
            text-decoration: underline !important;
            text-decoration-color: var(--primary-color) !important;
            text-decoration-thickness: 3px !important;
            text-underline-offset: 8px !important;
            background: none !important;
            padding: 0 !important;
            display: block !important;
        }

        .t-feed__item:hover .t-feed__title,
        .t-feed__item:hover .t-feed__title a {
            font-size: var(--title-size-hover) !important;
            text-decoration: none !important;
            color: var(--text-color) !important;
        }

        /* Image styling for FD01 */
        .t-feed__img,
        .t-feed__img img {
            width: 100% !important;
            height: var(--image-height) !important;
            background-size: cover !important;
            background-position: center !important;
            margin: 20px 0 !important;
            opacity: 0 !important;
            max-height: 0 !important;
            transition: all 0.4s ease 0.2s !important;
            border-radius: 8px !important;
            object-fit: cover !important;
            position: relative !important;
            display: block !important;
        }

        .t-feed__item:hover .t-feed__img,
        .t-feed__item:hover .t-feed__img img {
            opacity: 1 !important;
            max-height: var(--image-height) !important;
        }

        /* Description styling for FD01 */
        .t-feed__descr,
        .t-feed__text {
            font-size: 16px !important;
            color: var(--description-color) !important;
            line-height: 1.6 !important;
            margin: 20px 0 80px 0 !important;
            opacity: 0 !important;
            max-height: 0 !important;
            overflow: hidden !important;
            transition: all 0.4s ease 0.3s !important;
            max-width: 900px !important;
            background: none !important;
            padding: 0 !important;
            display: block !important;
        }

        .t-feed__item:hover .t-feed__descr,
        .t-feed__item:hover .t-feed__text {
            opacity: 1 !important;
            max-height: 120px !important;
        }

        /* Button styling for FD01 */
        .t-feed__btn,
        .t-feed__readmore {
            position: absolute !important;
            bottom: 40px !important;
            right: 60px !important;
            background: var(--primary-color) !important;
            color: white !important;
            padding: 15px 30px !important;
            border: none !important;
            font-size: 16px !important;
            font-weight: bold !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            cursor: pointer !important;
            opacity: 0 !important;
            transform: translateY(20px) !important;
            transition: all 0.4s ease 0.4s !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            display: inline-block !important;
        }

        .t-feed__item:hover .t-feed__btn,
        .t-feed__item:hover .t-feed__readmore {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .t-feed__btn:hover,
        .t-feed__readmore:hover {
            filter: brightness(0.8) !important;
            color: white !important;
        }

        /* Remove/hide default FD01 elements we don't need */
        .t-feed__tags,
        .t-feed__author,
        .t-feed__comments,
        .t-feed__likes,
        .t-feed__share {
            display: none !important;
        }

        /* FD01 specific overrides */
        .t-feed__item-wrap {
            margin: 0 !important;
            padding: 0 !important;
        }

        .t-feed__item-content {
            padding: 0 !important;
            margin: 0 !important;
        }

        /* Grid layout override for FD01 */
        .t-feed__container .t-feed__item {
            width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Responsive design */
        @media (max-width: 1200px) {
            .t-feed {
                --title-size: 36px;
                --title-size-hover: 32px;
            }
            
            .t-feed__content {
                padding: 30px 40px !important;
            }
            
            .t-feed__date {
                right: 40px !important;
                top: 30px !important;
            }
            
            .t-feed__btn,
            .t-feed__readmore {
                right: 40px !important;
                bottom: 30px !important;
            }
        }

        @media (max-width: 768px) {
            .t-feed {
                --title-size: 28px;
                --title-size-hover: 26px;
                --card-height-expanded: 450px;
            }
            
            .t-feed__content {
                padding: 20px 30px !important;
            }
            
            .t-feed__date {
                right: 30px !important;
                top: 20px !important;
                font-size: 14px !important;
            }
            
            .t-feed__btn,
            .t-feed__readmore {
                right: 30px !important;
                bottom: 20px !important;
                font-size: 14px !important;
                padding: 12px 20px !important;
            }
        }

        /* Custom color variations */
        .t-feed__item.purple-theme {
            --primary-color: #8e44ad;
            --bg-color: #f8f9fa;
        }

        .t-feed__item.blue-theme {
            --primary-color: #3498db;
            --bg-color: #ecf0f1;
        }

        .t-feed__item.green-theme {
            --primary-color: #27ae60;
            --bg-color: #e8f5e8;
        }

        /* Force single column layout */
        .t-feed__container {
            display: block !important;
            columns: 1 !important;
            column-count: 1 !important;
        }

        /* Override any grid or flexbox from FD01 */
        .t-feed__container::after {
            content: none !important;
        }
    
    
    
