

/* Start:/applicants/the_admissions_committee/style.css?178491956425316*/
/* ==========================================
   1. ГЛОБАЛЬНЫЕ ПЕРЕМЕННЫЕ И СБРОС СТИЛЕЙ
   ========================================== */
:root {
    --bg-main: #ffffff;
    --bg-section-alt: #f8fafc;
    --bg-card: #ffffff;
    --border-card: #e2e8f0;
    --border-hover: #4f46e5;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --brand-primary: #0284c7;
    --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);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-main);
    background-color: #f8fafc;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.5em;
}

p, li, span, label, td, th {
    color: #1e293b;
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0369a1;
    text-decoration: underline;
}

/* ==========================================
   2. ОСНОВНОЙ КОНТЕЙНЕР И СЕТКА
   ========================================== */
.modern-light-root {
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

.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;
    width: 100%;
}

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

/* ==========================================
   3. ЗАГОЛОВКИИ HERO-БЛОК
   ========================================== */
.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;
}

.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: 12px 26px;
    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;
    text-decoration: none;
}

.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);
    text-decoration: none;
}

/* ==========================================
   4. BENTO СЕТКА
   ========================================== */
.modern-light-root .bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

@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);
}

.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; }
}

.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);
}

/* ==========================================
   5. ЕКЦ МИНОБРНАУКИ И СТАТУСЫ
   ========================================== */
.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; }
}

/* ==========================================
   6. РУМЦ И ГОРЯЧАЯ ЛИНИЯ
   ========================================== */
.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;
}

@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;
}

/* ==========================================
   7. ССЫЛКИ-ЧИПЫ
   ========================================== */
.modern-light-root .smart-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 16px;
    width: 100%;
}

.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; }

/* ==========================================
   8. RESIDENCY COMPONENT
   ========================================== */
.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;
}

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

@media (max-width: 767px) {
    .residency-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;
}

/* ==========================================
   9. SKGA COMPONENT
   ========================================== */
.skga-fullwidth-container {
    color: #333333;
    line-height: 1.6;
    width: 100%;
    margin: 0;
    padding: 20px 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 */
.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; }

/* ==========================================
   10. DORM PAGE COMPONENT
   ========================================== */
.dorm-page-container {
    color: #333;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

.dorm-page-container h1 {
    font-size: 24px;
    color: #1c1c1c;
    margin-bottom: 25px;
    line-height: 1.3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
}

.dorm-page-container h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 35px;
    margin-bottom: 15px;
}

.dorm-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.dorm-table th {
    background-color: #f4f6f9;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #dee2e6;
}

.dorm-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

.dorm-table tbody tr:hover { background-color: #f8f9fa; }

.text-center { text-align: center !important; }

.dorm-doc-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.dorm-doc-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.dorm-doc-list li::before {
    content: "📄";
    position: absolute;
    left: 5px;
    top: 2px;
    font-size: 16px;
}

.dorm-doc-list a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.dorm-doc-list a:hover {
    text-decoration: underline;
    color: #003d80;
}

/* ==========================================
   11. КНОПКИ И ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ
   ========================================== */
.btn, .btn-primary, .hero-banner {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand-primary);
    color: #ffffff !important;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.btn *, .hero-banner * {
    color: #ffffff !important;
}

.contact-btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    margin-top: 10px;
    border-radius: 8px;
    background-color: #2563eb;
    color: #ffffff !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
}

.contact-btn-action:hover {
    background-color: #1d4ed8;
    color: #ffffff !important;
    text-decoration: none;
    opacity: 1;
}

.contact-btn-action svg {
    flex-shrink: 0;
}

/* Стили для баннера EKC */
.ekc-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ekc-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* --- КОНТЕЙНЕР ДЛЯ КНОПОК НА ОДНОМ УРОВНЕ --- */
.action-buttons-group {
    display: flex;
    gap: 12px;                  /* Расстояние между кнопками */
    width: 100%;
    margin-top: 16px;
    align-items: center;        /* Выравнивание по высоте */
}

/* Одинаковая ширина и гибкость для обеих кнопок */
.action-buttons-group .contact-btn-action,
.action-buttons-group .btn-accent,
.action-buttons-group .btn-outline {
    flex: 1;                    /* Обе кнопки делят ширину 50/50 */
    width: 100%;
    margin-top: 0 !important;   /* Сброс внешнего отступа сверху */
    text-align: center;
    justify-content: center;
}

/* Адаптируемость для мобильных устройств (менее 576px) */
@media (max-width: 576px) {
    .action-buttons-group {
        flex-direction: column; /* На маленьких экранах становятся друг под друга */
        gap: 8px;
    }
}
/* End */
/* /applicants/the_admissions_committee/style.css?178491956425316 */
