

/* Start:/bitrix/templates/bs_education_s1/components/bitrix/news.list/eduStandarts/style.css?17797837865784*/
/* ==========================================================================
   1. ОБЩИЕ СТИЛИ КОНТЕЙНЕРА И СЕТКИ ТАБОВ
   ========================================================================== */
.edu-custom-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-family: var(--bs-font-sans-serif), -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* Навигационная панель вкладок */
.edu-custom-tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 3rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
    -webkit-overflow-scrolling: touch;
}

/* Скроллбар для свайпа на мобилках */
.edu-custom-tabs-nav::-webkit-scrollbar {
    height: 4px;
}
.edu-custom-tabs-nav::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* Стили кнопок-вкладок */
.edu-tab-btn {
    outline: none;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 14px;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.edu-tab-btn:hover {
    color: #0f172a;
    background: #f1f5f9;
    border-color: #cbd5e1;
}

/* Состояние АКТИВНОЙ вкладки */
.edu-tab-btn.is-active {
    color: #ffffff;
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.16);
}

/* Счетчик элементов внутри кнопки */
.edu-tab-counter {
    font-size: 0.75rem;
    background-color: rgba(148, 163, 184, 0.15);
    color: #475569;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 700;
}

.edu-tab-btn.is-active .edu-tab-counter {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Управление показом окон контента */
.edu-tab-pane {
    display: none; /* По умолчанию скрываем все */
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.edu-tab-pane.is-active {
    display: block; /* Показываем только активное */
    opacity: 1;
}

/* ==========================================================================
   2. ПРЕМИАЛЬНАЯ КАРТОЧКА СПЕЦИАЛЬНОСТИ
   ========================================================================== */
.edu-card-premium {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.7);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.edu-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edu-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.edu-card-premium:hover::before {
    opacity: 1;
}

.edu-card-badge {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edu-card-title {
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
}

.edu-block-subheading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ==========================================================================
   3. МИНИ-ПЛИТКИ ДОКУМЕНТОВ
   ========================================================================== */
.edu-mini-tile {
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.edu-mini-tile.has-file {
    background: #f8fafc;
    border-color: #f1f5f9;
}

.edu-mini-tile.has-file:hover {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.edu-mini-tile.no-file {
    background: #fafafa;
    border-color: rgba(241, 245, 249, 0.5);
    opacity: 0.75;
}

.tile-content {
    display: flex;
    flex-direction: column;
}

.tile-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.tile-action-link {
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.edu-mini-tile.has-file:hover .tile-action-link {
    color: #15803d;
}

.tile-action-link svg {
    transition: transform 0.2s ease;
}

.tile-action-link:hover svg {
    transform: translateX(3px);
}

.tile-status-empty {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.tile-status-empty::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #cbd5e1;
    border-radius: 50%;
    margin-right: 6px;
}

@media (min-width: 576px) {
    .edu-card-body {
        flex-grow: 1;
    }
}

/* Заглушка пустого состояния */
.edu-empty-holder {
    background: #f8fafc;
    border: 2px dashed #e2e8f0 !important;
    border-radius: 20px;
    padding: 40px 20px;
}
/* End */
/* /bitrix/templates/bs_education_s1/components/bitrix/news.list/eduStandarts/style.css?17797837865784 */
