/* Стили для страницы научных трудов */

/* Заголовок страницы */
#maintext h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-size: 28px;
}

#maintext h1 i {
    color: #3a4d70;
    margin-right: 15px;
}

/* Секции публикаций */
.publications-section {
    margin-bottom: 5px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(58, 77, 112, 0.08);
}



.publications-section h2 {
    color: #3a4d70;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.publications-section h2 i {
    margin-right: 10px;
    color: #5d7ca6;
}

/* Элементы публикаций */
.publication-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.publication-item:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e0;
}

.publication-item:last-child {
    margin-bottom: 0;
}

.publication-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.4;
}

.article-link {
    color: #3a4d70;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #2c3e50;
    text-decoration: underline;
}

.publication-item p {
    margin: 10px 0;
    color: #4a5568;
    line-height: 1.6;
}

.publication-item strong {
    color: #2c3e50;
    min-width: 90px;
    display: inline-block;
}

/* Ссылки в источниках */
.publication-item a {
    color: #3a4d70;
    text-decoration: none;
    border-bottom: 1px dashed #a0aec0;
    transition: all 0.3s ease;
    word-break: break-word;
}

.publication-item a:hover {
    color: #2c3e50;
    border-bottom: 1px solid #3a4d70;
}

/* Адаптивность */
@media (max-width: 768px) {
    .publications-section {
        padding: 15px;
    }
    
    .publication-item {
        padding: 15px;
    }
    
    .publication-item h3 {
        font-size: 16px;
    }
    
    .publications-section h2 {
        font-size: 18px;
    }
    
    #maintext h1 {
        font-size: 22px;
    }
}

/* Иконки для разделов */
.fa-book-open, .fa-user-tie, .fa-file-alt, .fa-language {
    font-size: 0.9em;
}