/* home */

.home_header{
	gap: calc(var(--gap) * 1.75);
	padding-top:var(--gap);
}

.strap{

	text-align: center;
	
	/* strapline-home */
	font-size: var(--step-3);
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 56px */
	text-wrap: balance;
}

.home_puff{
	padding-bottom:var(--gap-small);

}

.home_puff p {
	max-width: 540px;
	text-wrap: balance;
	font-size: var(--step-3);
	line-height: 1;
}

/* team */

.team{
	display: flex;
	flex-wrap: wrap;
	gap:16px;
	max-width: 944px;
	margin-inline: auto;
	justify-content: center;
}


.team_member{
	width:304px;
	display: flex;
	flex-direction: column;
}

.team_image{
    text-align: center;
    border-radius: 50%;
    margin-inline:auto;
    position: relative;
    width:120px;
	height:120px;
	border:8px solid var(--dark);
	background-color: var(--dark);
}

.team_image figure{
	margin: 0;
}

.team_image img{
    border-radius: 50%;
    max-width:100%;
	display: inline-block;
}

.team_image .dot{
    background-color: var(--about);
    border-radius: 50%;
    width: 100%;
	aspect-ratio:  1 / 1;
}

.team_meta {
	flex: 2;
	margin-top: -54px;
	padding: 70px var(--gap-small) var(--gap-small) var(--gap-small);
	display: flex;
	flex-direction: column;
    font-size: 0.875rem;
    text-align: center;
	background-color: var(--dark);
	border-radius: 1rem;
}

.team_member_name{
	color: var(--buff);
	font-family: var(--heading-font);
    font-size: 24px;
    font-weight: var(--strong);
	text-transform: uppercase;
}

.team_member_strap{
	color: var(--primary, #96D4CC);
	text-align: center;
	font-family: Teko;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 33.6px */
}

.team_member_summary{

	color: var(--buff, #FFF3E5);
	text-align: center;
	font-family: "Finger Paint";
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 22.5px */
	padding-bottom:2rem;

}
.team_member_summary p{
	line-height: 1.5;
}


.team_member_link_container{
	margin-top:auto;
	border-top:1px solid var(--buff);
	padding-top:1rem;
}

.team_member_link{
	color:var(--theme) !important;
}
.team_member_link:hover{
	color:var(--buff) !important;
}


/* 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;
}


/* cards */


.card_grid{
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}



/* contact us panel */

.theme_dark a{
	color: var(--blue-light);
}

.theme_dark a:hover {
    color: var(--buff);
}


.pp_contact{
	display: relative;
	padding-top: var(--gap);
}

.contact_title{
	font-size: var(--step-5);
}

.pp_contact_image {
	position: relative;
	left: 0;
	bottom: 0;
	width: 90vw;
	min-height: 60px; 
	background: url(/site/assets/images/contact-image.svg) no-repeat;
	background-size: contain;
	aspect-ratio: 1/1;
}

@media(min-width: 566px){
	.pp_contact_image {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 20vw;
	}
}

.credits{
	display: flex;
	flex-direction: column;
	gap:12px;
	font-size:24px;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
}
.separator{
	display: none;
}

@container (min-width: 480px) {

	.credits {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.separator{
		display: flex;
	}

}
