/* Стили только для страницы Публикации */

.content-block {
	background: #f0fdf4;
}



/* Блок профилей */
.profiles-block {
    background: #ffffff;
    padding: 60px 0;
}

.profiles-title {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profiles-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.profiles-column {
    display: flex;
    justify-content: center;
}

.profile-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 500px;
    width: 100%;
}

.profile-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-name {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
}

.profile-degree {
    font-size: 16px;
    font-weight: 400;
    color: #7f8c8d;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
}

.profile-label {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    margin-top: 4px;
}

.profile-link {
    margin-top: 4px;
}

.profile-link a {
    font-size: 14px;
    font-weight: 500;
    color: #3498db;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.profile-link a:hover {
    border-bottom-color: #3498db;
}

/* Блок публикаций */
.publications-block {
    background: #ffffff;
    padding: 60px 0;
}

.publications-title {
	font-size: 36px;
	font-weight: 600;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 50px;
	font-family: 'Roboto', sans-serif;
}

.publications-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.publications-year {
	margin-bottom: 40px;
}

.publications-year:last-child {
	margin-bottom: 0;
}

.publications-year-title {
	font-size: 28px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #3498db;
	font-family: 'Roboto', sans-serif;
}

.publication-item {
	margin-bottom: 25px;
	padding: 20px;
	background: #f8f9fa;
	border-left: 4px solid #3498db;
	border-radius: 0 8px 8px 0;
	position: relative;
	counter-increment: publication-counter;
}

.publication-item::before {
	content: counter(publication-counter) ".";
	position: absolute;
	left: -35px;
	top: 20px;
	font-size: 18px;
	font-weight: 600;
	color: #3498db;
	font-family: 'Roboto', sans-serif;
	width: 25px;
	text-align: right;
}

.publications-year {
	counter-reset: publication-counter;
}

.publication-item:last-child {
	margin-bottom: 0;
}

.publication-authors {
	font-size: 16px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 8px;
	font-family: 'Roboto', sans-serif;
}

.publication-title {
	font-size: 18px;
	font-weight: 500;
	color: #34495e;
	margin-bottom: 8px;
	font-style: italic;
	font-family: 'Roboto', sans-serif;
}

.publication-journal {
	font-size: 15px;
	color: #7f8c8d;
	margin-bottom: 5px;
	font-family: 'Roboto', sans-serif;
}

.publication-doi {
	font-size: 14px;
	/* color: #3498db; */
	font-family: 'Roboto', sans-serif;
}

/* Адаптивность */
@media (max-width: 768px) {
    .profiles-block {
        padding: 40px 0;
    }
    
    .profiles-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .profiles-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }
    
    .profile-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .profile-photo {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 18px;
    }
    
    .profile-degree {
        font-size: 15px;
    }
    
    .publications-block {
        padding: 40px 0;
    }
	
	.publications-title {
		font-size: 28px;
		margin-bottom: 30px;
	}
	
	.publications-content {
		padding: 0 30px;
	}
	
	.publications-year {
		margin-bottom: 30px;
	}
	
	.publications-year-title {
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	.publication-item {
		padding: 15px;
		margin-bottom: 20px;
	}
	
	.publication-item::before {
		left: -30px;
		font-size: 16px;
		width: 20px;
	}
	
	.publication-authors {
		font-size: 15px;
	}
	
	.publication-title {
		font-size: 16px;
	}
	
	.publication-journal {
		font-size: 14px;
	}
	
	.publication-doi {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
    .profiles-block {
        padding: 30px 0;
    }
    
    .profiles-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .profiles-content {
        padding: 0 12px;
        gap: 25px;
    }
    
    .profile-photo {
        width: 80px;
        height: 80px;
    }
    
    .profile-name {
        font-size: 16px;
    }
    
    .profile-degree {
        font-size: 14px;
    }
    
    .profile-label {
        font-size: 13px;
    }
    
    .profile-link a {
        font-size: 13px;
    }
    
    .publications-block {
        padding: 30px 0;
    }
	
	.publications-title {
		font-size: 24px;
		margin-bottom: 25px;
	}
	
	.publications-content {
		padding: 0 20px;
	}
	
	.publications-year {
		margin-bottom: 25px;
	}
	
	.publications-year-title {
		font-size: 20px;
		margin-bottom: 12px;
	}
	
	.publication-item {
		padding: 12px;
		margin-bottom: 15px;
	}
	
	.publication-item::before {
		left: -25px;
		font-size: 14px;
		width: 18px;
	}
	
	.publication-authors {
		font-size: 14px;
	}
	
	.publication-title {
		font-size: 15px;
	}
	
	.publication-journal {
		font-size: 13px;
	}
	
	.publication-doi {
		font-size: 12px;
	}
}

