

/* Start:/bitrix/templates/ipovszrt/components/bitrix/news/vak_tj/style.css?1773820422538*/
.back-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: transparent;
    color: #2850a8;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #2850a8;
    transition: all 0.3s;
}

.back-button-outline i {
    font-size: 1.1rem;
}

.back-button-outline:hover {
    background-color: #2850a8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(40, 80, 168, 0.3);
}
/* End */


/* Start:/bitrix/templates/ipovszrt/components/bitrix/news/vak_tj/bitrix/news.detail/.default/style.css?17738220226808*/
/* Общие переменные и сброс (если нужно) */
.dissertation-detail {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

/* Заголовок (ФИО) */
.detail-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a2b4c;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #e0e7ff;
    letter-spacing: -0.02em;
}

/* Карточка */
.detail-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 20, 30, 0.15);
    padding: 30px;
    transition: box-shadow 0.3s ease;
}

.detail-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 40, 60, 0.25);
}

/* Мета-информация (даты) */
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #d9e2ef;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #4a5a6e;
    background: #f8fafd;
    padding: 8px 16px;
    border-radius: 40px;
    transition: background 0.2s;
}

.meta-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.meta-item:hover {
    background: #eef2f6;
}

/* Тема диссертации */
.detail-theme {
    background: linear-gradient(145deg, #f9fcff, #f0f5fa);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 6px solid #2563eb;
}

.theme-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2563eb;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.theme-text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #0b1e33;
    font-weight: 500;
}

/* Сетка свойств (2 колонки) */
.detail-properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    margin-bottom: 40px;
}

@media (max-width: 640px) {
    .detail-properties-grid {
        grid-template-columns: 1fr;
    }
}

.prop-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 12px;
}

.prop-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 4px;
}

.prop-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #0f2b45;
    line-height: 1.5;
    word-break: break-word;
}

/* Стили для текстовых полей, если нужны отступы */
.prop-value p {
    margin: 0;
}

/* Таблица файлов (без изменений, но немного подкорректируем отступы) */
.modern-files-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Остальные стили таблицы остаются на ваше усмотрение, 
   я лишь добавлю немного воздуха */
.modern-files-table th {
    background: #f1f5f9;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #334155;
    padding: 15px 12px;
    text-align: left;
}

.modern-files-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e9eef2;
    vertical-align: middle;
}

.modern-files-table tr:hover td {
    background-color: #fafcff;
}

/* Ссылка-иконка в таблице */
.file-action-link {
    color: #3b82f6;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.file-action-link:hover {
    color: #1d4ed8;
    transform: scale(1.1);
}

/* Сообщение, если файлов нет */
.no-files {
    text-align: center;
    color: #94a3b8;
    font-style: italic;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
    margin-top: 20px;
}

/* Кнопка назад */
.detail-back {
    margin-top: 30px;
    text-align: left;
}

.back-link {
    display: inline-block;
    padding: 10px 24px;
    background-color: #f8f9fa;
    color: #0d6efd;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid #dee2e6;
    transition: all 0.2s;
}

.back-link:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}
/* Контейнер для горизонтального скролла на мобильных */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

/* Адаптивные правки для таблицы */
.modern-files-table {
    min-width: 600px; /* Минимальная ширина, чтобы на десктопе не сжималась */
}

/* Для очень маленьких экранов можно добавить альтернативное отображение */
@media (max-width: 768px) {
    .modern-files-table {
        min-width: 100%; /* Убираем минималку, если нужно */
    }

    /* Уменьшаем отступы и размер шрифта */
    .modern-files-table th,
    .modern-files-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .file-action-link {
        width: 36px;
        height: 36px;
    }

    .file-action-link i {
        font-size: 1.3rem;
    }
}

/* Альтернативный вариант: превращение в карточки (раскомментируйте, если нужен) */
/*
@media (max-width: 600px) {
    .table-responsive {
        overflow-x: visible;
    }
    .modern-files-table,
    .modern-files-table thead,
    .modern-files-table tbody,
    .modern-files-table th,
    .modern-files-table td,
    .modern-files-table tr {
        display: block;
    }
    .modern-files-table thead {
        display: none;
    }
    .modern-files-table tr {
        margin-bottom: 15px;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .modern-files-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        border-bottom: 1px solid #e9ecef;
    }
    .modern-files-table td:last-child {
        border-bottom: none;
    }
    .modern-files-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #2850a8;
        margin-right: 15px;
        min-width: 120px;
    }
    .action-cell {
        justify-content: space-between;
    }
    .action-cell::before {
        content: "Просмотр";
    }
}
*/
/* End */
/* /bitrix/templates/ipovszrt/components/bitrix/news/vak_tj/style.css?1773820422538 */
/* /bitrix/templates/ipovszrt/components/bitrix/news/vak_tj/bitrix/news.detail/.default/style.css?17738220226808 */
