        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: sans-serif, 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background-color: #ffffff;
            color: #1a1e2b;
            line-height: 1.4;
			scroll-behavior: smooth;
			scroll-padding-top: 80px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }	
		
        /* ========= ШАПКА / НАВИГАЦИЯ ========= */
        .site-header {
            background: #292929;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #404040;
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 26px 0; /*18 0 */
            gap: 24px;
            background-color: #292929;
        }

        .nav-left {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .logo {
            flex-shrink: 0;
            text-align: center;
        }
        .logo a {
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 200;
            letter-spacing: -0.02em;
            color: #ffffff;
        }

        .nav-right {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-left a, .nav-right a {
            text-decoration: none;
            font-weight: 500;
            color: #ffffff;
            transition: color 0.2s;
            font-size: 0.9rem;
            letter-spacing: 0.03em;			
        }

        .nav-left a:hover, .nav-right a:hover {
            color: #60a5fa;
        }

        /* БУРГЕР-МЕНЮ (по умолчанию скрыто на десктопе) */
        .burger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0px; /* 8*/
            border-radius: 8px;
            z-index: 1002;
            transition: background 0.2s;
        }
        
        .burger-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .burger-icon {
            display: block;
            width: 24px;
            height: 2px;
            background: #ffffff;
            position: relative;
            transition: 0.2s;
        }
        
        .burger-icon::before,
        .burger-icon::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background: #ffffff;
            transition: 0.2s;
        }
        
        .burger-icon::before { 
            top: -8px; 
        }
        
        .burger-icon::after { 
            bottom: -8px; 
        }
        
        /* Анимация при открытом меню (превращение в крестик) */
        .burger-btn.active .burger-icon {
            background: transparent;
        }
        
        .burger-btn.active .burger-icon::before {
            transform: rotate(45deg);
            top: 0;
        }
        
        .burger-btn.active .burger-icon::after {
            transform: rotate(-45deg);
            bottom: 0;
        }

        /* Мобильное меню */
        .mobile-menu {
            position: fixed;
            top: 70px; /* 70 */
            left: 0;
            width: 100%;
            background: #292929;
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.3);
            padding: 24px 24px;
            transform: translateY(-100%); /*-120%*/
			transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
			opacity: 0;
            visibility: hidden;			
            z-index: 999;
            text-align: center;
            border-bottom: 2px solid #404040;			
            /* Ускоряем рендеринг, чтобы не было "моргания" текста */
            will-change: transform, opacity;
            backface-visibility: hidden;			
        }
        
        .mobile-menu.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
/*            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 0.2s ease, visibility 0s linear 0s;  */
			transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        
        .mobile-menu-items {
            display: flex;
            flex-direction: column;
            gap: 28px;
            align-items: center;			
			transition: none;
        }
        
        .mobile-menu-items a {
            font-size: 1.3rem;
            font-weight: 500;
            text-decoration: none;
            color: #ffffff;
            transition: color 0.3s;
            display: inline-block; /* Для предотвращения дерганья */	
			transform: translateZ(0);
			-webkit-font-smoothing: antialiased;			
        }
        
        .mobile-menu-items a:hover {
            color: #60a5fa;
        }

        /* ===== АДАПТИВ ===== */
        @media (max-width: 880px) {
		    html {
		        scroll-padding-top: 60px; /*70px;*/
		    }	
            .nav-left, .nav-right { 
                display: none; 
            }
            .burger-btn { 
                display: block; 
            }
            .logo { 
                flex: 1; 
                text-align: left; 
            }			
	        .logo a {
	            font-size: 1.2rem;
	            letter-spacing: 0.05em;
	        }			
	        .navbar {
	            padding: 18px 0 6px 0; /*26 декстоп,  18 0 */
	        }			
	        .mobile-menu {
	            top: 65px; /* 70 */
	        }			
        }
		
        /* При возврате к десктопной версии скрываем мобильное меню */
        @media (min-width: 881px) {
            .mobile-menu {
                transform: translateY(-100%) !important; /*120*/
                opacity: 0 !important;
                visibility: hidden !important;		
				transition: none !important;				
            }
            .mobile-menu.open {
                transform: translateY(-100%) !important;
                opacity: 0 !important;
                visibility: hidden !important;
				transition: none !important;				
            }
        }


        h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: -0.02em;
			text-align: center;
        }
		
		.h2-white {
			color: #ffffff;
		}
		
        @media (max-width: 768px) {
            h2 { font-size: 1.8rem; }
        }

        .section {
            padding: 80px 0 70px 0; /*80*/
            border-bottom: 1px solid #eef2f8;
        }
        @media (max-width: 768px) {
            .section { padding: 0px 0; }
/**/
        }

        #about, #problems, #contacts {
            background-color: #292929;
            color: #ffffff;
        }
		
		#editorial-board{
            background-color: #0b436f;
            color: #ffffff;
        }
        
        #about p, #problems p {
            color: #e0e0e0;
        }

        /* GRID 2 колонки для блока О журнале */
        .grid-2cols {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
            align-items: start;
        }
        
        @media (max-width: 880px) {
            .grid-2cols {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* 4 картинки сетка */
        .image-grid-4 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .image-grid-4 img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }
        .image-grid-4 img:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 30px rgba(0,0,0,0.3);
        }
        .mission-text p {
            font-size: 1.05rem;
			text-align: center;
			line-height: 1.5;
            margin-bottom: 1.2rem;
            color: #2c3e50;
        }

        .grid-3cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        @media (max-width: 880px) {
            .grid-3cols {
                grid-template-columns: 1fr;
                gap: 28px;				
            }			
	        .goal-card {
			    font-size: 1.05rem;
				text-align:justify;
	        }
        }
        
        .goal-card {
            background: #ffffff;
            border-radius: 28px;
            padding: 28px;
            border: 1px solid #eef2f8;
            box-shadow: 0 6px 14px rgba(0,0,0,0.02);
            transition: all 0.2s;
			text-align:justify;
        }
		
        .ed-card {
            background: #0b436f;
			color: #000000;
            border-radius: 28px;
            padding: 28px;
            border: 1px solid #eef2f8;
            box-shadow: 0 6px 14px rgba(0,0,0,0.02);
            transition: all 0.2s;
        }
		
		.ed-card p { text-align: left; } /*, editorial-board-text { color: #ffffff; }	*/	
		.goal-card:hover { border-color: #cbdff2; }
		
		/*--------- Анонс журнала  --------------*/
		#issue-announcement {
		  padding: 50px 0; 
		  font-family:  sans-serif, Verdana, Helvetica, Arial, ;
		  color: #000000;
		  text-align: center;  
		}

		#issue-first {
		  text-transform: uppercase;
		  letter-spacing: 2.2px; 
		  font-size: 0.8rem;
		  font-weight: 600;
		}

		#issue-september {
		  text-transform: uppercase;
		  letter-spacing: 1px; 
		  font-size: 2.9rem;
		  margin: 40px 0 0 0;
		  font-weight: 500;
		}

		/* Адаптив для планшетов */
		@media (max-width: 768px) {
		  #issue-announcement { 
		  }
		  
		  #issue-first {
		    font-size: 1rem;
		    letter-spacing: 1.5px;
		  }
		  
		  #issue-september {
		    font-size: 1.5rem;
		    letter-spacing: 3px;
		  }
		}

		/* Адаптив для мобильных телефонов */
		@media (max-width: 480px) {
		  #issue-announcement {
		    padding: 60px 10px; 
		  }
		  
		  #issue-first {
		    font-size: 0.7rem;
			font-weight: 550;	
		    letter-spacing: 2px;
		    margin-bottom: 50px;
		  }
		  
		  #issue-september {
		    font-size: 1.6rem;
		    letter-spacing: 1.9px;
		  }
		}
		/*-----------------------*/		
		
		
        /* Слайдер проблематики */
        .problems-slider-container {
            position: relative;
            width: 100%;
            margin-top: 32px;
        }
        .swiper-slide {
            height: auto;
        }
        .problem-slide-card {
            background: #fafcff;
            border-radius: 28px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s;
            border: 1px solid #e9edf2;
        }
        .problem-slide-card img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            display: block;
        }
        .problem-slide-card .problem-text {
            padding: 20px 20px 24px;
        }
        .problem-slide-card h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .problem-slide-card p {
            color: #4b5565;
        }
        .swiper-button-next, .swiper-button-prev {
            color: #2563eb;
            background: white;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }

        /* Рубрики */
        .rubrics-numbered {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .rubric-item {
            display: flex;
            gap: 24px;
            align-items: flex-start;
/*            border-bottom: 1px solid #eef2f8; */
            padding-bottom: 28px;
        }
        .rubric-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .rubric-number {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
        }
        .rubric-number img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .rubric-content {
            flex: 1;
        }
        .rubric-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .rubric-content p {
            color: #334155;
            line-height: 1.5;
        }

		@media (max-width: 680px) {
		    .rubric-item {
		        flex-direction: row; /* или просто удалить эту строку, так как row — значение по умолчанию */
		        gap: 12px;
		        align-items: flex-start; /* чтобы номер не растягивался по высоте */
		    }
		    .rubric-number {
		        width: 52px;
		        height: 52px;
		        flex-shrink: 0; /* гарантирует, что номер не сожмётся */
		    }
		    .rubric-content {
		        flex: 1;
		    }
		}
		
        .code-card {
            background: #f8fafd;
            border-radius: 28px;
            padding: 28px;
            border: 1px solid #eef2f8;
        }

        .contact-email  {
            font-size: 1.2rem;
            font-weight: 500;
            margin-top: 20px;
        }
		
        .contact-email a { 
			/* color: #1e3a8a; */
			color: #ffffff;
			text-decoration: none; 
			border-bottom: 1px solid; //dashed
		} 
		
        .contact-email a:hover, .contact-email a:hover {
            color: #60a5fa;
        }

        .materials-for-authors-email a { 
			color: #000000;
		} 
		
        .contact-email a:hover, .contact-email a:hover {
            color: #60a5fa;
        }
		
        footer {
            padding: 48px 0 32px;
            font-size: 0.85rem;
            border-top: 1px solid #e2edf2;
            text-align: center;
        }   

/* herro */		
        @font-face {
            font-family: 'TildaSans';
            src: local('Tilda Sans'), local('TildaSans');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'TildaSans';
            src: local('Tilda Sans Bold'), local('TildaSans-Bold');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        /* Основная секция с фоном */
        #hero {
            background-color: #000000;
            background-image: url('../img/bg.jpg');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
		
        /* Полупрозрачное тёмное покрытие поверх фона, чтобы усилить читаемость стеклянного блока */
        #hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            /* плавное затемнение, но блок всё равно будет выделяться */
            z-index: 1;
            pointer-events: none;
        }

        /* ========== СТЕКЛЯННЫЙ БЛОК (iPhone-стиль) ========== */
        .glass-card {
            position: relative;
            z-index: 10;
            max-width: 1000px; /*1000px*/
            width: 90%; 
			height: 550px; 
			min-height: 400px;  			
			max-height: 600px;
/**/			
			overflow-y: auto; 		
            margin: 2rem auto;
            padding: 3rem 2.5rem;						

            /* Обычный полупрозрачный фон — НЕ размывает картинку за ним */
            background: rgba(20, 20, 30, 0.65);
            
            /* Убираем backdrop-filter — именно он размывал фоновую картинку! */
            /* backdrop-filter: blur(12px) saturate(180%); — УДАЛЁН */
            
            /* Закруглённые углы */
            border-radius: 42px;
            
            /* Лёгкая обводка для блеска */
            border: 0px solid rgba(255, 255, 255, 0.2);
            
            /* Тени */
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.35);
            
            /* Плавные анимации */
            transition: transform 0.25s ease, background 0.3s;			
            /* Текст внутри — гарантированно читаем */
            color: white;
            text-align: center;
        }	
		
        /* Лёгкий эффект при наведении для современности (усиливает "стеклянность") */
        .glass-card:hover {
            background: rgba(40, 40, 55, 0.45);
            backdrop-filter: blur(16px) saturate(190%);
            transform: scale(1.01);
            border-color: rgba(255, 255, 255, 0.35);
        }

        /* Стили заголовка внутри стеклянного блока */
        .glass-card h1 {
            font-family: 'TildaSans', system-ui, -apple-system, sans-serif;
            font-weight: 700;
/*            font-size: clamp(2rem, 5.8vw, 3.8rem);
*/
			font-size: clamp(1rem, 4vw, 3rem);
            line-height: 1.2;
            margin-bottom: 1.2rem;
            letter-spacing: -0.01em;
            color: #ffffff;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        /* Градиентная подсветка для части текста (Человек и ИИ) — остаётся читаемой, но эффектной */
        .gradient-text {
            background: linear-gradient(135deg, #c0e0ff, #8bbaff, #3b82f6);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-shadow: none; /* градиент сам по себе яркий */
            font-weight: 700;
        }

        /* Описательный текст */
        .glass-description {
            font-family: 'TildaSans', system-ui, -apple-system, sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.35rem);
            line-height: 1.5;
            max-width: 85%;
            margin: 1.2rem auto 0.8rem auto;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 450;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Строка с цитированием (РИНЦ) — отдельный акцент */
        .citation-rinc {
            font-family: 'TildaSans', sans-serif, system-ui;
            font-size: clamp(0.95rem, 2vw, 1.15rem);
			font-style: italic;
            font-weight: 400;		
            margin-top: 1.5rem;
            padding-top: 0.8rem;
            display: inline-block;
            color: rgba(255, 255, 245, 0.9);
            letter-spacing: 0.3px;
        }

        /* Дополнительный декоративный элемент для имитации свечения (как стекло Apple) */
        .glass-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 42px;
            background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
            pointer-events: none;
            z-index: -1;
        }

        /* Адаптивность для маленьких экранов — сохраняем красивые отступы и читаемость */
        @media (max-width: 768px) {
	        #hero {
                min-height: auto; /* Убираем 100vh на мобильных */
                background-position: center 30%;
                padding: 1rem 0; /* Добавляем отступы сверху и снизу для воздуха */
/*				border: 2px solid red;		
*/
            }	        			
            .glass-card {
                width: 98%; /*92%*/
                padding: 2rem 1.5rem;
                border-radius: 32px;			
				height: 300px; 
				min-height: auto;
				max-height: auto;
            }
            .glass-description {
                max-width: 95%;
            }
            .glass-card h1 {
                margin-bottom: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .glass-card {
                padding: 1.8rem 1.2rem;
                border-radius: 28px;
            }
            .glass-description {
                font-size: 0.95rem;
            }
        }

        /* Дополнительное улучшение читаемости — лёгкая тень для текста */
        .glass-card p, .glass-card h1, .citation-rinc {
            text-rendering: optimizeLegibility;
        }

        /* Убираем возможные конфликты с предыдущими стилями и оставляем красивый фон секции */
        #hero .container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 1.5rem;
        }

        /* Для сохранения структуры, но без лишних слоёв – container просто центрирует карточку */
        .hero-inner {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        /* Глобальный сброс для ссылок и прочего */
        a {
            text-decoration: none;
        }		
		
/* ====== слайдер   ======== */
        .card-container {
            max-width: 1300px;
            width: 100%;
            background: rgba(255,255,255,0.85);
            border-radius: 2rem;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
            padding: 1.8rem;
        }

        .custom-card {
            position: relative;
            border-radius: 1.25rem;
            overflow: hidden;
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
            transition: transform 0.25s ease, box-shadow 0.3s;
            aspect-ratio: 4 / 3;
        }

        @media (hover: hover) and (pointer: fine) {
            .custom-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.2);
            }
            .custom-card:hover .img-wrapper img {
                transform: scale(1.05);
            }
        }

        .image-link {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .img-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

		/* Затемнение */		
        .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .img-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
            pointer-events: none;
            z-index: 1;
        }

        /* Заголовок сверху */		
        .card-title {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 1rem;
            background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
            color: white;
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            z-index: 2;
        }

        /* Alt текст  снизу */		
        .img-alt-text {
            position: absolute;
            bottom: 0;			
            left: 0;
            right: 0;
            padding: 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            font-size: 0.8rem;
            text-align: center;
            z-index: 2;
            line-height: 1.4;
        }

        @media (max-width: 640px) {
            .img-alt-text {
                font-size: 0.7rem;
                padding: 0.8rem;
            }
            .card-title {
                font-size: 0.85rem;
                padding: 1rem;
            }
        }

        /* Десктоп сетка */
        .desktop-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        @media (max-width: 860px) {
            .desktop-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .desktop-grid {
                display: none;
            }
            .mobile-swiper {
                display: block !important;
            }
            .card-container {
                padding: 1rem;
            }
        }

        .mobile-swiper {
            display: none;
            width: 100%;
            position: relative;
        }

        /* Swiper стили */
        .swiper {
            width: 100%;
            padding: 10px 0 40px 0;
            overflow: hidden;
        }

        .swiper-slide {
            height: auto;
            display: flex;
        }

        .swiper-slide .custom-card {
            width: 100%;
            aspect-ratio: 4 / 3;
        }

        /* Стрелки навигации - видимые и кликабельные */
        .swiper-button-next,
        .swiper-button-prev {
            background: #0f172a;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }

        .swiper-button-next.swiper-button-disabled,
        .swiper-button-prev.swiper-button-disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

        /* Для мобильных - увеличиваем стрелки */
        @media (max-width: 640px) {
            .swiper-button-next,
            .swiper-button-prev {
                width: 48px;
                height: 48px;
                background: #0f172a;
            }
            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 22px;
            }
            .swiper-button-prev {
                left: 5px;
            }
            .swiper-button-next {
                right: 5px;
            }
        }

        /* Пагинация */
        .swiper-pagination {
            bottom: 0px !important;
        }
        .swiper-pagination-bullet {
            background: #cbd5e1;
            opacity: 0.7;
            width: 8px;
            height: 8px;
            transition: all 0.2s;
        }
        .swiper-pagination-bullet-active {
            background: #0f172a;
            width: 24px;
            border-radius: 12px;
            opacity: 1;
        }
		
        .attribution {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.75rem;
            color: #475569;
        }
        /* Сетка 3 колонки — без дополнительных фонов, только для расположения */
        .grid-3cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px 28px;
            margin-top: 16px;
        }

        /* ed-card — убрано полностью цветовое оформление: нет фона, нет рамок, нет теней, нет бэкдропа.
           Только внутренние отступы для комфортного чтения, и белый текст. */
        .ed-card {
            background: transparent !important;
            backdrop-filter: none !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0;
            transition: none;
            display: flex;
            flex-direction: column;
            height: 100%;
			text-align: left;			
        }

        /* При наведении ничего не меняется — никаких дополнительных эффектов фона или рамок */
		/* ФИО — крупный белый шрифт */
        .Ed_fio {
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.3;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
            word-break: break-word;
            color: #FFFFFF !important;
        }

        /* Должность — белый текст */
        .Ed_doljn {
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #FFFFFF !important;
        }

        /* Короткая линия hr — оставляем как элемент, но без цветовых рамок карточки, линия остаётся декоративной */
        .Ed_doljn hr {
            width: 24px; /*54*/
            height: 2px;
            background: linear-gradient(90deg, #ffffff, #b0ccff, #ffffff);
            border: none;
            margin: 8px 0 6px 0;
            border-radius: 4px;
            opacity: 0.7;
        }

        /* Описание / регалии — белый текст */
        .Ed_discrip {
            font-size: 0.87rem;
            line-height: 1.5;
            letter-spacing: 0.2px;
            font-weight: 400;
            margin-top: 6px;
            flex: 1;
            color: #FFFFFF !important;
        }

        .ed-card:last-child .Ed_discrip {
            line-height: 1.65;
        }

        /* дополнительная гарантия: никаких лишних фонов или обводок при фокусе/активе */
        .ed-card:focus, .ed-card:active {
            outline: none;
            background: transparent !important;
        }

        /* Адаптивность */
        @media (max-width: 900px) {
            .container {
/*                padding: 32px 24px 48px 24px; */
                padding: 0px 24px 0px 24px; 
            }
            .grid-3cols {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
            h2.h2-white {
                font-size: 2.2rem;
            }
            .Ed_fio {
                font-size: 1.2rem; /* 1.5rem */
            }
        }

        @media (max-width: 600px) {
            .grid-3cols {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .container {
/*                padding: 28px 20px 40px 20px; */
                padding: 6px 20px 6px 20px;
            }
        }

        /* Убираем любые возможные отладочные тени или наследования цвета от родителя с фоном — теперь фон карточек абсолютно прозрачный */
        .ed-card, .ed-card * {
            background: transparent !important;
        }

        /* Но сохраняем видимость текста: он 100% белый */
        .ed-card p, .ed-card .Ed_fio, .ed-card .Ed_doljn, .ed-card .Ed_discrip {
            color: #FFFFFF !important;
        }