.team-tabber input[type="radio"] {
  appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}



.team-tabber label {
  text-transform: uppercase;
	font-size: .8rem;
	color: var(--clr-gray-50);
	font-family: var(--font-primary);
	font-weight: 600;
	letter-spacing: 1px;
	
}

.team-tabber input[type="radio"]:checked + label {
  color: red;
	
}

ul.team-cards-wrapper, .team-cards-wrapper li {
  list-style: none;
	margin: 0;
	padding: 0;
}

.team-cards-wrapper li.visible {
  display: grid;
}

.team-card h4 {
margin-bottom: 0;
font-size: 1.25rem;
}

.team-card-image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	overflow: hidden;
	border-radius: .5rem;
}
.team-card-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

li .team-cards-wrapper {
position: relative;
}
div.team-card {
  color: unset;
	transition: transform .1s ease;
	position: relative;
}

div.team-card:hover {
	transform: scale(1.01);
}

.team-cards-wrapper .team-card-description {
  text-wrap: initial;
}

.team-cards-wrapper .team-card-description .chip {
text-transform: uppercase;
border: 2px solid var(--clr-primary);
font-size: .7rem;
font-family: var(--font-primary);
padding: .25rem .5rem;
border-radius: .5rem;
background-color: var(--clr-bg-green);
color: var(--clr-primary);
font-weight: 800;
letter-spacing: 2px;

}

.team-card-stats .chip {
line-height: 1rem;
}

.team-card-stats table {
  width: 100%;
	border-collapse: collapse;
}

.team-card-stats tr {
  border-top: 1px dashed var(--clr-green);
}

.team-card-stats td.stat-name {
  display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	font-weight: bold;
}

.team-card-stats a.stat-link {
  text-decoration: none;
	color: inherit;
	font-inherit;
}