.responsive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.responsive-grid .item {
    font-size: 1.2rem;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.responsive-grid .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.responsive-grid h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.responsive-grid h3 a {
    font-weight: 400;        /* убираем жирность */
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px;
    transition: color 0.2s ease;
}

.responsive-grid h3 a:hover {
    text-decoration: underline;
    color: #002060;
}

.center-bold-20,
.center-bold-20-red {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.center-bold-20-dblue {
    font-weight: 400;  
    text-align: center;
    font-size: 24px;
    color: #002060;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.center-bold-20-red {
    color: #c00000;
    margin-bottom: 20px;
}

.dblue-bold {
    color: #002060;
    font-weight: bold;
}

/* ---------- Основной текст ---------- */
.smu2026 {

    font-weight: 400;  
    font-size: 16px;
    line-height: 1.5;
    text-indent: 50px;
    text-align: justify;
    margin-bottom: 15px;
    margin-top: 0;
}

.smu2026 a {
    font-weight: 700 !important ;
    text-decoration: none;
}




/* ---------- Список направлений ---------- */
.list {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 10px;
    margin-top: 0;
    padding-left: 25px;
    position: relative;
}

/* Нумерация списка */
.list {
    counter-increment: item;
}

.list:before {
    content: counter(item) ") ";
    position: absolute;
    left: 0;
    font-weight: normal;
}

/* ---------- Таблица ---------- */
.smu-table {
    font-weight: 400;
    font-size: 16px;
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    table-layout: fixed; /* Фиксированная ширина таблицы */

}

.smu-table col:first-child {
    width: 60%;
}

.smu-table col:last-child {
    width: 40%;
}


.smu-table th,
.smu-table td {
    border: 1px solid #ccc;
    padding: 5px;
    vertical-align: top;
}

.smu-table th {
    background-color: #f0f0f0;
    font-weight: bold;
    text-align: left;
}

.smu-table td {
    text-align: left;
}

.smu-table td.center-cell {
    text-align: center;
}

.smu-table tr {
    line-height: 24px;
}

.smu-table tr:hover {
    background-color: #f9f9f9;
}

/* ---------- Вспомогательные классы ---------- */
.no-wrap {
    white-space: nowrap;
}

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ---------- Адаптивность ---------- */
@media (max-width: 768px) {
    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .smu2026 {
    font-weight: 400;
        text-indent: 20px;
        font-size: 14px;
    }
    
    .list {
    font-weight: 400;
        font-size: 14px;
        padding-left: 20px;
    }
    
    .center-bold-20-dblue {
        font-size: 20px;
    }
    
    .center-bold-20,
    .center-bold-20-red {
        font-size: 18px;
    }
    
    .smu-table th,
    .smu-table td {
        padding: 8px;
        font-size: 12px;
    }
    
    .no-wrap {
        white-space: normal;
    }
}

/* ---------- Улучшения доступности ---------- */
@media (prefers-reduced-motion: reduce) {
    .responsive-grid .item {
        transition: none;
    }
    
    .responsive-grid .item:hover {
        transform: none;
    }
}

a:focus,
button:focus {
    outline: 2px solid #002060;
    outline-offset: 2px;
}
