/* home */

.home-h1{
    font-size: 3.125rem;
}


/* team */

.team_member{
    margin-bottom: 4rem;
}

@media(min-width: 992px ){
    .team_member{
        margin-bottom: 2rem;
    }
}

.team_image{
    flex:1;
    text-align: center;
    max-width:80px;
    align-items: center;
    margin:auto;
}

.team_image_roundel{
    border-radius: 50%;
    margin:auto;
    position: relative;
    max-width:200px;
}

.team_image_roundel img{
    border-radius: 50%;
    vertical-align:bottom;
}

.team_image_swoosh{
    background: url('/site/assets/images/team_photo_foreground_shape.svg');
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.3;
}


.team_meta {
	flex: 2;
	padding: 0 1rem 0 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
    font-size: 0.875rem;
    text-align: center;
}

.team_member_name{
    font-size: 1.3125rem;
    font-weight: var(--strong);

}

.team_member_separator{
    height:1px;
    background-color: var(--blue-light);
    margin:0.5rem 0;
}

.team_member_link{
    display: inline-flex;
    margin:1rem 0;
    align-items: center;
}


.team_member_link_icon svg{
    vertical-align: bottom;
}

.team_member_link_text{
    padding:0 0.5rem;
}


@media(min-width: 992px ){

    .team_member{
        display: flex;
        margin-bottom: 2rem;
    }
    
    .team_meta{
        text-align: left;
    }

}


.fill-biolink{
    fill:var(--theme);
    transition:var(--transition);
  }
  
  .fill-biolink-inner{
    fill:var(--accent);
  }
  
  a:hover .fill-biolink{
    fill:var(--dark);
    transition:var(--transition);
  }

/* podcasts */

.podcast-rss{
    width:44px;
    height: auto;
    margin-right:1rem;
}

.episode-link{
    display: block;
    border-top:1px solid var(--red);
    margin-top: 1rem;
    padding:1rem 0;
    text-decoration: none;
}

.episode-date{
    padding-bottom:0.4rem;
    font-weight: var(--strong);
}

.podcast-episode-date{
    padding-bottom:0.4rem;
    color:var(--red);
    font-weight: var(--strong);
    font-size:1.3125rem;
}

.episode-title{
    color:white;
    font-weight: normal;
}


.plyr{
    border-radius: 1rem;
    border:2px solid var(--red);
    margin-bottom: 2rem;
}

.tb-text{
    flex:1;
    text-align: left;
}

.transcript-wrapper{
    background-color: var(--grey-very-light);
    border-radius: 1rem;
    padding:0.25rem 1rem;
}

.transcript-toggle {
	display: flex;
	align-items: center;
    justify-content: flex-start;
	color: var(--dark);
	font-weight: var(--strong);
	font-size: 1.125rem;
	width: 100%;
	border: 0;
	background-color: transparent;
}

.transcript-toggle:hover{
    background-color: transparent;
    opacity: 1;
}


.tb-arrow-container{
    flex: 0 0 32px;
    justify-content: center;
}

.tb-arrow{
    display: flex;
    width:32px;
    height:32px;
    border-radius: 50%;
    background-color: var(--red);
    color: white;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    rotate: 0deg;
}

.transcript-toggle:hover .tb-arrow{
    background-color: var(--theme);
    transition: var(--transition);
}

.toggle-toggled .tb-arrow{
    rotate: 90deg;
}

.transcript{
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color:var(--grey-very-light);
    color:var(--dark);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}


.contact{
    color:white;
    background-color:var(--dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact a{
    color:var(--accent);
    text-decoration: none;
}

.contact a:hover{
    text-decoration: underline;
}

.contact_title {
	display: flex;
	cursor: pointer;
	transition: var(--transition);
	align-items: start;
    padding:1rem;
}

.contact_title::before {
	content: '';
	width: 50px;
    min-width: 50px;
	background: url('/site/assets/images/arrow_right.svg') no-repeat;
	height: 32px;
	display: inline-block;
	background-size: contain;
    transition:var(--transition);
}

.contact_title:hover{
    color: var(--accent);
    background-color: var(--theme);
    transition:var(--transition);
}

.contact_title.toggle-toggled:before{
   rotate: 90deg;
   transform-origin: 16px 50%;
   transition:var(--transition);
}

.contact_card {
	max-height: 0;
	overflow: hidden;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact_card > div:first-of-type{
    padding-top:1rem;
}

.contact_telephone{
    display: flex;
    align-items: center;
}

.contact_telephone::before {
	content: '';
	width: 64px;
    min-width: 64px;
	background: url('/site/assets/images/footer/footer_Telephone_Icon.svg') no-repeat center top;
	height: 32px;
	display: inline-block;
	background-size: contain;
}

.contact_address{
    display: flex;
    align-items: start;
}

.contact_address::before {
	content: '';
	width: 64px;
    min-width: 64px;
	background: url('/site/assets/images/footer/footer_FindUs_Icon.svg') no-repeat center top;
	height: 32px;
	display: inline-block;
	background-size: contain;
}

.contact_person{
    display: flex;
    align-items: start;
}

.contact_person::before {
	content: '';
	width: 64px;
    min-width: 64px;
	background: url('/site/assets/images/contact_Person_Icon.svg') no-repeat center top;
	height: 32px;
	display: inline-block;
	background-size: contain;
}

