/* Subpage styling goes here. Excluded on homepage */

/*******************************************************************************************
BLOG - Posts, search results, and pagination
*******************************************************************************************/
.post {
	margin-bottom: 28px;
	padding-bottom: 31px;
	border-bottom: 1px solid var(--color-gray-300);
}

.post:last-child {
	padding-bottom: 0;
	border: none;
}

.post-head h1,
.post-head h2 {
	margin-bottom: 12px;
	padding: 0;
	font-size: 2.25rem;
	font-weight: 400;
	color: var(--color-near-black);
	border: 0;
	line-height: 1.1;
}

.post-head h1 a,
.post-head h2 a {
	color: inherit;
	text-decoration: none;
}

.post-head {
	margin-bottom: 30px;
}

.post-body {
	display: block;
}

.post-head-info {
	margin-bottom: 8px;
	padding: 5px 10px 4px;
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	width: auto;
	max-width: 100%;
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--color-black);
	line-height: 1.6;
	text-transform: uppercase;
	background-color: var(--color-light-gray);
}

.post-head-info a {
	color: var(--color-black);
	text-decoration: none;
}

.post-head-info a:hover,
.post-head-info a:focus {
	color: var(--color-black);
	text-decoration: underline;
}

.post-head-info>div,
.post-head-info-authors {
	white-space: nowrap;
}

.post-head-info-authors>span:not(:last-child)::after {
	content: ', ';
}

.post-head-info>div:not(:last-of-type):after {
	margin: -2px 10px 0;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-radius: 5px;
	background-color: var(--color-gray-200);
	content: '';
}

.post-body-image img {
	max-width: 100%;
	width: 100%;
	display: block;
}

.post-body-image {
	margin-bottom: 15px;
}

.post-body-excerpt p:last-of-type {
	margin-bottom: 0;
}

.post-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.post-bottom .button.no-button {
	font-weight: 700;
}

.single .post-body-image img {
	width: auto;
}

@media screen and (min-width: 1025px) {
	.post-body {
		margin-bottom: 20px;
		display: flex;
		flex-direction: row-reverse;
	}

	.post-body-image {
		margin: 0 0 0 30px;
		flex-basis: 27%;
		width: 27%;
	}

	.post-body-content {
		flex: 1;
	}

	.single .post-body {
		display: block;
	}

	.single .post-body-image {
		margin: 0 0 30px;
		width: 100%;
	}

	.post-body-image~.post-body-excerpt {
		margin-left: 40px;
		width: 75%;
	}
}

/* BLOG > Archive post cards */
article.post[data-is-archive-view="1"] {
	margin-bottom: 28px;
	padding-bottom: 0;
	border-bottom: 0;
}

article.post[data-is-archive-view="1"] .post-inner {
	position: relative;
	background-color: var(--color-white);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
	transition: transform 250ms ease-out, box-shadow 450ms ease-out;
}

@media screen and (min-width: 768px) {

	article.post[data-is-archive-view="1"]:hover .post-inner,
	article.post[data-is-archive-view="1"]:focus-within .post-inner {
		transform: translateY(-4px);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
	}
}

article.post[data-is-archive-view="1"] .post-thumbnail-link {
	display: block;
}

article.post[data-is-archive-view="1"] .post-thumbnail-image {
	height: 26px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

article.post[data-is-archive-view="1"] .post-head {
	margin-bottom: 8px;
	padding: 28px 30px 0;
}

article.post[data-is-archive-view="1"] .post-head h2 {
	margin-bottom: 0;
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 1.2;
}

article.post[data-is-archive-view="1"] .post-head h2 a {
	font-weight: 400;
}

article.post[data-is-archive-view="1"] .post-head-info {
	margin-bottom: 12px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	max-width: 100%;
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--color-gray);
	line-height: 1.6;
	text-transform: uppercase;
	background-color: transparent;
}

article.post[data-is-archive-view="1"] .post-head-info a {
	color: var(--color-gray);
}

article.post[data-is-archive-view="1"] .post-head-info a:hover,
article.post[data-is-archive-view="1"] .post-head-info a:focus {
	color: var(--color-primary);
}

article.post[data-is-archive-view="1"] .post-head-info>div,
article.post[data-is-archive-view="1"] .post-head-info-authors {
	white-space: normal;
}

article.post[data-is-archive-view="1"] .post-head-info>div:not(:last-of-type):after {
	margin: 0 10px;
	position: relative;
	display: inline;
	vertical-align: baseline;
	width: auto;
	height: auto;
	border-radius: 0;
	background-color: transparent;
	color: var(--color-gray);
	font-weight: 400;
	content: '|';
}

article.post[data-is-archive-view="1"] .post-body {
	margin-bottom: 0;
	display: block;
}

article.post[data-is-archive-view="1"] .post-body-content {
	padding: 8px 30px 0;
	font-size: 0.938rem;
	color: var(--color-gray);
	line-height: 1.5;
}

article.post[data-is-archive-view="1"] .post-body-content p:last-of-type {
	margin-bottom: 0;
}

article.post[data-is-archive-view="1"] .post-bottom {
	padding: 24px 30px 28px;
}

@media screen and (min-width: 768px) {
	article.post[data-is-archive-view="1"] .post-head {
		padding: 32px 40px 0;
	}

	article.post[data-is-archive-view="1"] .post-head h2 {
		font-size: 2rem;
	}

	article.post[data-is-archive-view="1"] .post-body-content {
		padding: 10px 40px 0;
	}

	article.post[data-is-archive-view="1"] .post-bottom {
		padding: 28px 40px 36px;
	}
}

/* BLOG > Blog Grid Style */
.blog-grid .post {
	padding-bottom: 0;
	border: 1px solid var(--color-primary);
}

.blog-grid .post-inner {
	padding: 30px;
}

.post-thumbnail-link {
	transition: opacity 200ms ease-out;
}

.post-thumbnail-link:focus,
.post-thumbnail-link:hover {
	opacity: 0.9;
}

.post-thumbnail-image {
	height: 175px;
	background-repeat: no-repeat;
	background-position-x: 50%;
	background-position-y: 100%;
	background-size: cover;
}

.blog-filters {
	margin-bottom: 40px;
}

.blog-filters-block:not(:last-of-type) {
	margin-bottom: 20px;
}

#blog-grid-pagination {
	margin-top: 50px;
}

.blog-grid .post,
.blog-filters-block {
	max-width: 380px;
}

@media screen and (min-width: 760px) {
	.blog-filters {
		margin-bottom: 60px;
		display: flex;
		justify-content: space-between;
	}

	.blog-filters-block {
		margin-bottom: 0 !important;
		width: 48%;
	}

	.blog-grid .post-inner {
		padding: 40px;
	}

	.blog-grid .post {
		margin-bottom: 30px;
	}
}

@media screen and (min-width: 1025px) {
	.post-thumbnail-image {
		height: 250px;
	}

	.blog-filters {
		justify-content: flex-start;
	}

	.blog-filters-block:not(:last-of-type) {
		margin-right: 30px;
	}
}

/* BLOG > Page Navigation */
.wp-pagenavi {
	display: flex;
}

.wp-pagenavi a,
.wp-pagenavi span {
	margin: 0;
	margin-right: 19px;
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	color: var(--color-gray);
}

.wp-pagenavi span.current {
	font-weight: 600;
	text-decoration: underline;
	color: var(--color-secondary);
}

.wp-pagenavi a:hover,
.wp-pagenavi a:focus {
	color: var(--color-alternate);
}

.wp-pagenavi span.pages,
.wp-pagenavi span.extend {
	display: none;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first,
.wp-pagenavi .last {
	display: inline-flex;
	align-items: center;
	width: auto;
	font-weight: bold;
	color: var(--color-secondary);
	border-radius: 0;
	background: none;
}

.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .nextpostslink:focus,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .previouspostslink:focus,
.wp-pagenavi .first:hover,
.wp-pagenavi .first:focus,
.wp-pagenavi .last:hover,
.wp-pagenavi .last:focus {
	color: var(--color-secondary);
	background: none;
}

/*******************************************************************************************
GENERAL - Main content accent line
*******************************************************************************************/

@media screen and (min-width: 768px) {
	body.has-main-content-line main {
		position: relative;
	}

	body.has-main-content-line main::before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: calc((100% - min(100%, var(--width-normal) + var(--gutter-size) * 2)) / 2 - 40px);
		width: 1px;
		background-color: var(--color-primary);
		content: '';
		pointer-events: none;
	}
}

/*******************************************************************************************
GENERAL - Content tables
*******************************************************************************************/
.content-table-scroll {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 12px;
}

.content-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 12px;
	font-family: var(--font-family-body);
}

.content-table thead th {
	padding: 16px 18px;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: left;
	text-transform: uppercase;
	vertical-align: middle;
	color: var(--color-white);
	background-color: var(--color-primary);
	border: 0;
	border-bottom: 8px solid var(--color-yellow);
}

.content-table thead th:first-child {
	border-top-left-radius: 12px;
}

.content-table thead th:last-child {
	border-top-right-radius: 12px;
}

.content-table thead th:not(:first-child) {
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.content-table-icons thead th:not(:first-child) {
	white-space: nowrap;
}

.content-table-icons thead th:nth-child(2)::before,
.content-table-icons thead th:nth-child(3)::before,
.content-table-icons thead th:nth-child(4)::before {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 12px;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	content: '';
}

.content-table-icons thead th:nth-child(2)::before {
	background-image: url('../images/svg/step_icon.svg');
}

.content-table-icons thead th:nth-child(3)::before {
	background-image: url('../images/svg/description_icon.svg');
}

.content-table-icons thead th:nth-child(4)::before {
	background-image: url('../images/svg/applicable_to_icon.svg');
}

.content-table tbody td {
	padding: 16px 18px;
	vertical-align: top;
	border: 1px solid var(--color-gray-300);
}

.content-table tbody tr:first-child td {
	border-top: 0;
}

.content-table tbody tr:nth-child(even) {
	background-color: #f7f7f7;
}

.content-table tbody td:first-child {
	width: 60px;
	font-weight: 700;
	text-align: center;
	color: var(--color-yellow);
}

.content-table tbody td:nth-child(2) {
	font-weight: 700;
	color: var(--color-primary);
}

.content-table tbody td:last-child {
	font-weight: 700;
	color: var(--color-primary);
}

.content-table-accent {
	color: var(--color-yellow);
}

/*******************************************************************************************
TEMPLATES - Pre-built subpages
*******************************************************************************************/

/* TEMPLATES > Attorney Bios */
.content-tabs-anchor-links .content-tabs-row {
	margin: 0;
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	z-index: 1;
	background: rgba(15, 133, 119, 0.8);
}

.content-tabs-anchor-links .content-tabs-row button {
	margin: 0;
	position: relative;
	flex: 1;
	min-height: 60px;
	color: var(--color-white);
	background: none;
}

.content-tabs-anchor-links .content-tabs-row button:hover,
.content-tabs-anchor-links .content-tabs-row button:focus {
	background: var(--color-primary);
}

.content-tabs-anchor-links .content-tabs-row button:after {
	position: absolute;
	top: calc(50% - 7px);
	right: 0;
	width: 1px;
	height: 14px;
	background: var(--color-near-white);
	content: '';
}

.content-tabs-anchor-links .content-tabs-row button i {
	display: none;
}

.content-tabs-anchor-links .content-tabs-row button.active {
	color: var(--color-secondary);
	background: var(--color-near-white);
}

.content-tabs-anchor-links .content-tabs-row button:hover:after,
.content-tabs-anchor-links .content-tabs-row button:focus:after,
.content-tabs-anchor-links .content-tabs-row button.active:after {
	display: none;
}

/* TEMPLATES > Attorneys Landing */

/* Attorney Boxes */
.main-attorney-search {
	background: var(--color-light-gray);
}

.attorney-filter-controls {
	margin: 0 auto 20px;
	max-width: 820px;
}

.attorney-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	overflow: hidden;
}

.attorney-filter-controls .select-wrapper {
	margin-bottom: 0;
}

.attorney-filter-controls .select-wrapper-light select {
	color: var(--color-primary);
	background-color: rgba(45, 55, 145, 0.2);
	border: 0;
}

.attorney-filter-controls .select-wrapper-light::after {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.attorney-filter-controls .select-wrapper-light.active::after {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.attorney-filter a,
.attorney-filter-tab {
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 10px 15px 8px;
	font-size: 1rem;
	font-weight: 500;
	font-family: inherit;
	color: var(--color-primary);
	background-color: rgba(45, 55, 145, 0.2);
	text-transform: uppercase;
	line-height: 1.1;
	text-decoration: none;
	border: 0;
	cursor: pointer;
}

.attorney-filter a:last-of-type,
.attorney-filter-tab:last-of-type {
	margin-right: 0;
}

.attorney-filter a.active,
.attorney-filter a:focus,
.attorney-filter a:hover,
.attorney-filter-tab.active,
.attorney-filter-tab:focus,
.attorney-filter-tab:hover {
	color: var(--color-white);
	background-color: var(--color-primary);
	text-decoration: none;
}

.attorney-single-box.is-filter-hidden {
	display: none;
}

.attorney-search-inner {
	display: block;
	outline: none;
	transition: filter 300ms ease-out, opacity 100ms ease-out;
}

.attorney-search-inner.search-running {
	filter: blur(12px);
	opacity: 0;
}

.attorney-results {
	display: grid;
	grid-row-gap: 20px;
	grid-template-columns: repeat(1, 1fr);
}

.attorney-single-box {
	padding: 0;
	position: relative;
	text-decoration: none;
	color: var(--color-primary);
	background-color: var(--color-white);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
	transition: 200ms ease-out;
}

.attorney-single-box:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	transition: 200ms ease-in-out;
	content: '';
	pointer-events: none;
}

.attorney-results .attorney-single-box {
	width: 100%;
}

.attorney-result-image-container {
	position: relative;
	overflow: hidden;
}

.attorney-result-image-container img {
	display: block;
	width: 100%;
}

.attorney-result-image-container-has-fun .attorney-result-image-serious,
.attorney-result-image-container-has-fun .attorney-result-image-fun {
	transition: opacity 500ms ease-out;
}

.attorney-result-image-container-has-fun .attorney-result-image-fun {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
}

.attorney-single-box:hover .attorney-result-image-fun,
.attorney-single-box:focus .attorney-result-image-fun,
.attorney-single-box:focus-within .attorney-result-image-fun {
	opacity: 1;
}

.attorney-single-box:hover .attorney-result-image-container-has-fun .attorney-result-image-serious,
.attorney-single-box:focus .attorney-result-image-container-has-fun .attorney-result-image-serious,
.attorney-single-box:focus-within .attorney-result-image-container-has-fun .attorney-result-image-serious {
	opacity: 0;
}

.attorney-single-box .attorney-single-box-info {
	padding: 11px 15px 15px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.attorney-single-box-info h2,
.attorney-single-box-info p {
	margin: 0;
}

.attorney-single-box h2 {
	margin-bottom: 5px;
	font-size: 1.125rem;
}

.attorney-single-box-info p {
	margin-bottom: 11px;
	font-size: 0.688rem;
	line-height: 1.2;
}

.attorney-single-box-arrow {
	padding: 3px 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: var(--color-white);
	background: var(--color-yellow);
	line-height: 1;
	transition: padding 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.attorney-single-box-arrow i {
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.attorney-single-box-arrow strong {
	margin-right: 5px;
	font-size: 0.813rem;
	text-transform: uppercase;
	display: none;
}

.attorney-single-box:hover,
.attorney-single-box:focus {
	color: var(--color-primary);
	text-decoration: none;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.attorney-single-box:hover:before,
.attorney-single-box:focus:before {
	border: 1px solid var(--color-yellow);
}

.attorney-single-box:focus .attorney-single-box-arrow,
.attorney-single-box:hover .attorney-single-box-arrow {
	padding: 3px 20px 3px 7px;
	background: linear-gradient(270deg, #FCA311 0%, #CF840C 100%), #FCA311;
}

.attorney-single-box:focus .attorney-single-box-arrow i,
.attorney-single-box:hover .attorney-single-box-arrow i {
	transform: translateX(10px);
}

.attorney-single-box:focus .attorney-single-box-arrow strong,
.attorney-single-box:hover .attorney-single-box-arrow strong {
	display: block;
}

@media screen and (min-width: 650px) {
	.attorney-results {
		grid-column-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}

	.attorney-single-box {
		margin-bottom: 0;
	}

	.attorney-single-box .attorney-single-box-info {
		min-height: 112px;
	}

	.attorney-single-box-arrow {
		margin-top: auto;
	}

	.attorney-single-box:hover,
	.attorney-single-box:focus {
		transform: translateY(-8px);
	}
}

@media screen and (min-width: 900px) {
	.attorney-results {
		grid-row-gap: 44px;
		grid-column-gap: 30px;
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Attorney Rows */
.attorney-single-row {
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.attorney-row-link {
	margin: 0 auto;
	justify-content: center;
	max-width: 280px;
	transition: opacity 200ms ease-out;
}

.attorney-row-link:focus,
.attorney-row-link:hover {
	opacity: 0.9;
}

.attorney-row-info-main {
	padding-top: 20px;
	border-top: 2px solid var(--color-gray);
}

.attorney-row-additional span,
.attorney-row-info-main-contact span {
	display: block;
}

.attorney-single-row i {
	color: var(--color-primary);
}

.attorney-row-additional {
	margin-top: 6px;
}

.attorney-row-info-main-position {
	margin-bottom: 20px;
	font-size: 1.2rem;
}

@media screen and (min-width: 790px) {
	.attorney-results-type-row {
		display: grid;
		grid-row-gap: 20px;
		grid-column-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}

	.attorney-single-row {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 900px) {
	.attorney-results.attorney-results-type-row {
		display: block;
	}

	.attorney-single-row {
		margin-bottom: 30px;
		flex-direction: row;
		text-align: left;
		border-bottom: 2px solid var(--color-gray);
	}

	.attorney-row-info-main-position,
	.attorney-single-row:last-of-type,
	.attorney-row-additional,
	.attorney-row-link {
		margin: 0;
	}

	.attorney-row-info {
		padding: 0 0 40px 5vw;
		display: flex;
		flex: 1;
	}

	.attorney-row-info-main {
		padding: 0;
		display: flex;
		flex: 1;
		flex-direction: column;
		justify-content: flex-end;
		border: none;
	}

	.attorney-row-info-main-contact {
		margin-top: 40px;
	}

	.attorney-row-additional {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		width: 50%;
	}
}

/* Attorney Pops */
.attorney-results.attorney-results-type-pop {
	display: block;
}

.attorney-result-pop {
	display: none;
}

.attorney-result-pop-row {
	font-size: 1.1rem;
	padding: 20px 0;
	border-bottom: 1px solid var(--color-gray);
}

.attorney-result-pop-cell {
	flex: 1;
	margin-bottom: 5px;
}

.attorney-result-pop-name {
	flex-basis: 30%;
	width: 30%;
	position: relative;
}

.attorney-result-pop-info {
	margin-left: 40px;
}

.attorney-result-pop-info p {
	margin-bottom: 0;
}

.attorney-result-pop-row i {
	color: var(--color-secondary);
	-webkit-transition: color 200ms ease-out;
	-moz-transition: color 200ms ease-out;
	-ms-transition: color 200ms ease-out;
	-o-transition: color 200ms ease-out;
	transition: color 200ms ease-out;
}

.attorney-result-pop-cell a {
	text-decoration: none;
}

.attorney-result-pop-cell>a {
	color: var(--color-primary);
}

.attorney-result-pop-name:hover>a,
.attorney-result-pop-cell a:hover,
.attorney-result-pop-cell a:focus {
	text-decoration: underline;
	color: var(--color-alternate);
}

.attorney-result-pop-info>a {
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.attorney-result-pop-info a {
	color: white;
}

.attorney-result-pop-inner {
	display: flex;
	align-items: center;
}

.attorney-result-pop .attorney-result-pop-image img {
	max-width: 130px;
}

.attorney-result-pop {
	position: absolute;
	top: calc(100% - 115px);
	right: 0;
	padding: 30px;
	z-index: 1;
	background: var(--color-primary);
	height: 200px;
}

.attorney-result-pop-image {
	background: var(--color-gray);
	display: flex;
	flex-direction: column;
}

.attorney-result-pop::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 14px 15px 0;
	border-color: transparent var(--color-primary) transparent transparent;
	content: "";
	right: calc(100% - 1px);
	top: calc(50% - 15px);
	position: absolute;
}

.attorney-result-pop-vcard {
	margin-left: auto;
	flex-grow: 0;
}

.attorney-result-pop-vcard a:hover i,
.attorney-result-pop-vcard a:focus i {
	color: var(--color-alternate);
}

.attorney-result-pop-name-link {
	font-size: 1.3rem;
	display: block;
	margin-bottom: 8px;
}

@media screen and (min-width: 900px) {
	.attorney-result-pop-cell {
		margin-bottom: 0;
	}

	.attorney-result-pop-name-link {
		margin-bottom: 0;
		font-size: inherit;
	}

	.attorney-result-pop-row {
		display: flex;
		width: 100%;
	}

	.attorney-result-pop-name:focus-within .attorney-result-pop,
	.attorney-result-pop-name:hover .attorney-result-pop {
		display: block;
		-webkit-animation: fadeinleftslight 200ms ease-out;
		animation: fadeInLeftSlight 200ms ease-out;
	}
}

/* TEMPLATES > Attorney Search */
.attorney-search-bar {
	margin-bottom: 40px;
	text-align: center;
	border-top: 1px solid var(--color-light-gray);
	border-bottom: 1px solid var(--color-light-gray);
}

.attorney-search-container-inner {
	padding-top: 40px;
	padding-bottom: 40px;
}

.attorney-search-bar-string span {
	font-weight: 600;
}

.attorney-search-bar-string span:not(:last-of-type):after {
	margin-right: 5px;
	content: ',';
}

.attorney-search-letters {
	margin-bottom: 40px;
}

.attorney-search-letters-single {
	padding: 0;
	display: inline-block;
	width: 30px;
	height: 30px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	color: var(--color-secondary);
	background: none;
}

#attorney-search-clear {
	display: none;
}

.search-results-displayed #attorney-search-clear {
	display: inline-block;
}

span.attorney-search-letters-single {
	color: var(--color-gray);
}

@media screen and (min-width: 700px) {
	.attorney-search-form .form-input-row {
		display: flex;
	}

	.form-input-group:first-of-type {
		margin-right: 15px;
	}
}

@media screen and (min-width: 1025px) {
	.attorney-search-letters {
		display: flex;
		justify-content: space-between;
	}
}

/* TEMPLATES > Practices Landing */
.practice-box {
	margin-bottom: 20px;
	padding: 10px 65px 10px 93px;
	display: flex;
	align-items: center;
	position: relative;
	text-decoration: none;
	color: var(--color-alternate);
	background: var(--color-white);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
	line-height: 1.2;
	min-height: 105px;
	transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.practice-box:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	transition: 200ms ease-out;
	content: '';
	pointer-events: none;
}

.practice-box-icon {
	position: absolute;
	top: 50%;
	left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 100px;
	background-color: var(--color-alternate);
	transform: translateY(-50%);
	transition: all 200ms ease-in-out;
}

.practice-box-content {
	flex: 1;
	min-width: 0;
}

.practice-box-title {
	margin: 0;
	display: block;
	width: 100%;
	font-size: 1.375rem;
	font-weight: 600;
	letter-spacing: -0.031rem;
}

.practice-box-title-medium {
	font-size: 1.25rem;
}

.practice-box-title-long {
	font-size: 1.125rem;
}

.practice-box-arrow {
	position: absolute;
	top: 50%;
	right: 15px;
	font-size: 2.25rem;
	color: var(--color-yellow);
	transform: translateY(-50%);
}

.practice-box p {
	margin-bottom: 0;
	display: none;
	font-size: 0.688rem;
}

.practice-box:last-of-type {
	margin-bottom: 0;
}

.practice-box:focus,
.practice-box:hover {
	color: var(--color-alternate);
	background: var(--color-white);
	text-decoration: none;
}

.practice-box:focus:before,
.practice-box:hover:before {
	border: 1px solid var(--color-yellow);
}

.practice-box:focus .practice-box-icon,
.practice-box:hover .practice-box-icon {
	background-color: var(--color-yellow);
}

@media screen and (min-width: 768px) {
	.practice-box-list {
		display: grid;
		grid-row-gap: 20px;
		grid-column-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}

	.practice-box {
		margin-bottom: 0;
		padding-right: 55px;
	}

	.practice-box:focus,
	.practice-box:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
	}

	body.page-template-template-practices {
		background-color: var(--color-gray-400);
	}

	body.page-template-template-practices main {
		background-image: url('../images/practice-landing-bg.png');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: top 134px left;
	}
}

@media screen and (min-width: 1025px) {
	.practice-box-list {
		grid-row-gap: 30px;
		grid-column-gap: 25px;
	}

	.practice-box {
		padding: 10px 90px 10px 105px;
	}

	.practice-box-icon {
		left: 20px;
	}

	.practice-box-title {
		font-size: 1.625rem;
	}

	.practice-box-title-medium {
		font-size: 1.5rem;
	}

	.practice-box-title-long {
		font-size: 1.375rem;
	}

	.practice-box-arrow {
		right: 45px;
	}

	.practice-box:hover p,
	.practice-box:focus p {
		display: block;
	}

	.practice-box:hover .practice-box-title,
	.practice-box:focus .practice-box-title {
		margin-bottom: 4px;
	}

	.practice-box p {
		display: none;
		font-size: 0.688rem;
	}

	body.page-template-template-practices main {
		background-position: top 149px left;
	}
}

@media screen and (min-width: 1440px) {
	body.page-template-template-practices main {
		background-position: top left;
	}
}


/* TEMPLATES > Section Landing */
.landing-box {
	margin-bottom: 20px;
	padding: 20px 55px 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	text-decoration: none;
	color: var(--color-alternate);
	background: var(--color-white);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
	line-height: 1.2;
	min-height: 80px;
}

.landing-box:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	transition: 200ms ease-out;
	content: '';
	pointer-events: none;
}

.landing-box-title {
	font-size: 1.375rem;
	font-weight: 600;
	letter-spacing: -0.031rem;
}

.landing-box-arrow {
	flex-shrink: 0;
	margin-left: 16px;
}

.landing-box-arrow i {
	display: inline-block;
	font-size: 2rem;
	color: var(--color-yellow);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-box:last-of-type {
	margin-bottom: 0;
}

.landing-box:focus,
.landing-box:hover {
	color: var(--color-alternate);
	background: var(--color-white);
	text-decoration: none;
}

.landing-box:focus:before,
.landing-box:hover:before {
	border: 1px solid var(--color-yellow);
}

.landing-box:focus .landing-box-arrow i,
.landing-box:hover .landing-box-arrow i {
	transform: translateX(8px);
}

body.page-template-template-section-landing main {
	background-color: var(--color-white);
}

@media screen and (min-width: 768px) {
	.landing-box-list {
		display: grid;
		grid-row-gap: 20px;
		grid-column-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}

	.landing-box {
		margin-bottom: 0;
		padding-right: 45px;
	}
}

@media screen and (min-width: 1025px) {
	.landing-box-list {
		grid-row-gap: 30px;
		grid-column-gap: 25px;
	}

	.landing-box {
		padding: 24px 60px 24px 30px;
		min-height: 90px;
	}

	.landing-box-title {
		font-size: 1.6rem;
	}

	.landing-box-arrow i {
		font-size: 2.25rem;
	}
}


/* TEMPLATES > Video Gallery */
.videos-filter {
	margin-bottom: 50px;
}

@media screen and (min-width: 1025px) {
	.videos-filter {
		max-width: 450px;
	}
}

/* TEMPLATES > Media Articles */
.media-post-groups {
	margin-bottom: 40px;
}

.media-post-group:not(:last-child) {
	margin-bottom: 40px;
}

.media-post-group-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.media-post-group-item {
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--color-gray-100);
}

.media-post-group-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

/* TEMPLATES > Contact */
.office-block {
	margin-bottom: 30px;
}

.office-block-image {
	width: 100%;
	height: 300px;
	display: block;
	border: 0;
}

.office-block-info {
	position: relative;
	margin-bottom: 30px;
}

.office-block-info p {
	margin: 0;
}

.office-contact {
	margin-top: 30px;
}

.office-contact p {
	font-weight: 700;
}

.office-block-info-inner {
	width: 100%;
}

.office-contact-map {
	position: absolute;
	right: 0;
	bottom: 0;
}

/* TEMPLATES > Contact */
.page-template-template-contact .form-container {
	background-color: var(--color-light-gray);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
}

.page-template-template-contact .form-container h2 {
	color: var(--color-near-black);
}

.page-template-template-contact .form-container input:not([type="submit"]),
.page-template-template-contact .form-container select,
.page-template-template-contact .form-container textarea {
	color: var(--color-near-black);
	border-bottom-color: rgba(32, 31, 43, 0.25);
}

.page-template-template-contact .form-container input[type="submit"],
.page-template-template-contact .form-container .gform_button {
	color: var(--color-white);
	border-bottom: 0;
}

.page-template-template-contact .form-container input::-moz-placeholder,
.page-template-template-contact .form-container textarea::-moz-placeholder {
	color: var(--color-gray);
}

.page-template-template-contact .form-container input::placeholder,
.page-template-template-contact .form-container textarea::placeholder {
	color: var(--color-gray);
}

.page-template-template-contact .form-container label,
.page-template-template-contact .form-container legend,
.page-template-template-contact .form-container .gfield_label {
	color: var(--color-near-black);
}

.page-template-template-contact .form-container .background-input input,
.page-template-template-contact .form-container .background-input textarea,
.page-template-template-contact .form-container .background-input select {
	background-color: transparent;
}

@media screen and (min-width: 768px) {
	.page-template-template-contact .content {
		width: 50%;
	}

	.page-template-template-contact .sidebar {
		width: 50%;
	}
}

@media screen and (min-width: 1025px) {
	.page-template-template-contact .content {
		flex: 0 1 45%;
		width: auto;
		max-width: 45%;
		min-width: 0;
	}

	.page-template-template-contact .sidebar {
		flex: 0 0 51.7%;
		width: 51.7%;
		max-width: 51.7%;
		margin-left: auto;
		padding-right: 0;
	}
}

/* TEMPLATES > Attorney Bios */
.content-tabs-row {
	margin-bottom: 30px;
	display: none;
	flex-wrap: wrap;
}

.content-tabs-row-inner {
	display: flex;
}

.content-tabs-row .content-tab-activate {
	margin-right: 10px;
}

.content-tab-activate {
	flex: 1;
	border-radius: 0;
}

.content-tab-activate.active {
	background: var(--color-primary);
	pointer-events: none;
}

.content-tab {
	margin-bottom: 50px;
	display: none;
}

.content-tab.active {
	-webkit-animation: fadein 200ms ease-out;
	animation: fadeIn 200ms ease-out;
}

.content-tab.active,
.content-tabs-anchor-links .content-tab {
	display: block;
}

.content-tabs-anchor-links .mobile-tab {
	display: none;
}

.content-tabs-select {
	margin: 0 auto 30px;
	display: none;
}

.content-tabs-anchor-links .content-tabs-select {
	display: block;
}

.mobile-tab {
	margin-bottom: 20px;
	padding: 20px 30px;
	position: relative;
	width: 100%;
	text-align: left;
}

.mobile-tab:after {
	position: absolute;
	right: 15px;
	font-family: var(--font-family-icon);
	content: '\f0d7';
}

@media screen and (min-width: 1025px) {
	.content-tabs {
		display: flex;
		flex-wrap: wrap;
	}

	.content-tabs-row {
		display: block;
	}

	.mobile-tab,
	.content-tabs-anchor-links .content-tabs-select {
		display: none;
	}
}

/* TEMPLATES > Long-Form */
.banner-xl {
	padding: 50px 0;
	background-color: rgb(20, 23, 47);
	background-image: linear-gradient(180deg, rgba(20, 23, 47, 1) 46%, rgba(36, 42, 88, 1) 100%);
}

.banner-xl-content p:last-child {
	margin: 0;
}

.banner-xl-image {
	text-align: center;
}

.banner-xl-title {
	font-size: 3.5rem;
	line-height: 1.4;
}

.banner-xl-image img {
	margin: 0 auto;
	max-width: 70%;
}

@media screen and (min-width: 1100px) {
	.banner-xl-inner {
		display: flex;
		align-items: center;
	}

	.banner-xl-image img {
		max-width: 100%;
	}

	.banner-xl-content {
		padding-left: 60px;
		flex: 1;
	}
}

.top-table-contents {
	padding: 50px 0;
	background: #e5e8f6;
}

.top-table-contents-button {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.2rem;
	text-align: center;
	text-decoration: none !important;
}

.top-table-contents-icon-container {
	margin-bottom: 15px;
}

.top-table-contents-inner {
	display: grid;
	grid-row-gap: 20px;
	grid-column-gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}

.top-table-contents-button-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--color-secondary);
	transition: all 200ms ease-out;
}

.top-table-contents-button i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: var(--color-white);
}

.top-table-contents-button-icon:hover,
.top-table-contents-button-icon:focus {
	background: var(--color-alternate);
	transform: scale(1.03);
}

.is-sticky .top-table-contents {
	padding: 20px 0;
}

.is-sticky .top-table-contents-button-icon {
	width: 30px;
	height: 30px;
}

.is-sticky .top-table-contents-button i {
	font-size: 1rem;
}

.is-sticky .top-table-contents-icon-container {
	margin: 0 12px 0 0;
}

.is-sticky .top-table-contents-title {
	display: none;
}

.is-sticky .top-table-contents-button {
	margin: 0 auto 0 0;
	flex-direction: row;
}

.single-chapter-banner-title h2 {
	margin: 0;
	font-size: 2.4rem;
}

.single-chapter-banner-image {
	margin-bottom: 20px;
}

.single-chapter:nth-child(2n) {
	background: var(--color-light-gray);
}

.single-chapter-banner {
	background: var(--color-primary);
}

.single-chapter-content,
.single-chapter-banner {
	padding: 30px 0;
}

@media screen and (min-width: 900px) {
	.single-chapter-banner-inner {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		justify-content: center;
	}

	.single-chapter-banner-image {
		margin-bottom: 0;
		padding-left: 5vw;
	}

	.single-chapter-banner-title h2 {
		margin: 0;
		font-size: 3.2rem;
	}
}

@media screen and (min-width: 1025px) {
	.top-table-contents-inner {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* TEMPLATES > Confirmation */
.confirm-contact {
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
}

.confirm-contact a:not(:last-child) {
	margin-right: 20px;
}

.confirm-social {
	margin-bottom: 60px;
}

/* TEMPLATES > Reviews */
.review-social {
	margin: 40px 0;
}

.review-social .social-links {
	justify-content: flex-start;
	max-width: none;
}

.review-social .social-links a {
	margin: 0 15px 0 0;
	width: 50px;
	height: 50px;
	font-size: 1.7rem;
	border: 1px solid var(--color-primary);
	background: var(--color-near-white);
	transition: all 200ms ease-out;
}

.review-social .social-links a:focus,
.review-social .social-links a:hover {
	opacity: 0.85;
	background: var(--color-light-gray);
}

.review-stars i {
	font-size: 2rem;
	color: var(--color-secondary);
}

/* TEMPLATES > Testimonials */
.content-testimonial-single:not(:last-child) {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--color-gray);
}

.content-testimonial-stars {
	font-size: 1.5rem;
}

.content-testimonial-source {
	display: block;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.content-testimonial-source:before {
	margin-right: 6px;
	display: inline-block;
	content: '-';
}

/* HEADING-BLOCK > heading-block */
.heading-block {
	margin-top: 134px;
	padding-top: 33px;
	position: relative;
	height: auto;
	text-align: center;
}

.heading-block:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 390px;
	background: linear-gradient(360deg, rgba(255, 255, 255, 0.81) 0%, rgba(255, 255, 255, 0) 100%), #2D3791;
	opacity: 0.1;
	content: '';
	pointer-events: none;
}

.heading-block .column {
	position: relative;
	z-index: 1;
}

.heading-block-heading {
	position: absolute;
	top: 2px;
	left: 50%;
	z-index: 1;
	font-size: 6.25rem;
	font-weight: 200;
	color: rgba(32, 31, 43, 0.05);
	line-height: 1;
	letter-spacing: -0.313rem;
	white-space: nowrap;
	transform: translateX(-50%);
	pointer-events: none;
}

.heading-block-title {
	margin-bottom: 0;
	font-weight: 400;
	font-family: var(--font-family-heading);
	font-size: 2.813rem;
	color: var(--color-near-black);
}

.heading-block-title span {
	color: var(--color-orange);
}

.heading-block-content {
	overflow: hidden;
}

.heading-block-text {
	margin-top: 23px;
	font-size: 1.063rem;
}

.heading-block-text p {
	margin-bottom: 16px;
}

.heading-block-text p strong {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1.33;
}

.heading-block-text p:last-of-type {
	margin-bottom: 0;
}

.heading-block-bg {
	margin-bottom: 27px;
	position: relative;
}

.heading-block-bg:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(80.16% 107.18% at 80.16% 25.45%, rgba(234, 235, 244, 0) 50.61%, #EAEBF4 100%), linear-gradient(235.14deg, rgba(234, 235, 244, 0) 38.4%, #EAEBF4 100%);
	content: '';
	pointer-events: none;
}

.heading-block-bg img {
	width: 100%;
	height: 100%;
}

.heading-block.inner {
	margin-bottom: 30px;
	padding-top: 0;
	text-align: left;
}

.heading-block.inner .heading-block-title {
	font-size: 2.25rem;
}

@media screen and (max-width: 767px) {
	.page-template-template-practices .heading-block.inner {
		background-color: var(--color-light-gray);
	}
}

@media screen and (min-width: 768px) {

	.heading-block.inner,
	.heading-block {
		padding-top: 81px;
		text-align: left;
	}

	.heading-block-heading {
		font-size: 8.75rem;
		top: 45px;
		left: 0;
		transform: translateX(0);
		letter-spacing: -0.375rem;
	}

	.heading-block.inner .heading-block-title,
	.heading-block-title {
		font-size: 3.438rem;
	}

	.heading-block-content {
		max-width: 670px;
	}

	.heading-block-text {
		margin-top: 23px;
		padding-left: 38px;
		border-left: 2px solid var(--color-yellow);
	}

	.heading-block-bg {
		margin-bottom: 0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
	}

	.heading-block-bg img {
		object-fit: cover;
	}

	.heading-block-bg:before {
		display: none;
	}

	.heading-block.inner {
		margin-bottom: 75px;
	}

	.heading-block.inner:before {
		display: none;
	}
}

@media screen and (min-width: 1025px) {
	.heading-block {
		margin-top: 149px;
	}

	.heading-block-heading {
		top: 2px;
		font-size: 11.188rem;
		letter-spacing: -0.531rem;
	}
}

@media screen and (min-width: 1281px) {
	.heading-block-heading {
		margin-left: -640px;
		left: 50%;
	}
}

/* INITIAL > initial */
.initial {
	padding: 50px 0 46px;
	position: relative;
	color: var(--color-body-text);
	background-color: var(--color-light-gray);
	border-top: 4px solid var(--color-yellow);
	text-align: center;
	overflow: hidden;
}

.initial h2 {
	margin-bottom: 23px;
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--color-near-black);
}

.initial h2 strong {
	display: inline;
	font-weight: 600;
	color: inherit;
}

.initial-tel,
.initial-email {
	margin-bottom: 12px;
	padding: 12px 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-white);
	background-color: var(--color-primary);
	border: 0;
	border-radius: 2px;
	text-decoration: none;
	text-align: center;
}

.initial-tel i,
.initial-email i {
	margin-right: 10px;
	font-size: 1rem;
}

.initial-email {
	margin-bottom: 0;
}

.initial-tel:focus,
.initial-email:focus,
.initial-tel:hover,
.initial-email:hover {
	color: var(--color-white);
	background-color: var(--color-alternate);
	text-decoration: none;
}

@media screen and (min-width: 768px) {
	.initial {
		padding: 72px 0 68px;
	}

	.initial h2 {
		margin-bottom: 24px;
		font-size: 1.75rem;
		line-height: 1.32;
	}

	.initial-buttons {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.initial-tel,
	.initial-email {
		margin-right: 15px;
		margin-bottom: 0;
		width: auto;
		font-size: 1.25rem;
	}

	.initial-email {
		margin-right: 0;
	}
}

/* Videos landing */
.videos-filter {
	margin-bottom: 30px;
	max-width: 420px;
}

.videos-filter .select-wrapper select {
	color: var(--color-black);
	background-color: var(--color-white);
	border: 1px solid #eaebf4;
}

.videos-filter .select-wrapper::after {
	color: var(--color-white);
	background-color: var(--color-primary);
}

.videos-filter .select-wrapper.active::after {
	background-color: var(--color-primary);
	color: var(--color-white);
}

#videos-container.feature-row {
	margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
	.videos-filter {
		margin-bottom: 40px;
	}

	#videos-container.feature-row {
		align-items: stretch;
	}

	#videos-container .feature-block {
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	#videos-container .feature-block-text {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-height: 0;
	}

	#videos-container .feature-block-text strong {
		flex: 1 1 auto;
		margin-bottom: 27px;
	}

	#videos-container .feature-block-arrow {
		margin-top: auto;
		flex-shrink: 0;
	}
}

/*******************************************************************************************
TEMPLATES - External Resources
*******************************************************************************************/

.external-resources .content-tabs-row {
	margin-bottom: 0;
}

.external-resources-tabs-inner {
	display: flex;
	flex-wrap: wrap;
}

.external-resources .content-tab-activate {
	flex: 1 1 auto;
	margin: 0;
	padding: 14px 18px;
	border: 1px solid var(--color-gray-100);
	border-bottom: none;
	border-radius: 0;
	background: #fff;
	color: var(--color-primary);
	font-weight: 600;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.external-resources .content-tab-activate:not(:first-child) {
	border-left: none;
}

.external-resources .content-tab-activate:first-child {
	border-top-left-radius: 8px;
}

.external-resources .content-tab-activate:last-child {
	border-top-right-radius: 8px;
}

.external-resources .content-tab-activate:hover,
.external-resources .content-tab-activate:focus {
	background: var(--color-gray-400);
	color: var(--color-primary);
}

.external-resources .content-tab-activate.active {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	pointer-events: none;
}

.external-resources .content-tabs-select {
	display: block;
	margin: 0 0 20px;
	padding-left: 0;
	padding-right: 0;
}

.external-resources .content-tabs-select .select-wrapper::after,
.external-resources .content-tabs-select .select-wrapper.active::after {
	background-color: var(--color-white);
	color: var(--color-primary);
}

.external-resources-panels {
	padding: 24px 20px;
	border: 1px solid var(--color-gray-100);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(20, 23, 47, 0.08);
}

.external-resources .content-tab {
	margin-bottom: 0;
}

.external-resources .content-grid {
	grid-column-gap: 20px;
	grid-row-gap: 24px;
}

.external-resources .content-grid-item>a {
	transition: transform 0.2s ease;
}

.external-resources .content-grid-item>a:hover,
.external-resources .content-grid-item>a:focus {
	transform: translateY(-2px);
}

@media screen and (min-width: 1025px) {
	.external-resources .content-tabs-select {
		display: none;
	}

	.external-resources-panels {
		padding: 36px 32px;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	.external-resources .content-grid {
		grid-template-columns: repeat(4, 1fr);
		grid-column-gap: 28px;
		grid-row-gap: 32px;
	}
}

/*******************************************************************************************
CAREERS - Single job listing
*******************************************************************************************/

body.single-job_listing .job-listing-meta,
body.single-job_listing .post-bottom,
body.single-job_listing .company {
	display: none;
}