

/* Start:/about_the_university/informatizatsiya/style.css?178455900526810*/
:root {
    /* Базовая палитра и темы */
    --portal-bg: #ffffff;
    --portal-text-dark: #0f172a;
    --portal-text-muted: #64748b;
    --portal-border: #e2e8f0;
    --portal-hover-bg: #f8fafc;
    
    /* Цветовые акценты документов */
    --color-1c: #10b981;       /* Изумрудный */
    --color-doc: #3b82f6;      /* Синий */
    --color-pdf: #ef4444;      /* Красный */
    --color-kii: #f59e0b;      /* Янтарно-оранжевый */
    
    /* Академическая/Корпоративная тема */
    --univer-primary: #4f46e5;
    --univer-primary-hover: #4338ca;
    --univer-primary-light: #eeebff;
    --univer-text-main: #1e293b;
    --univer-text-muted: #64748b;
    --univer-bg-card: #ffffff;
    --univer-bg-header: #f8fafc;
    --univer-border: #e2e8f0;
    --univer-radius: 12px;

    /* ЭИОС Портал Тема */
    --eios-primary: #0b3c5d;
    --eios-primary-light: #328cc1;
    --eios-accent: #00d2d3;
    --eios-text-main: #2d3748;
    --eios-text-muted: #718096;
    --eios-bg-gradient: linear-gradient(135deg, #0b3c5d 0%, #1d5b8c 100%);
    --eios-card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --eios-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Системные шрифты */
    --main-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================
   1. БАЗОВЫЕ И ОБЩИЕ КОНТЕЙНЕРЫ
   ========================================== */
.portal-container,
.edo-docs-layout,
.univer-docs-layout,
.edo-video-layout,
.univer-video-layout,
.webinars-container,
.section-1c-container {
    width: 100%;
    max-width: 100%;
    margin: 2rem auto;
    padding: 0 15px;
    box-sizing: border-box;
    font-family: var(--main-font);
}

/* Изолированный контейнер портала ЭИОС */
.eios-portal {
    font-family: var(--main-font);
    color: var(--eios-text-main);
    padding: 30px 0;
    background-color: #f8fafc;
}

.eios-grid-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.eios-main-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==========================================
   2. НАВИГАЦИЯ И ВНУТРЕННИЕ МЕНЮ
   ========================================== */
.internal-menu { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 0.5rem; 
    margin-bottom: 2rem; 
    padding: 0 15px;
}

.internal-menu a { 
    display: inline-block; 
    padding: 0.4rem 1rem; 
    font-size: 0.85rem; 
    text-decoration: none; 
    border-radius: 6px; 
    border: 1px solid #cbd5e1; 
    color: #475569; 
    transition: all 0.2s; 
}

.internal-menu a:hover { 
    background: #f1f5f9; 
    color: #1e293b; 
}

.internal-menu a.active { 
    background: #2563eb; 
    color: #fff; 
    border-color: #2563eb; 
}

.sub-nav-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 1.5rem; 
    margin-bottom: 3rem; 
}

.nav-card { 
    background: #fff; 
    border-radius: 8px; 
    padding: 1.5rem; 
    text-align: center; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
    transition: transform 0.2s, box-shadow 0.2s; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
}

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

.nav-card-title { font-size: 1.15rem; font-weight: 600; margin: 0 0 0.5rem 0; color: #1e293b; }
.nav-card-text { font-size: 0.875rem; color: #64748b; margin-bottom: 1.5rem; min-height: 48px; line-height: 1.4; }

.nav-card-btn { 
    display: inline-block; 
    padding: 0.5rem 1.25rem; 
    font-size: 0.875rem; 
    font-weight: 500; 
    text-decoration: none; 
    border-radius: 6px; 
    color: #fff; 
    transition: background 0.2s; 
}

/* Кнопки */
.btn-blue { background: #2563eb; } .btn-blue:hover { background: #1d4ed8; }
.btn-green { background: #16a34a; } .btn-green:hover { background: #15803d; }
.btn-cyan { background: #0891b2; } .btn-cyan:hover { background: #0e7490; }
.btn-orange { background: #ea580c; } .btn-orange:hover { background: #c2410c; }
.btn-indigo { background: #4f46e5; } .btn-indigo:hover { background: #4338ca; }

/* ==========================================
   3. БАННЕРЫ И ИНФО-БЛОКИ
   ========================================== */
.hero-banner { 
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); 
    color: #fff; 
    padding: 3rem 2rem; 
    border-radius: 8px; 
    margin-bottom: 2rem; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); 
}
.hero-banner h1 { margin: 0 0 1rem 0; font-size: 1.75rem; font-weight: 700; }
.hero-banner p { margin: 0; color: #cbd5e1; font-size: 1.1rem; line-height: 1.5; }

/* Промо-баннер ЭИОС */
.eios-hero-banner {
    background: var(--eios-bg-gradient);
    border-radius: 20px;
    padding: 45px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(11, 60, 93, 0.2);
}

.eios-hero-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.eios-hero-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.2;
}

.eios-hero-banner p {
    font-size: 16px;
    color: #e2e8f0;
    max-width: 850px;
    line-height: 1.6;
    margin-bottom: 0;
}

.doc-video-banner,
.univer-video-banner {
    display: flex;
    align-items: center;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--univer-radius);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    text-decoration: none;
    color: #166534;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 10px;
}

.doc-video-banner:hover,
.univer-video-banner:hover {
    background: #dcfce7;
    border-color: #86efac;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(22, 101, 52, 0.05);
}

.doc-video-banner .video-banner-title,
.univer-video-banner .video-banner-title {
    flex-grow: 1;
    min-width: 200px;
}

/* ЭИОС Блоки и преимущества */
.eios-features-badge {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: -10px;
}

.eios-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.eios-feature-item i {
    font-size: 20px;
    color: var(--eios-primary-light);
    background: #f0f7ff;
    padding: 12px;
    border-radius: 10px;
}

.eios-feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--eios-primary);
    margin-bottom: 4px;
}

.eios-feature-text p {
    font-size: 13px;
    color: var(--eios-text-muted);
    line-height: 1.4;
    margin: 0;
}

.eios-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--eios-card-shadow);
    border: 1px solid #edf2f7;
}

.eios-block-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--eios-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eios-block-desc {
    font-size: 14px;
    color: var(--eios-text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.eios-block-p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--eios-text-main);
    margin-bottom: 15px;
}

.eios-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.eios-benefit-column {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.eios-benefit-column h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--eios-primary);
    margin-bottom: 15px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--eios-primary-light);
    padding-bottom: 8px;
}

/* ==========================================
   4. СЕРВИСНЫЕ КАРТОЧКИ И ДОКУМЕНТЫ ЭИОС
   ========================================== */
.eios-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.eios-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #edf2f7;
    box-shadow: var(--eios-card-shadow);
    display: flex;
    flex-direction: column;
    transition: var(--eios-transition);
    text-decoration: none !important;
}

.eios-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.eios-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #f0f4f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--eios-transition);
}

.eios-service-card:hover .eios-icon-wrapper {
    background: var(--eios-primary);
}

.eios-icon-wrapper i {
    font-size: 22px;
    color: var(--eios-primary);
    transition: var(--eios-transition);
}

.eios-service-card:hover .eios-icon-wrapper i {
    color: #ffffff;
}

.eios-service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--eios-primary);
    margin-bottom: 10px;
}

.eios-service-card p {
    font-size: 14px;
    color: var(--eios-text-muted);
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
}

.eios-card-action {
    font-size: 14px;
    font-weight: 600;
    color: var(--eios-primary-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.eios-card-action i { transition: var(--eios-transition); }
.eios-service-card:hover .eios-card-action i { transform: translateX(4px); }

.eios-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.eios-doc-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none !important;
    transition: var(--eios-transition);
}

.eios-doc-link:hover {
    background: #f8fafc;
    border-color: var(--eios-primary-light);
    transform: translateX(3px);
}

.eios-doc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eios-doc-icon.pdf { background: #fff5f5; color: #e53e3e; }
.eios-doc-icon.web { background: #f0f7ff; color: #3182ce; }
.eios-doc-icon.survey { background: #f0fff4; color: #38a169; }

.eios-doc-info { display: flex; flex-direction: column; }
.eios-doc-name { font-size: 14px; font-weight: 600; color: var(--eios-text-main); line-height: 1.4; }
.eios-doc-type { font-size: 11px; color: var(--eios-text-muted); margin-top: 3px; }

.eios-list { padding-left: 20px; margin-bottom: 0; }
.eios-list li { font-size: 13.5px; line-height: 1.5; margin-bottom: 10px; color: var(--eios-text-main); }
.eios-list li:last-child { margin-bottom: 0; }

/* ==========================================
   5. КАРТОЧКИ ДОКУМЕНТОВ И СРОКОВ (ОБЩИЕ)
   ========================================== */
.edo-doc-card,
.univer-card { 
    background: var(--univer-bg-card); 
    border: 1px solid var(--univer-border); 
    border-radius: var(--univer-radius); 
    overflow: hidden; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.02); 
    margin-bottom: 1.5rem; 
    transition: border-color 0.3s, box-shadow 0.3s;
}

.edo-doc-card:hover,
.univer-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.04);
}

.edo-doc-summary,
.univer-summary { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem; 
    font-weight: 600; 
    font-size: 1.15rem; 
    color: var(--univer-text-main); 
    cursor: pointer; 
    background: var(--univer-bg-header); 
    user-select: none; 
    transition: background 0.2s, color 0.2s; 
    gap: 15px;
}

.edo-doc-summary::-webkit-details-marker,
.univer-summary::-webkit-details-marker { display: none; } 

.edo-doc-summary::after,
.univer-summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--univer-text-muted);
    border-bottom: 2px solid var(--univer-text-muted);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s, border-color 0.3s;
    flex-shrink: 0;
}

.edo-doc-summary:hover,
.univer-summary:hover { background: #f1f5f9; }

.edo-doc-card[open],
.univer-card[open] { border-color: var(--univer-primary); }

.edo-doc-card[open] .edo-doc-summary,
.univer-card[open] .univer-summary { 
    border-bottom: 1px solid var(--univer-border); 
    background: var(--univer-primary-light); 
    color: var(--univer-primary); 
}

.edo-doc-card[open] .edo-doc-summary::after,
.univer-card[open] .univer-summary::after {
    transform: rotate(-135deg) translateY(-2px);
    border-color: var(--univer-primary);
}

.edo-file-list,
.univer-file-list { 
    padding: 1rem; 
    list-style: none; 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 0.85rem; 
}

.edo-file-row,
.univer-file-row { 
    display: flex; 
    align-items: center; 
    background: #ffffff; 
    border: 1px solid #f1f5f9; 
    border-radius: 8px; 
    transition: all 0.2s ease-in-out; 
}

.edo-file-row:hover,
.univer-file-row:hover { 
    background: #f8fafc; 
    border-color: #e2e8f0; 
    transform: translateX(4px);
}

.edo-file-link,
.univer-file-link { 
    display: flex; 
    align-items: center; 
    width: 100%; 
    padding: 1rem; 
    text-decoration: none; 
    color: #334155; 
    font-weight: 500; 
    font-size: 1rem; 
    box-sizing: border-box;
    flex-wrap: wrap; 
    gap: 10px;
}

.doc-icon-wrapper,
.univer-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.badge-icon { width: 38px; height: 38px; }

.edo-file-title,
.univer-file-title { 
    flex-grow: 1; 
    line-height: 1.5; 
    color: #334155;
    transition: color 0.2s;
    min-width: 180px; 
    word-break: break-word; 
}

.edo-file-row:hover .edo-file-title,
.univer-file-row:hover .univer-file-title { color: #0f172a; }

.edo-file-action,
.univer-file-action { 
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--univer-text-muted); 
    font-size: 0.85rem; 
    font-weight: 600; 
    margin-left: auto; 
    padding: 6px 12px;
    border-radius: 6px;
    background: transparent;
    transition: all 0.2s; 
    white-space: nowrap; 
}

.edo-file-row:hover .edo-file-action,
.univer-file-row:hover .univer-file-action { 
    color: var(--univer-primary); 
    background: var(--univer-primary-light);
}

/* ==========================================
   6. ПОРТАЛЬНЫЕ СТРОКИ И ТЕГИ (BADGES)
   ========================================== */
.portal-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    margin-top: 40px;
}
.portal-section-header:first-of-type { margin-top: 0; }

.portal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--portal-text-dark);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.portal-title-line {
    flex-grow: 1;
    height: 1px;
    background: var(--portal-border);
}

.portal-group {
    background: var(--portal-bg);
    border: 1px solid var(--portal-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.portal-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--portal-border);
    background: var(--portal-bg);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.portal-row:last-child { border-bottom: none; }

.portal-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background-color 0.2s ease;
}

.portal-row:has(.badge-1c):hover::before { background: var(--color-1c); }
.portal-row:has(.badge-doc):hover::before { background: var(--color-doc); }
.portal-row:has(.badge-pdf):hover::before { background: var(--color-pdf); }
.portal-row:has(.badge-kii):hover::before { background: var(--color-kii); }

.portal-row:hover {
    background: var(--portal-hover-bg);
    padding-left: 28px;
}

.portal-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding-right: 20px;
}

.portal-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    text-align: center;
    min-width: 45px;
}

.badge-1c { background-color: rgba(16, 185, 129, 0.1); color: var(--color-1c); }
.badge-doc { background-color: rgba(59, 130, 246, 0.1); color: var(--color-doc); }
.badge-pdf { background-color: rgba(239, 68, 68, 0.1); color: var(--color-pdf); }
.badge-kii { background-color: rgba(245, 158, 11, 0.1); color: var(--color-kii); }

.portal-link {
    color: var(--portal-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none !important;
    transition: color 0.15s ease;
}

.portal-link::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
}

.portal-row:hover .portal-link { color: #2563eb; }

.portal-arrow-icon {
    width: 20px;
    height: 20px;
    color: var(--portal-text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.portal-row:hover .portal-arrow-icon {
    transform: translateX(4px);
    color: var(--portal-text-dark);
}

/* ==========================================
   7. ВИДЕОГАЛЕРЕИ И МЕДИАКАРТОЧКИ
   ========================================== */
.edo-spoiler,
.univer-spoiler { 
    background: #ffffff; 
    border: 1px solid #e2e8f0; 
    border-radius: 12px; 
    margin-bottom: 2rem; 
    overflow: hidden; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s ease;
}

.edo-spoiler:hover,
.univer-spoiler:hover { border-color: #cbd5e1; }

.edo-spoiler-title,
.univer-spoiler-title { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem; 
    font-weight: 600; 
    font-size: 1.2rem; 
    color: #1e293b; 
    cursor: pointer; 
    background: #f8fafc; 
    user-select: none; 
    list-style: none;
    transition: background 0.2s ease, color 0.2s ease; 
}

.edo-spoiler-title::-webkit-details-marker,
.univer-spoiler-title::-webkit-details-marker { display: none; }

.edo-spoiler-title::after,
.univer-spoiler-title::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-right: 5px;
}

.edo-spoiler-title:hover,
.univer-spoiler-title:hover { 
    background: #f1f5f9; 
    color: #0052cc;
}

.edo-spoiler-title:hover::after,
.univer-spoiler-title:hover::after { border-color: #0052cc; }

.edo-spoiler[open],
.univer-spoiler[open] { border-color: #0052cc; }

.edo-spoiler[open] .edo-spoiler-title,
.univer-spoiler[open] .univer-spoiler-title { 
    border-bottom: 1px solid #e2e8f0; 
    background: #f0f7ff; 
    color: #0052cc; 
}

.edo-spoiler[open] .edo-spoiler-title::after,
.univer-spoiler[open] .univer-spoiler-title::after {
    transform: rotate(-135deg);
    border-color: #0052cc;
}

.edo-spoiler-body,
.univer-spoiler-body { 
    padding: 1.5rem; 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 1.5rem; 
    background: #fafafa;
}

.edo-video-item,
.univer-video-item { 
    display: flex; 
    flex-direction: column; 
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edo-video-item:hover,
.univer-video-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.edo-video-name,
.univer-video-name { 
    font-weight: 500; 
    font-size: 0.95rem; 
    color: #334155; 
    margin-bottom: 0.75rem; 
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.edo-responsive-player,
.univer-responsive-player { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    border-radius: 6px; 
    background: #0f172a; 
    border: 1px solid #e2e8f0;
}

.edo-responsive-player iframe,
.univer-responsive-player iframe { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    border: 0; 
}

/* Вебинары */
.webinars-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 1.5rem; 
}

.webinar-card { 
    background: #fff; 
    border-radius: 8px; 
    padding: 1.25rem; 
    border: 1px solid #e2e8f0; 
    border-left: 4px solid #2563eb; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    position: relative; 
    transition: box-shadow 0.2s; 
}

.webinar-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.webinar-date { font-size: 0.8rem; color: #64748b; margin-bottom: 0.5rem; font-weight: 500; }
.webinar-title { font-size: 0.95rem; line-height: 1.5; font-weight: 600; margin: 0 0 1rem 0; }
.webinar-title a { color: #1e293b; text-decoration: none; }
.webinar-title a::after { content: ""; position: absolute; left: 0; top: 0; right: 0; bottom: 0; }
.webinar-link-text { font-size: 0.85rem; color: #2563eb; font-weight: 600; text-align: right; }

/* ==========================================
   8. ВСПОМОГАТЕЛЬНЫЕ КОМПОНЕНТЫ И FAQ
   ========================================== */
.news-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: #0f172a; }
.news-alert { background: #f8fafc; border: 1px solid #e2e8f0; border-left: 4px solid #2563eb; padding: 1.5rem; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.news-alert-heading { font-size: 1.1rem; font-weight: 600; color: #2563eb; margin: 0 0 0.25rem 0; }
.news-alert-date { font-size: 0.8rem; color: #94a3b8; margin-bottom: 0.75rem; }
.news-alert-text { margin: 0; color: #475569; font-size: 0.95rem; line-height: 1.5; }

.contacts-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05); width: 100%; box-sizing: border-box; }
.contacts-card .structure-parent { display: block; font-size: 0.85rem; text-transform: uppercase; color: #64748b; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 0.25rem; }  
.contacts-card h4 { margin-top: 0; color: #2563eb; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; }
.contacts-intro { color: #475569; font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.5; }

.info-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.info-block-title { font-weight: 600; font-size: 0.9rem; color: #1e293b; margin-bottom: 0.25rem; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.info-block-value { color: #475569; font-size: 0.95rem; line-height: 1.5; }
.info-block-value a { color: #2563eb; text-decoration: none; }
.info-block-value a:hover { text-decoration: underline; }
.text-alert { color: #dc2626; font-weight: 500; }

.faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 6px; margin-bottom: 0.75rem; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.faq-input { display: none; }
.faq-trigger { display: block; padding: 1rem 1.25rem; font-weight: 600; color: #1e293b; cursor: pointer; background: #fff; position: relative; user-select: none; font-size: 1rem; }
.faq-trigger::after { content: "+"; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); font-size: 1.25rem; color: #94a3b8; transition: transform 0.2s; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: #fafafa; }
.faq-content-inner { padding: 1.25rem; color: #475569; font-size: 0.95rem; line-height: 1.6; border-top: 1px solid #f1f5f9; }
.faq-input:checked ~ .faq-content { max-height: 500px; }
.faq-input:checked ~ .faq-trigger::after { content: "−"; }
.faq-input:checked ~ .faq-trigger { background: #f8fafc; }

/* ==========================================
   9. АДАПТИВНОСТЬ (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1200px) {
    .edo-spoiler-body,
    .univer-spoiler-body { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 1024px) {
    .eios-docs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .eios-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .eios-hero-banner {
        padding: 30px;
    }
    .eios-hero-banner h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .edo-spoiler-body,
    .univer-spoiler-body { 
        grid-template-columns: 1fr; 
        gap: 1.25rem;
        padding: 1rem;
    }
    .edo-video-name,
    .univer-video-name { min-height: auto; }
}

@media (max-width: 640px) {
    .portal-container { margin: 20px 0; }
    .portal-row { padding: 16px; }
    .portal-row:hover { padding-left: 20px; }
    .portal-left { gap: 12px; }
    .portal-link { font-size: 0.9rem; }
    .portal-badge { padding: 4px 8px; font-size: 0.7rem; }
    .portal-arrow-icon { display: none; }
}

@media (max-width: 576px) {
    .edo-file-action,
    .univer-file-action {
        margin-left: 48px; 
        background: #f1f5f9; 
    }
    .doc-video-banner .edo-file-action,
    .univer-video-banner .univer-file-action {
        margin-left: 0;
    }
}
/* End */
/* /about_the_university/informatizatsiya/style.css?178455900526810 */
