/* Render-blocking, high priority stylesheet for attorney bios */
/* This file should be SMALL; delete CSS of bio templates you are not using */

.banner.is-bio {
	height: auto;
}

.banner.is-bio:after,
.banner.is-bio:before {
	display: none;
}

.banner.is-bio .banner-inner {
	padding-top: 0;
	padding-bottom: 30px;
}

.banner-image {
	width: 100%;
	position: relative;
	aspect-ratio: 375/510;
	margin-bottom: -32%;
}

.banner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.banner-image:before {
	left: 0;
	bottom: 0;
	height: 55%;
	width: 100%;
	content: "";
	display: block;
	position: absolute;
	background: linear-gradient(
		to bottom,
		rgba(18, 30, 71, 0) 0,
		rgba(18, 30, 71, 1) 50%,
		rgba(18, 30, 71, 1) 100%
	);
}

.banner-bio-content {
	display: flex;
	font-size: 1rem;
	text-align: center;
	align-items: center;
	flex-direction: column;
	color: var(--color-white);
}

.banner-bio-content i {
	color: var(--color-primary);
}

.banner-bio-content a {
	color: inherit;
	text-decoration: none;
}

.banner-bio-content a:focus,
.banner-bio-content a:hover {
	color: var(--color-primary);
}

.banner-bio-content p {
	margin-bottom: 10px;
}

.banner-bio-content h1 {
	color: inherit;
	margin-bottom: 5px;
	font-size: 2.438rem;
	text-transform: uppercase;
}

.banner-bio-content ul {
	text-align: left;
	font-weight: 500;
	font-size: 1.063rem;
	margin-bottom: 15px;
}

.banner-bio-content ul i {
	margin-right: 15px;
}

.banner-bio-content ul a {
	display: flex;
	align-items: center;
}

.banner-bio-content li + li {
	margin-top: 5px;
}

.banner-social {
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 39px;
	height: 39px;
	font-size: 1.25rem;
	color: var(--color-white);
	background-color: var(--color-alternate);
}

.banner-social a + a {
	margin-left: 10px;
}

.banner-social a i {
	color: inherit;
}

.banner-social a:hover,
.banner-social a:hover {
	color: var(--color-secondary);
	background-color: var(--color-white);
}

@media screen and (min-width: 768px) {
	.banner-image {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		aspect-ratio: unset;
	}

	.banner-image:before {
		display: none;
	}

	.banner.is-bio .banner-inner {
		height: 720px;
		padding-top: 220px;
		padding-bottom: 150px;
		justify-content: flex-start;
	}

	.banner-bio-content {
		width: 100%;
		display: block;
		text-align: left;
		max-width: 520px;
		font-size: 1.063rem;
	}

	.banner-bio-content p {
		margin-bottom: 30px;
	}

	.banner-bio-content h1 {
		font-size: 3.875rem;
		margin-bottom: 15px;
	}

	.banner-bio-content ul {
		margin-bottom: 40px;
	}

	.banner-social {
		justify-content: flex-start;
	}
}

@media screen and (min-width: 1025px) {
	.banner-image {
		display: flex;
		background: #08121e;
	}
	.banner-image img {
		margin-left: auto;
		width: auto;
		height: auto;
	}
}
