/* Team Bios */

.ttr-team-bio {
	--ttr-tb-gold: #D4B37D;
	--ttr-tb-gold-dark: #B39870;
	--ttr-tb-charcoal: #2C2927;
	--ttr-tb-black: #15120C;
	--ttr-tb-white: #ffffff;

	margin-top: 12px;
	text-align: center;
}

.ttr-team-bio__excerpt {
	display: none;
}

.ttr-team-bio__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	background-color: transparent;
	color: var(--ttr-tb-gold);
	border: 1px solid var(--ttr-tb-gold);
	border-radius: 0;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ttr-team-bio__button:hover,
.ttr-team-bio__button:focus {
	background-color: var(--ttr-tb-gold);
	color: var(--ttr-tb-white);
}

.ttr-team-bio__full {
	display: none;
}

.ttr-team-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.ttr-team-modal.is-open {
	display: flex;
}

.ttr-team-modal__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(21, 18, 12, 0.8);
}

.ttr-team-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 640px;
	max-height: 85vh;
	overflow-y: auto;
	background-color: #000000;
	border: 1px solid #D4B37D;
	padding: 48px 40px 40px;
	box-sizing: border-box;
}

.ttr-team-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid #D4B37D;
	color: #D4B37D;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.ttr-team-modal__close:hover,
.ttr-team-modal__close:focus {
	background-color: #D4B37D;
	color: #ffffff;
}

.ttr-team-modal__name {
	margin: 0 0 4px;
	font-size: 26px;
	font-weight: 700;
	color: #ffffff;
}

.ttr-team-modal__title {
	margin: 0 0 24px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #D4B37D;
}

.ttr-team-modal__body {
	color: #ffffff;
	font-size: 14px;
	line-height: 1.7;
}

.ttr-team-modal__body p {
	margin: 0 0 16px;
}

.ttr-team-modal__body p:last-child {
	margin-bottom: 0;
}

body.ttr-team-modal-open {
	overflow: hidden;
}

@media (max-width: 600px) {
	.ttr-team-modal__panel {
		padding: 40px 24px 32px;
	}

	.ttr-team-modal__name {
		font-size: 22px;
	}
}