.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.team-grid h5{
	color: var(--blue);
	font-weight: 700;
	margin-bottom: 0;
}

.team-card img {
	width: 100%;
}
.team-arrow{
	background: transparent;
	border: none;
	width: 36px;
	height: 36px;
	object-fit: contain;
	padding: 0;
	transition: 0.5s;
}



.team-bio-row{
  grid-column:1/-1;
  max-height:0;
  overflow:hidden;
  transition:max-height .5s ease;
}

.team-bio-inner{
  background: var(--lightblue);
  padding: 75px 100px;
  border-radius: 5px;
}

.team-arrow.is-active { transform: rotate(180deg); }

.content-row{
	width: 100%;
	gap: 60px;
    justify-content: space-between;
}

.inner-bio-box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.col-inner-box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.team-bio-inner .bio-name{
	font-size: 28px;
	font-weight: 700;
	color: var(--blue);
}

.team-bio-inner .bio-role, .team-bio-inner .bio-text, .team-bio-inner .bio-address, .team-bio-inner .bio-cap-line, .team-bio-inner .bio-email-line{
	font-size: 18px;
	font-weight: 400;
	color: var(--black);
}

.team-bio-inner .bio-email{
	color: var(--black);
}

.team-bio-inner .bio-sede{
	font-size: 20px;
	font-weight: 700;
}

.team-bio-inner .bio-sede-line{
	margin-bottom: 24px;
}

.team-bio-inner .bio-linkedin-img{
	width: 20px;
	height: 20px;
	object-fit: contain;
}

@media(max-width:1024px){
  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }
	.team-bio-inner {
    padding: 50px 30px;
}
	.content-row {
    gap: 30px;
}
}

@media(max-width:767px){
  .team-grid{
    grid-template-columns:repeat(1,1fr);
  }
	.team-bio-inner {
    padding: 25px;
}
	p.bio-text {
    margin: 0;
}
}