#projects_section .project_archive
{
	margin-top: 120px;
}

#projects_section .archive_header
{
	margin-bottom: 35px;
}

#projects_section .archive_title
{
	display: block;
	font-family: calibre_semi_bold;
	font-size: 32px;
	color: var(--white);
	margin-bottom: 8px;
}

#projects_section .archive_header p
{
	font-family: calibre_regular;
	font-size: 19px;
	color: var(--fade_white);
	margin: 0;
}

#projects_section .other_projects_content
{
	display: flex;
	flex-direction: column;
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

#projects_section .other_project
{
	display: grid;
	grid-template-columns: 75px minmax(0, 1fr) auto;
	align-items: start;
	gap: 30px;
	width: 100%;
	padding: 25px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: none;
	box-shadow: none;
	border-radius: 0;
	transition: opacity 0.5s ease-in-out, transform 0.4s ease;
}

#projects_section .other_project.in_animation
{
	opacity: 0;
	transform: translateY(20px);
}

#projects_section .archive_year
{
	font-family: raleway_semi_bold;
	font-size: 14px;
	color: var(--light_blue);
	padding-top: 5px;
}

#projects_section .archive_main
{
	min-width: 0;
}

#projects_section .archive_project_title
{
	display: inline-block;
	font-family: calibre_semi_bold;
	font-size: 23px;
	color: var(--white);
	text-decoration: none;
	margin-bottom: 6px;
	transition: color 0.2s ease;
}

#projects_section a.archive_project_title:hover
{
	color: var(--light_blue);
}

#projects_section .archive_description
{
	font-family: calibre_regular;
	font-size: 18px;
	line-height: 1.4;
	color: var(--fade_white);
	margin: 0;
	max-width: 750px;
}

#projects_section .archive_tags
{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 14px;
	max-width: 280px;
	padding-top: 5px;
}

#projects_section .archive_tags span
{
	font-family: raleway_semi_bold;
	font-size: 13px;
	color: var(--fade_white);
	white-space: nowrap;
	opacity: 0.65;
}

@media screen and (max-width: 900px)
{
	#projects_section .other_project
	{
		grid-template-columns: 60px minmax(0, 1fr);
		gap: 20px;
	}

	#projects_section .archive_tags
	{
		grid-column: 2;
		justify-content: flex-start;
		max-width: none;
		padding-top: 0;
	}
}

@media screen and (max-width: 600px)
{
	#projects_section .project_archive
	{
		margin-top: 80px;
	}

	#projects_section .archive_header
	{
		margin-bottom: 25px;
	}

	#projects_section .archive_title
	{
		font-size: 28px;
	}

	#projects_section .archive_header p
	{
		font-size: 17px;
	}

	#projects_section .other_project
	{
		display: block;
		padding: 22px 0;
	}

	#projects_section .archive_year
	{
		margin-bottom: 7px;
		padding: 0;
	}

	#projects_section .archive_project_title
	{
		font-size: 21px;
	}

	#projects_section .archive_description
	{
		font-size: 17px;
		margin-bottom: 12px;
	}

	#projects_section .archive_tags
	{
		justify-content: flex-start;
		max-width: none;
		padding: 0;
		gap: 7px 12px;
	}

	#projects_section .archive_tags span
	{
		font-size: 12px;
	}
}