

.trader-list{
	display: flex;
	gap: 20px;
	flex-direction: row;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
}


.content{ max-width: 1080px;}

.trader-card{
	/* background-color: orange; */
	/* border: solid 5px white; */
	padding: 10px;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
}
.trader-card h3 {margin: 0;}

.trader-img-container{
	width: 50%;
}
.trader-card img{
	max-height: 400px;
	margin: auto;
}
.trader-texts{
	width: 50%;
	padding: 20px;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: space-between;
}
.trader-text{
	line-height: 1.5rem;
}
.trader-links{ 
	display: flex;
	flex-direction: row;
	flex-wrap:  wrap;
	gap: 5px;
}
.trader-links a:hover{
	border: 2px white solid;
	color: white;
}
.trader-links a{
	display: inline-block;
	cursor: pointer;
	padding: 5px 10px;
	background-color: #ff6200;
	border: 2px #ff6200 solid;
	border-radius: 50px;
	text-decoration: none;
	color: white;
	transition: all 0.2s ease-in-out;
}

.pronouns{
	font-size: smaller;
	font-weight: 400;
	font-style: italic;
}

hr{ 
	width: 70%;
	margin: auto;
}

@media only screen and (max-width: 850px) {
	.trader-card{
		flex-direction: column;
	}
	.trader-texts{
		text-align: center;
		width: 100%;
	}
	.trader-img-container{
		width: 100%;
	}
	.trader-card img{
		max-width: 100%;
	}
	.trader-links{
		justify-content: center;
	}

}