/* ⚠️ READ _Spec_Starsoft_StyleGuide.md BEFORE making ANY changes */

#full_View {
	background-color: var(--White_250);
	min-height: 100vh;
	width: 100%;
	position: relative;
	padding-bottom: 200px; /* Ensure white extends below content */
}

#Team {
	display: grid;
	grid-template-rows: auto auto auto auto;
	gap: 8px;
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
	padding-top: 0;
	background-color: var(--White_250);
}

.Team_Title {
	display: block;
	text-align: center;
	position: relative;
	height: 128px;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	margin-top: 64px;
	background-color: var(--White_250);
}

.Team_Profile_Row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	width: 1024px;
	min-height: 200px;
	margin: 0 auto;
	justify-self: center;
	border-radius: 130px;
}

.Team_Profile_Row_Dark {
	background-color: rgb(220, 220, 220);
}

.Team_Profile {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0px;
	align-items: center;
	background-color: transparent;
}

.Team_Profile img {
	border-radius: 90px 0 0 90px;
	width: 180px;
	height: 180px;
	object-fit: cover;
	justify-self: center;
}

.Team_Info {
	width: 100%;
	padding-right: 10px;
	box-sizing: border-box;
}

.Team_Info * {
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}

.Team_Profile_Title {
	font-weight: 600;
	font-family: Trebuchet MS;
	font-size: 26px;
	color: rgb(60, 170, 220);
	margin: -28px 0 4px 0;
}

.Team_Profile_Position {
	font-weight: bolder;
	font-family: arial;
	font-size: 18px;
	color: rgb(60, 170, 220);
	list-style-type: disc;
	padding-left: 20px;
	margin: 0 0 4px 0;
}

.Team_Text {
	text-align: left;
	font-family: arial, sans-serif;
	font-size: 18px;
	margin: 0;
	color: var(--Gray_100);
	width: 100%;
	max-width: none;
}

/* Mobile breakpoint - stack portrait and info vertically */
@media (max-width: 1024px) {
	
	.Team_Title {
		margin-top: 32px;
		height: 32px;
	}
	
	#Team {
		padding: 0;
		margin-top: 96px;
	}
	
	.Team_Profile {
		grid-template-columns: 140px 220px;
		border-radius: 104px 0 0 104px;
		height: 192px;
		margin-left: 10px;
	}
	
	.Team_Profile img {
		width: 120px;
		height: 120px;
	}

	.Team_Profile_Row {
		grid-template-columns: 1fr;
		width: 100%;
		max-width: 500px;
		background-color: transparent;
	}

	.Team_Profile_Row_Dark {
		background-color: transparent;
	}

	/* Alternate backgrounds for each individual profile - dark first */
	.Team_Profile:nth-child(odd) {
		background-color: rgb(220, 220, 220);
	}

	.Team_Profile:nth-child(even) {
		background-color: rgb(255, 255, 255);
	}

	.Team_Info {
		padding-top: 42px;
	}

	.Team_Profile_Title {
		font-size: 20px;
	}

	.Team_Profile_Position {
		font-size: 18px;
		list-style-type: none;
		padding-left: 0;
	}

	.Team_Text {
		font-size: 16px;
	}
}
