.androm--team-lists-header ul{
	display: flex;
	list-style: none;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}

.androm--team-lists-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-flow: row dense;
	grid-column-gap: 20px;
	grid-row-gap: 30px;
	min-height: 100px;
	align-content: start;
	justify-content: start;
	transition: .5s all ease-in;
}

.androm--team-lists-grid .team-wrap h2{
	font-size: 23px;
	margin-bottom: 9px;
}

.androm--team-lists-grid .team-wrap span{
	  font-size: 20px;
}

.androm--team-lists-grid .team-info{
	padding: 17px;
}

.androm--team-lists-grid .team-info h3{
	margin-top: 15px;
	margin-bottom: 15px;
	text-transform: uppercase;
	font-family: var( --e-global-typography-d8dab7a-font-family ), Sans-serif;
	font-size: var( --e-global-typography-d8dab7a-font-size );
	font-weight: var( --e-global-typography-d8dab7a-font-weight );
	line-height: var( --e-global-typography-d8dab7a-line-height );
	color: var( --e-global-color-astglobalcolor7 );
}

.androm--team-lists-header nav a{
	border-radius: 32px;
}

.androm--team-lists-header nav a:hover,
.androm--team-lists-header nav a{
    text-decoration: none;
    color: #424242;
    border: 1px solid #424242;
    padding: 10px 25px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 300;
    font-size: 20px;
}

.androm--team-lists-header nav a.current{
    background: #e23232;
    color: white;
    border: 1px solid #e23232;
    font-weight: 500
}

@media (max-width: 768px){
	.androm--team-lists-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px){
	.androm--team-lists-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

.team-thumb img{
	border-radius: 28px;
}