 .team-container {
 	max-width: 1000px;
 	margin: 0 auto;

 }

 .team-title {
 	font-size: 1.75rem;
 	font-weight: 600;
 	margin-bottom: 2rem;
 	color: #222;
 }

 .team-grid {
 	display: flex;
 	justify-content: space-between;
 	gap: 4rem;
 }

 .team-column {
 	flex: 1;
 	display: flex;
 	flex-direction: column;
 	gap: 2.5rem;
 }

 .team-member {
 	display: flex;
 	align-items: stretch;
 	gap: 1.5rem;
 }


 .team-name {
 	font-weight: 700;
 	font-size: 2.25rem;
 	line-height: 1.2;
 	min-width: 120px;
 }

 .left {
 	text-align: left;
 }

 .right {
 	text-align: right;

 }

 .team-divider {
 	width: 2px;
 	background-color: #ccc;
 }

 .team-info {
 	font-size: 1.1rem;
 	color: #222;
 	padding-left: 1rem;
 }

 .team-info a {
 	color: #333;
 	text-decoration: none;
 	font-size: 0.95rem;
 }

 .team-info a:hover {
 	text-decoration: underline;
 }


 .offset-14 {
 	position: relative;
 	right: 14%;
 }


 .offset-4 {
 	position: relative;
 	right: 4%;
 }

 @media (max-width: 768px) {

 	.team-container {
 		margin-top: 2rem;
 	}

 	.team-grid {
 		flex-direction: column;
 	}

 	.team-name {
 		font-size: 1.5rem
 	}

 	.left {
 		text-align: right;
 	}

 	.offset-14,
 	.offset-4 {
 		right: 0;
 	}

 	.team-container {
 		justify-content: center;
 		display: flex;

 	}

 }