:root {
	--theme-color-blue: #00589C;
	--theme-color-light-blue: #E1F2FC;
	--theme-color-super-light-blue: #EDF7FF;
	--theme-color-green: #009B84;
	--theme-color-green: #009B84;
	--theme-color-light-green: #00B294;
	--theme-color-dark-green: #007F6C;
}

.full-text {
	display: none;
}

.year-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 30px;
	border-bottom: 2px solid #eee;
	padding-bottom: 15px;
}

.year-tab {
	padding: 8px 18px;
	background: #f5f5f5;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: normal;
	transition: all 0.2s;
	border: 1px solid transparent;
	box-shadow: rgba(34, 60, 80, 0.12) 0px 2px 8px 0px;
}

.year-tab:hover {
	background: var(--theme-color-light-green);
	color: #fff;
}

.year-tab.active {
	background: var(--theme-color-dark-green);
	color: #fff;
	border-color: var(--theme-color-dark-green);
	box-shadow: rgba(34, 60, 80, 0.15) 0px 8px 16px 0px;
}

.year-content {
	display: none;
	animation: fadeIn 0.3s ease;
}

.year-content.active {
	display: block;
}

.professor-card {
	display: flex;
	gap: 25px;
	align-items: flex-start;
	margin-bottom: 30px;
	padding: 16px;
	background: #fafafa;
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 2px 0px;
}

.professor-card img {
	max-width: 380px !important;
	height: auto !important;
	border-radius: 8px;
	flex-shrink: 0;
}

.professor-card .info {
	flex: 1;
}

.professor-card .info strong {
	font-size: 1.75em;
	color: var(--theme-color-blue);
	display: block;
	margin-bottom: 6px;
}

.professor-card .info p {
	margin: 0;
	line-height: 1.6;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
	.professor-card {
		  flex-direction: column;
		  align-items: center;
		  text-align: center;
	}

	.professor-card img {
		max-width: 100% !important;
	}

	.year-tabs {
		justify-content: center;
	}
}