

/* Start:/applicants/the_admissions_committee/style.css?178429330723027*/
/* --- Изолированная экосистема стилей СВЕТЛОГО современного дизайна --- */
.modern-light-root {
    --bg-main: #ffffff;
    --bg-section-alt: #f8fafc;    /* Мягкий серый фон для чередования секций */
    --bg-card: #ffffff;
    --border-card: #e2e8f0;       /* Тонкие чистые границы */
    --border-hover: #4f46e5;      /* Акцентный цвет индиго при наведении */
    --text-main: #0f172a;         /* Глубокий графитовый для отличной читаемости */
    --text-muted: #64748b;       /* Спокойный серый для пояснений */
    --accent-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --accent-cyan-light: #ecfeff; /* Мягкая подсветка для важных элементов */
    --radius-lg: 20px;
    --radius-md: 12px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.modern-light-root * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.modern-light-root .container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 480px) {
    .modern-light-root .container {
        padding: 0 16px; /* Делаем боковые отступы экрана на смартфонах чуть компактнее */
    }
}

.modern-light-root section {
    padding: 90px 0;
    position: relative;
}

.modern-light-root .bg-alt {
    background-color: var(--bg-section-alt);
}

/* --- СТИЛЬНЫЕ ЧИСТЫЕ ЗАГОЛОВКИ --- */
.modern-light-root .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.modern-light-root .section-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.modern-light-root .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* --- 1. СВЕТЛЫЙ HERO БЛОК --- */
.modern-light-root .hero-section {
    padding: 80px 0 60px;
    background: radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(124, 58, 237, 0.04) 0%, transparent 40%);
    border-bottom: 1px solid #f1f5f9;
}

.modern-light-root .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 16px;
}

.modern-light-root .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .modern-light-root .hero-title { font-size: 2.2rem; }
}

.modern-light-root .hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 28px;
}

.modern-light-root .cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.modern-light-root .btn-accent {
    padding: 14px 32px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}

.modern-light-root .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.35);
    color: #ffffff;
}

.modern-light-root .btn-outline {
    padding: 14px 32px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.modern-light-root .btn-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: var(--text-main);
}

/* --- 2. СВЕТЛАЯ BENTO СЕТКА (BENTO GRID) --- */
.modern-light-root .bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .modern-light-root .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .modern-light-root .bento-grid { grid-template-columns: 1fr; gap: 16px; }
}

.modern-light-root .bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

@media (max-width: 768px) {
    .modern-light-root .bento-card {
        padding: 24px; /* Уменьшаем внутренние отступы карточек на планшетах/мобильных */
    }
}

.modern-light-root .bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

/* Колонки Bento */
.modern-light-root .col-span-2 { grid-column: span 2; }
.modern-light-root .col-span-3 { grid-column: span 3; }

@media (max-width: 1024px) {
    .modern-light-root .col-span-2, 
    .modern-light-root .col-span-3 { grid-column: span 1; }
}

/* Контент внутри Bento карточек */
.modern-light-root .card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #4f46e5;
}

.modern-light-root .bento-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.modern-light-root .bento-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.modern-light-root .bento-card-phone-link {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.modern-light-root .bento-card-phone-link:hover {
    color: #4f46e5;
}

.modern-light-root .phone-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: normal;
    margin-left: 2px;
}

.modern-light-root .bento-card-link {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.modern-light-root .bento-card-link svg {
    transition: var(--transition);
}

.modern-light-root .bento-card:hover .bento-card-link svg {
    transform: translateX(4px);
}

/* --- 3. ПОДРОБНОСТИ ДЛЯ ЕКЦ МИНОБРНАУКИ --- */
.modern-light-root .ekc-subgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
@media (max-width: 768px) {
    .modern-light-root .ekc-subgrid { grid-template-columns: 1fr; gap: 12px; }
}

.modern-light-root .ekc-subcard {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: var(--radius-md);
}

.modern-light-root .ekc-subcard span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.modern-light-root .ekc-subcard a,
.modern-light-root .ekc-subcard p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
}

.modern-light-root .ekc-subcard a:hover {
    color: #4f46e5;
}

/* Живой статус времени */
.modern-light-root .status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #e6f4ea;
    color: #137333;
    border: 1px solid rgba(19, 115, 51, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.modern-light-root .status-pill.closed {
    background: #fef3c7;
    color: #b45309;
    border-color: rgba(180, 83, 9, 0.15);
}

.modern-light-root .status-pill .pulse-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    position: relative;
}

.modern-light-root .status-pill:not(.closed) .pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: currentColor;
    border-radius: 50%;
    animation: light-pulse 1.8s infinite ease-in-out;
}

@keyframes light-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

/* --- 4. СВЕТЛЫЙ ВИДЖЕТ ДЛЯ БАННЕРА РУМЦ И ГОРЯЧЕЙ ЛИНИИ --- */
.modern-light-root .rumc-light-box {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    width: 100%;
    margin: 0 auto;
}

.modern-light-root .rumc-info-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .modern-light-root .rumc-info-panel { 
        flex-direction: column; 
        text-align: center; 
        padding: 16px; /* Оптимальный отступ на мобильных */
        gap: 16px;
    }
}

.modern-light-root .rumc-phone-block span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.modern-light-root .rumc-phone-block a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4f46e5;
    text-decoration: none;
    transition: var(--transition);
}

.modern-light-root .rumc-phone-block a:hover {
    color: #7c3aed;
}

/* --- ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ ИНТЕРАКТИВНОГО БАННЕРА РУМЦ СКФУ --- */
.modern-light-root .rumc-banner-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

/* Флекс по умолчанию для мобильных/планшетов */
.modern-light-root .rumc-flex-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.modern-light-root .rumc-left-col {
    flex: 1;
}

.modern-light-root .rumc-right-col {
    width: 100%;
    background: #f8fafc;
    border-top: 4px solid #4f46e5;
    padding: 30px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Качественная адаптивная сетка для десктопов (заполняет всю ширину 1300px) */
@media (min-width: 992px) {
    .modern-light-root .rumc-flex-wrapper {
        display: grid;
        grid-template-columns: 1.7fr 1fr;
        gap: 40px;
    }
    .modern-light-root .rumc-right-col {
        width: auto;
        border-top: none;
        border-left: 4px solid #4f46e5;
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
        padding: 40px;
    }
}

/* --- ОПТИМИЗАЦИЯ ДЛЯ МОБИЛЬНЫХ ЭКРАНОВ (УБИРАЕМ ТЕСНОТУ РУМЦ) --- */
@media (max-width: 768px) {
    .modern-light-root .rumc-light-box {
        padding: 16px; /* Освобождаем драгоценное место */
    }
    .modern-light-root .rumc-banner-card { 
        padding: 16px; /* Сужаем внутренние поля */
    }
    .modern-light-root .rumc-right-col {
        padding: 20px 16px; /* Уменьшаем отступы синего инфоблока на мобильных */
    }
    .modern-light-root .rumc-phone-large {
        font-size: 1.45rem !important; /* Уменьшаем размер шрифта номера, чтобы он не переносился */
    }
    .modern-light-root .rumc-main-title {
        font-size: 1.35rem; /* Более гармоничный заголовок для мобильных */
    }
}

.modern-light-root .rumc-badge-top {
    display: inline-block;
    padding: 4px 12px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    margin-bottom: 16px;
}

.modern-light-root .rumc-main-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 14px;
}

.modern-light-root .rumc-description-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 750px;
}

.modern-light-root .rumc-schedule-list {
    list-style: none;
    margin-top: 10px;
}

.modern-light-root .rumc-schedule-list li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.modern-light-root .rumc-schedule-list li::before {
    content: "•";
    color: #7c3aed;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.modern-light-root .rumc-phone-large {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4f46e5;
    text-decoration: none;
    display: block;
    margin-top: 5px;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.modern-light-root .rumc-phone-large:hover {
    color: #7c3aed;
}

/* --- 5. МИНИМАЛИСТИЧНЫЕ ССЫЛКИ-ЧИПЫ --- */
.modern-light-root .smart-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 16px;
}

.modern-light-root .link-item {
    background: #ffffff;
    border: 1px solid var(--border-card);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.modern-light-root .link-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateX(4px);
    color: #4f46e5;
}

.modern-light-root .link-item.featured {
    background: linear-gradient(90deg, #f5f3ff 0%, #ffffff 100%);
    border-color: rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    font-weight: 600;
}

.modern-light-root .p-0 { padding: 0 !important; }

.residency-container {
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
}

.residency-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #0056b3;
    padding-bottom: 20px;
}

.residency-header h1 {
    color: #0056b3;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.residency-header p {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* Сетка для контента и контактов */
.residency-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .residency-grid {
        grid-template-columns: 1fr;
    }
}

/* Карточки с информацией */
.info-card {
    background: #f8f9fa;
    border-left: 5px solid #0056b3;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Блок контактов */
.contacts-sidebar {
    background: #e9ecef;
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
    border: 1px solid #dee2e6;
}

.contacts-sidebar h3 {
    color: #212529;
    margin-top: 0;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
    font-size: 18px;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-item strong {
    display: block;
    color: #495057;
    margin-bottom: 3px;
}

.contact-item a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Список документов */
.documents-section {
    margin-top: 40px;
}

.documents-section h2 {
    color: #212529;
    font-size: 22px;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 767px) {
    .doc-list {
        grid-template-columns: 1fr;
    }
}

.doc-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.doc-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: #0056b3;
    transform: translateY(-2px);
}

.doc-link {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
    height: 100%;
    box-sizing: border-box;
}

.doc-link:hover {
    color: #0056b3;
}

/* Иконки типов файлов */
.doc-icon {
    margin-right: 15px;
    font-size: 24px;
    min-width: 30px;
    text-align: center;
}

.doc-icon.pdf::before {
    content: "📄";
    color: #dc3545;
}

.doc-icon.word::before {
    content: "📝";
    color: #0056b3;
}

.doc-icon.image::before {
    content: "🖼️";
    color: #28a745;
}

.doc-icon.web::before {
    content: "🔗";
    color: #17a2b8;
}

.doc-icon.info::before {
    content: "ℹ️";
    color: #6c757d;
}

.doc-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.skga-fullwidth-container {
        color: #333333;
        line-height: 1.6;
        width: 100%; /* Занимает всю ширину */
        margin: 0;
        padding: 20px 4%; /* 4% отступы слева и справа для аккуратного вида на больших экранах */
        box-sizing: border-box;
    }
    .skga-banner {
        background: linear-gradient(135deg, #1a4f7c 0%, #2c3e50 100%);
        color: #ffffff;
        padding: 30px;
        border-radius: 8px;
        margin-bottom: 30px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        width: 100%;
        box-sizing: border-box;
    }
    .skga-banner h1 {
        margin: 0 0 10px 0;
        font-size: 24px;
        color: #ffffff;
        font-weight: 700;
    }
    .skga-banner p {
        margin: 0;
        font-size: 15px;
        opacity: 0.9;
    }
    .skga-alert {
        background-color: #fdf7f7;
        border-left: 5px solid #d9534f;
        color: #b94a48;
        padding: 15px 20px;
        margin-bottom: 30px;
        border-radius: 4px;
        width: 100%;
        box-sizing: border-box;
    }
    .skga-alert strong {
        color: #a94442;
    }
    .skga-fullwidth-container h2 {
        font-size: 20px;
        color: #1a4f7c;
        border-left: 4px solid #deaa12;
        padding-left: 12px;
        margin: 35px 0 20px 0;
        font-weight: 600;
    }
    .skga-fullwidth-container p {
        margin-bottom: 15px;
        font-size: 15px;
        text-align: justify;
    }
    .skga-fullwidth-container a {
        color: #167abc;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
    }
    .skga-fullwidth-container a:hover {
        color: #1a4f7c;
        text-decoration: underline;
    }
    .skga-card-grid {
        display: block;
        margin-bottom: 25px;
        width: 100%;
    }
    .skga-card {
        background-color: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        padding: 20px;
        margin-bottom: 15px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        width: 100%;
        box-sizing: border-box;
    }
    .skga-card strong.title {
        display: block;
        font-size: 16px;
        color: #1a4f7c;
        margin-bottom: 10px;
    }
    .skga-badge-block {
        background-color: #eef7fc;
        border-left: 5px solid #167abc;
        padding: 15px 20px;
        margin: 25px 0;
        border-radius: 0 4px 4px 0;
        width: 100%;
        box-sizing: border-box;
    }
    .skga-steps {
        margin: 25px 0;
        padding-left: 0;
        width: 100%;
    }
    .skga-step-item {
        position: relative;
        padding-left: 45px;
        margin-bottom: 18px;
        font-size: 15px;
    }
    .skga-step-number {
        position: absolute;
        left: 0;
        top: 2px;
        width: 26px;
        height: 26px;
        background-color: #1a4f7c;
        color: #ffffff;
        border-radius: 50%;
        text-align: center;
        font-size: 13px;
        font-weight: bold;
        line-height: 26px;
    }
    .skga-fullwidth-container ul, .skga-fullwidth-container ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .skga-fullwidth-container li {
        margin-bottom: 8px;
        font-size: 15px;
    }

    /* Стили для модального окна */
    .skga-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }
    .skga-modal {
        background-color: #ffffff;
        padding: 30px;
        border-radius: 8px;
        max-width: 600px;
        width: 90%;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        position: relative;
        box-sizing: border-box;
    }
    .skga-modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        color: #aaa;
        cursor: pointer;
        font-weight: bold;
        line-height: 1;
    }
    .skga-modal-close:hover {
        color: #333;
    }
    .skga-modal h3 {
        margin-top: 0;
        color: #1a4f7c;
        font-size: 18px;
        border-bottom: 2px solid #deaa12;
        padding-bottom: 8px;
        margin-bottom: 15px;
    }
    .skga-modal p {
        font-size: 14px;
        margin-bottom: 10px;
        text-align: left;
    }
    .skga-modal ul {
        margin-bottom: 15px;
    }
    .skga-modal li {
        font-size: 14px;
    }
    .skga-link-modal {
        cursor: pointer;
        border-bottom: 1px dashed #167abc;
    }
    .skga-link-modal:hover {
        border-bottom-style: solid;
    }
/* End */
/* /applicants/the_admissions_committee/style.css?178429330723027 */
