/* Global styling to be moved later */
:root {
	--font-size-h1: 3.25rem;
	--font-size-h2: 3rem;
	--font-size-h3: 2.5rem;
	--font-size-h4: 2rem;
	--font-size-h5: 1.625rem;
	--font-size-h6: 1.25rem;
	--font-size-h1-mobile: 2.25rem;
	--font-size-h2-mobile: 1.875rem;
	--font-size-h3-mobile: 1.5rem;
	--font-size-h4-mobile: 1.25rem;
	--font-size-h5-mobile: 1.125rem;
	--font-size-h6-mobile: 1rem;
	--font-size-lg: 1.625rem;
	--font-size-lg-mobile: 1.25rem;
	--font-size-md: 1.25rem;
	--font-size-md-mobile: 1.125rem;
	--font-size-base: 1rem;
	--font-size-sm: 0.875rem;
	--font-weight-headings: 600;
	--wrap-padding-x: 16px;
	--wrap-width: calc(1200px + calc(var(--wrap-padding-x) * 2));
}

.breadcrumbs {
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.breadcrumbs svg {
	position: relative;
	top: -0.05em;
	vertical-align: middle;
}

.breadcrumb_last {
	font-weight: 600;
}

.section-spacing {
	margin-block: 4rem;
}

@media (min-width: 992px) {
	.section-spacing {
		margin-block: 6rem;
	}	
}

.section-padding {
	padding-block: 3rem;
}

@media (min-width: 992px) {
	.section-padding {
		padding-block: 4rem;
	}	
}

body {
	line-height: 1.5;
	font-size: var(--font-size-base);
	color: var(--neutral-700);
}

.site-inner h1,
.site-inner h2,
.site-inner h3,
.site-inner h4,
.site-inner h5,
.site-inner h6,
.site-inner h1 strong,
.site-inner h2 strong,
.site-inner h3 strong,
.site-inner h4 strong,
.site-inner h5 strong,
.site-inner h6 strong {
	font-weight: var(--font-weight-headings);
	color: var(--primary-900);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-bottom: 1.5rem;
}

.site-inner h1,
.site-container .site-inner .fs-h1 {
	font-size: var(--font-size-h1-mobile);
	letter-spacing: -0.01em;
	line-height: 1.33;
}

@media (min-width: 992px) {
	.site-inner h1,
	.site-container .site-inner .fs-h1 {
		font-size: var(--font-size-h1);
		letter-spacing: -0.02em;
		line-height: 1.23;
	}	
}

.site-inner h2,
.site-container .site-inner .fs-h2 {
	font-size: var(--font-size-h2-mobile);
	line-height: 1.33;
}

.entry-content h2 {
	margin-top: 3rem;
}

@media (min-width: 992px) {
	.site-inner h2,
	.site-container .site-inner .fs-h2 {
		font-size: var(--font-size-h2);
		letter-spacing: -0.02em;
		line-height: 1.22;
	}	
}

.site-inner h3,
.site-container .site-inner .fs-h3 {
	font-size: var(--font-size-h3-mobile);
	line-height: 1.33;
}

@media (min-width: 992px) {
	.site-inner h3,
	.site-container .site-inner .fs-h3 {
		font-size: var(--font-size-h3);
		line-height: 1.2;
	}	
}

.site-inner h4,
.site-container .site-inner .fs-h4 {
	font-size: var(--font-size-h4-mobile);
	line-height: 1.4;
}

@media (min-width: 992px) {
	.site-inner h4,
	.site-container .site-inner .fs-h4 {
		font-size: var(--font-size-h4);
		line-height: 1.25;
	}	
}

.site-inner h5,
.site-container .site-inner .fs-h5 {
	font-size: var(--font-size-h5-mobile);
	line-height: 1.45;
}

@media (min-width: 992px) {
	.site-inner h5,
	.site-container .site-inner .fs-h5 {
		font-size: var(--font-size-h5);
		line-height: 1.23;
	}	
}

.site-inner h6,
.site-container .site-inner .fs-h6 {
	font-size: var(--font-size-h6-mobile);
	line-height: 1.5;
}

@media (min-width: 992px) {
	.site-inner h6,
	.site-container .site-inner .fs-h6 {
		font-size: var(--font-size-h6);
		line-height: 1.6;
	}	
}

.text-lg {
	font-size: var(--font-size-lg-mobile);
	line-height: 1.4;
}

@media (min-width: 992px) {
	.text-lg {
		font-size: var(--font-size-lg);
		line-height: 1.23;
	}
}

.text-md {
	font-size: var(--font-size-md-mobile);
	line-height: 1.45;
}

@media (min-width: 992px) {
	.text-md {
		font-size: var(--font-size-md);
		line-height: 1.6;
	}
}

.has-text-align-center {
    text-align: center;
}

p {
	line-height: 1.5;
	font-size: var(--font-size-base);
}

.entry-content a:not(.btn),
.btn-link {
	border-bottom: none;
	color: var(--primary-500-blue);
	text-transform: unset;
}

.entry-content a:not(.btn):hover,
.entry-content a:not(.btn):focus,
.btn-link:hover,
.btn-link:focus {
	color: var(--primary-600);
}	

@media (hover: hover) {
	.entry-content a:not(.btn):hover,
	.btn-link:hover {
		text-decoration: underline;
	}
}

.entry-content a:not(.btn):active,
.btn-link:active {
	color: var(--primary-900);
}

.entry-content ol, 
.entry-content ul {
	padding-left: 2.25rem;
	font-size: var(--font-size-base);
}

.wp-block-image {
	margin: 1.5rem 0;
}

.wp-block-image img {
	border: none;
	width: 100%;
}

.wp-block-image figcaption,
.wp-block-table figcaption {
	font-size: var(--font-size-sm);
	margin-top: 0.25rem;
}

table,
.wp-block-table table, 
table.tablepress {
	border: none;
	border-radius: 1rem;
	overflow: hidden;
	min-width: 100%;
	border-collapse: collapse;
}

table td,
table th,
.tablepress thead th,
.tablepress tbody td,
.tablepress .show-hide td {
	padding: 0.75rem;
}

table tr td,
.tablepress tbody tr td {
	border: none;
	font-size: 1rem;
}

table tr:nth-child(even) td,
.tablepress tbody tr:nth-child(even) td {
	background-color: var(--neutral-50);
}

table thead th,
table tfoot td,
.tablepress thead tr th,
.tablepress thead tr td {
	background-color: var(--secondary-200);
	font-weight: 600;
}

.tablepress .show-hide {
	background-color: var(--secondary-200);
}

button,
.btn {
	cursor: pointer;
}

.btn-solid,
.btn-solid-white {
	--btn-bg-color: var(--primary-500-blue);
	--btn-text-color: #fff;
	--btn-border-color: var(--primary-500-blue);
	--btn-bg-color-hover: var(--primary-600);
	--btn-text-color-hover: #fff;
	--btn-border-color-hover: var(--primary-600);
	--btn-bg-color-pressed: var(--primary-900);
	--btn-text-color-pressed: #fff;
	--btn-border-color-pressed: var(--primary-900);
	--btn-bg-color-disabled: var(--neutral-400);
	--btn-text-color-disabled: #fff;
	--btn-border-color-disabled: var(--neutral-400);
	--btn-border-width: 1px;

	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--btn-bg-color);
	color: var(--btn-text-color);
	border: var(--btn-border-width) solid var(--btn-border-color);
	border-radius: 8px;
	padding: 1rem 2rem;
	font-weight: 600;
	min-width: 52px;
	min-height: 54px;
}

@media (max-width: 450px) {
	.btn-solid,
	.btn-solid-white {
		display: flex;
	}
}

.btn-solid:hover,
.btn-solid:focus,
.btn-solid-white:hover,
.btn-solid-white:focus {
	background-color: var(--btn-bg-color-hover);
	color: var(--btn-text-color-hover);
	border-color: var(--btn-border-color-hover);
}

.btn-solid:active,
.btn-solid-white:active {
	background-color: var(--btn-bg-color-pressed);
	color: var(--btn-text-color-pressed);
	border-color: var(--btn-border-color-pressed);
}

.btn-solid:disabled,
.btn-solid-white:disabled {
	background-color: var(--btn-bg-color-disabled);
	color: var(--btn-text-color-disabled);
	border-color: var(--btn-border-color-disabled);
}

.btn-solid-white {
	--btn-bg-color: #fff;
	--btn-text-color: var(--primary-500-blue);
	--btn-border-color: var(--secondary-300-blue);
	--btn-bg-color-hover: #fff;
	--btn-text-color-hover: var(--primary-500-blue);
	--btn-border-color-hover: var(--secondary-400);
	--btn-bg-color-pressed: #fff;
	--btn-text-color-pressed: var(--primary-500-blue);
	--btn-border-color-pressed: var(--secondary-500);
	--btn-bg-color-disabled: #fff;
	--btn-text-color-disabled: var(--secondary-500);
	--btn-border-color-disabled: var(--secondary-200);
}

.btn.btn-arrow {
	position: relative;
}

.btn.btn-arrow::after {
	content: "";
	-webkit-mask-image: url(/wp-content/themes/genesis-lt-v2/images/arrow-right-white-new.svg);
	mask-image: url(/wp-content/themes/genesis-lt-v2/images/arrow-right-white-new.svg);
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-position: center;
	background: var(--btn-text-color);
	height: 9px;
	width: 12px;
	min-width: 12px;
	display: inline-block;
	transition: background 0.3s ease;
	margin-left: 0.35em;
}

.btn.btn-arrow:empty::after {
	margin-left: 0;
}

.btn.btn-arrow:hover::after,
.btn.btn-arrow:focus::after {
  	background: var(--btn-text-color-hover);
}

.btn.btn-arrow:active::after {
  	background: var(--btn-text-color-pressed);
}

.btn.btn-arrow:disabled::after {
  	background: var(--btn-text-color-disabled);
}

.btn.btn-sm {
	padding: 1rem;
}

legend {
    font-weight: var(--font-weight-headings);
}

fieldset {
    border: none;
    padding: 0;
	margin: 0;
}

input[type="radio"] {
	accent-color: var(--secondary-500);
	background: transparent;
	height: 18px;
	width: 18px;
}

input[type="radio"]:checked,
input[type="radio"]:hover {
	accent-color: var(--primary-500-blue);
}

input[type="radio"]:disabled {
	accent-color: var(--neutral-400);
}

.radio-wrapper input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-wrapper label {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    display: inline-block;
    user-select: none;
}

.radio-wrapper label::before {
	--accent-color: var(--secondary-500);

	content: "";
	position: absolute;
	left: 0;
	top: 0.15em;
	width: 18px;
	height: 18px;
	border: 2px solid var(--accent-color);
	border-radius: 50%;
	background: transparent;
	transition: all 0.3s ease;
}

.radio-wrapper input[type="radio"]:checked + label::before {
	--accent-color: var(--primary-500-blue);

	background: radial-gradient(
		circle,
		var(--accent-color) calc(100% - 5px),
		#ffffff calc(100% - 5px)
	);
}

.radio-wrapper:hover input[type="radio"]:not(:disabled) + label::before {
	border-color: var(--primary-500-blue);
}

.radio-wrapper input[type="radio"]:disabled + label {
	color: var(--neutral-400);
}

.radio-wrapper input[type="radio"]:disabled + label::before {
	--accent-color: var(--neutral-400);
}

/* Single blog post specific styling */
body.single-post .site-header {
	margin-bottom: 0;
}

body.single-post .site-header > .wrap {
	width: var(--wrap-width);
	max-width: 100%;
	padding-inline: var(--wrap-padding-x);
}

.entry-hero {
	--hero-bg-color: var(--secondary-900-blue);

	height: 250px;
	background-color: var(--hero-bg-color);
	margin-top: 50px;
}

@media (min-width: 811px) {
	.entry-hero {
		height: 384px;
		margin-top: 0;
	}
}

.entry-hero img {
	max-height: 100%;
	width: auto;
}

.entry-hero.no-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content-sidebar-wrap {
	--margin-top: 2rem;
	--gap-x: 5.5rem;
	
	width: var(--wrap-width);
    max-width: 100%;
	margin-top: var(--margin-top);
	gap: 2.5rem var(--gap-x);
	align-items: start;
	padding: var(--wrap-padding-x);
	padding-bottom: 0;
}

@media (min-width: 768px) {
	.content-sidebar-wrap {
		--margin-top: 3.5rem;
	}
}

.content-sidebar-wrap .sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	order: -1;
	margin: 3rem 0;
	width: 100%;
}

@media (min-width: 811px) {
	.content-sidebar-wrap .sidebar {
		top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--lt-header-height) + 1rem);
		margin: 0;
		width: 320px;
	}
}

.content-sidebar-wrap .content {
	position: relative;
	margin: 0;
}

@media (min-width: 811px) {
	.content-sidebar-wrap .sidebar,
	.content-sidebar-wrap .content {
		padding-bottom: 3.5rem;
	}

	.content-sidebar-wrap .content::before {
		content: "";
		position: absolute;
		top: calc(var(--margin-top) * -1);
		left: calc(calc(var(--gap-x) / 2) * -1);
		height: calc(100% + var(--margin-top));
		width: 1px;
		background-color: var(--neutral-300);
	}
}

.content-sidebar-wrap .sidebar > * {
	max-width: 100%;
}

.entry .entry-title {
	margin-bottom: 1.5rem;
}

.entry .entry-subtitle {
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.post-meta__info {
	margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
	.post-meta__info {
		margin-bottom: 2.5rem;
	}
}

.post-meta__info .delimiter {
	color: var(--neutral-400);
}

.post-authors {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 0.75rem 1rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.post-authors {
		gap: 1rem 3rem;
		margin-bottom: 3.5rem;
	}	
}

.post-authors__author,
.author-box .author-box__header {
	display: flex;
    gap: 10px;
    align-items: center;
}

.post-authors__author p {
	margin-bottom: 0;
}

.post-authors__author img,
.author-box .author-box__header > img {
    border-radius: 50%;
    width: 40px;
	height: 40px;
	object-fit: cover;
	margin: 0;
}

.post-authors__author-name,
.author-box__header-name {
	position: relative;
	margin-bottom: 0;
}

.post-authors__author-name a,
.author-box__header-name a {
	text-decoration: underline;
	border: none;
	font-weight: var(--font-weight-headings);
}

@media (hover: hover) {
	.post-authors__author-name a:hover,
	.author-box__header-name a:hover {
		color: var(--primary-500-blue);
	}
}

.hover-card_outer {
	position: absolute;
	z-index: 2;
	width: 280px;
	bottom: 0;
	transform: translateY(100%);
	padding-top: 9px;
	display: none;
}

.post-authors__author-name:hover .hover-card_outer {
	display: block;
}

.hover-card_outer:before {
	content: '';
	position: absolute;
	width: 18px;
	height: 9px;
	display: block;
	background-image: url(../images/tail.svg);
	left: 12px;
	top: 0;
}

.hover-card {
	padding: 12px;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0px 12px 24px 0px rgba(14, 18, 27, 0.06), 0px 1px 2px 0px rgba(14, 18, 27, 0.03);
}

.hover-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hover-card__avatar img {
	width: 46px;
	height: auto;
	border-radius: 50%;
}

.hover-card__bio p,
.hover-card__label {
	font-size: 0.75rem;
	line-height: 1.33;
}

.hover-card__bio p {
	margin-bottom: 1rem;
}

.hover-card__name {
	font-weight: var(--font-weight-headings);
	color: var(--neutral-800);
}

.hover-card__header {
	margin-bottom: 1rem;
}

a.hover-card__link {
	font-size: 0.75rem;
	line-height: 1.33;
	color: var(--neutral-700);
	text-decoration: none;
	font-weight: normal;
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
}

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

.hover-card__links {
	gap: 12px;
	display: flex;
	align-items: center;
}

.full_bio_link:before,
.editorial_guidelines_link:before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	background-position: center;
	background-repeat: no-repeat;
}

.full_bio_link:before {
	background-image: url(../images/external-link-blue.svg);
}

.editorial_guidelines_link:before {
	background-image: url(../images/book-blue.svg);
}

.entry-cta {
	opacity: 1;
	visibility: visible;
	border-radius: 12px;
	padding: 0;
	border: none;
	overflow: hidden;
}

@media (max-width: 810px) {
	.entry-cta.hide-on-mobile {
		display: none;
	}
}

.entry-cta--top {
	margin: 1.5rem 0;
	max-width: 100%;
}

@media (min-width: 811px) {
	.entry-cta--top {
		display: none;
	}

	.entry-cta.sticky .entry-cta__image,
	.entry-cta.sticky .entry-cta__content p {
		display: none;
	}
}

.entry-cta__image {
	position: relative;
	padding: 0.75rem 2.5rem 0;
	background-color: var(--secondary-300-blue);
	height: 100px;
}

.entry-cta__image img {
	max-height: calc(100px - 0.75rem);
	object-fit: cover;
	object-position: top center;
}

.entry-cta.has-image .entry-cta__image {
	padding: 1.25rem 2.5rem 0;
	height: 160px;
}

.entry-cta.has-image .entry-cta__image-wrapper {
	position: relative;
	isolation: isolate;
}

.entry-cta.has-image .entry-cta__image-wrapper::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	left: -6px;
	top: 8px;
	background-color: var(--secondary-400);
	border-radius: 8px 0 0 0;
}

.entry-cta.has-image .entry-cta__image img {
	max-height: calc(160px - 1.25rem);
	min-height: calc(160px - 1.25rem);
	border-radius: 8px 8px 0 0;
	border: 1px solid var(--neutral-400);
	border-bottom: none;
	width: 100%;
}

.entry-cta__heading {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.entry-cta__content {
	position: relative;
	z-index: 2;
	background-color: var(--secondary-200);
	padding: 1rem;
	text-align: left;
}

@media (min-width: 811px) {
	.entry-cta.sticky .entry-cta__content {
		padding: 0;
	}
}

.entry-cta__content p:last-of-type {
	margin-bottom: 1rem;
} 

.entry-toc {
	display: block;
	margin: 0;
}

@media (max-width: 810px) {
	.entry-toc {
		position: fixed;
		top: calc(76px + var(--wp-admin--admin-bar--height, 0px));
		z-index: 99;
		left: 0;
		width: 100%;
		background-color: var(--neutral-50);
		padding: 0 0.75em;
		max-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - 76px);
		overflow: auto;
	}	
}

.entry-toc button {
	all: unset;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 2rem;
	padding: 0.75rem 0;
	cursor: pointer;
}

.entry-toc button h2 {
	margin: 0;
}

.entry-toc.active button svg {
	transform: rotate(180deg);
}

.entry-toc ul {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

.entry-toc.active ul {
	display: block;
}

@media (max-width: 810px) {
	.entry-toc ul {
		border-top: 1px solid var(--secondary-300-blue);
		padding: 0.5rem 0 1rem;	
	}
}

.entry-toc li {
	position: relative;
	display: flex;
	align-items: start;
	gap: 0.5rem;
}

@media (min-width: 811px) {
	.entry-toc li::before {
		content: "•";
		position: absolute;
		top: 0.6rem;
		left: 0.75rem;
	}
		
	.entry-toc li.type_h3::before {
		content: "◦";
		left: 1.5rem;
	}
}

.entry-toc a {
	display: block;
	border: none;
	padding: 0.75rem 0;
	width: 100%;
}

@media (hover: hover) {
	.entry-toc a:hover {
		background-color: var(--neutral-50);
	}	
}

@media (min-width: 811px) {
	.entry-toc li.type_h3 a {
		padding-left: 2.5rem;
	}	
}

.entry-toc a.current {
	font-weight: 600;
}

@media (min-width: 811px) {
	.entry-toc a {
		padding: 0.625rem 0.625rem 0.625rem 1.75rem;
		border-radius: 4px;
	}

	.entry-toc a.current {
		background-color: var(--secondary-200);
	}
}

.entry-related-forms__list {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 0.75rem;
}

.entry-related-forms__item a {
	display: inline-block;
	background-color: var(--secondary-200);
	border-radius: 4px;
	border: none;
	font-weight: 600;
	border: 1px solid var(--neutral-400);
	padding: 0.5rem 0.75rem;
}

.entry-related-forms__item a:hover,
.entry-related-forms__item a:focus {
	color: var(--neutral-800);
	border-color: var(--secondary-500);
	outline: none;
}

.tip {
	margin: 3rem 0;
	padding: 1.5rem;
	border-radius: 8px;
	border: 1px solid var(--secondary-500);
	background-color: var(--secondary-200);
}

.tip strong {
	font-weight: 600;
}

.tip.no_title .header {
	margin-bottom: 0;
}

.tip .header h4 {
	margin-bottom: 0;
	font-weight: 600;
}

.tip.no_title > div {
	display: flex;
	gap: 0.75rem;
	align-items: start;
}

.tip.style-tip svg {
	position: relative;
	top: -0.1em;
	height: 24px;
	width: 24px;
	flex: 0 0 24px;
}

.tip.style-tip:not(.has_title) svg {
	top: -0.25em;
}

.tip.style-tip:not(.has_title) .tip-content > p:only-child {
	font-weight: 600;
}

.tip ul,
.tip ol {
	padding-left: 22px;
}

.tip ul li + li,
.tip ol li + li {
	margin-top: 1em;
}

.entry-content blockquote {
	border-color: var(--primary-500-blue);
	padding-left: 2rem;
}

.entry-content blockquote p {
	font-weight: 600;
}

.faq-item {
	margin: 0;
	padding: 1rem;
	border: none;
	background-color: var(--neutral-50);
	border-radius: 8px;
}

.faq-item + .faq-item {
	margin-top: 1.5rem;
}

.faq-item .header {
	justify-content: space-between;
	padding: 0;
	margin-bottom: 0;
	border: none;
}

.faq-item .header + br {
	display: none;
}

.faq-item .header h2, 
.faq-item .header h3,
.collapsible-section__toggle {
	font-weight: var(--font-weight-headings);
	text-align: left;
}

.faq-item .header .icon-wrapper {
	background: none;
	margin: 0;
}

.faq-item .header svg {
	fill: var(--neutral-700);
}

.faq-content {
	margin-top: 1.5rem;
}

.faq-item.open .header {
	border-bottom: none;
}

.faq-item.open svg {
	transform: rotate(180deg);
}

.author-info .author-info__title {
	font-weight: var(--font-weight-headings);
	margin-bottom: 1rem;
}

.author-info + .author-info {
	margin-top: 2rem;
}

.single-post .author-box {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border: none;
	border-top: 1px solid var(--neutral-300);
	border-radius: 0;
	padding: 1rem;
	text-align: left;
}

.author-box__bio a {
	text-decoration: underline;
    border: none;
    color: inherit;
}

.author-box__links {
	display: flex;
	flex-wrap: wrap;
}

.author-box__links a {
	border-bottom: none;
}

.author-box__links .delimiter {
	margin: 0 0.625rem;
	color: var(--neutral-300);
}

.author-box .author-box__linkedin {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 24px;
	width: 24px;
	flex: 0 0 24px;
	background-color: var(--neutral-500);
	border-radius: 2px;
}

.author-box .author-box__linkedin:hover,
.author-box .author-box__linkedin:focus {
	background-color: var(--neutral-700);
}

.author-box .author-box__linkedin img {
	margin: 0;
	height: 18px;
	width: 18px;
}

.author-box__full-bio {
	display: inline-flex;
	align-items: center;
	color: var(--primary-500-blue);
	font-weight: var(--font-weight-headings);
}

.author-box__full-bio:hover {
	color: var(--primary-600);
}

.author-box__full-bio svg {
	height: 0.85em;
	width: 0.85em;
}

.author-box__full-bio:hover svg {
	color: var(--primary-600);
}

.related-posts {
	padding: 0 0 3rem;
}

@media (min-width: 811px) {
	.related-posts {
		padding: 3.5rem 0;
		border-top: 1px solid var(--neutral-300);
	}	
}

.related-posts__header .related-posts__title {
	font-size: 2.5rem;
	font-weight: var(--font-weight-headings);
	margin-bottom: 1.5rem;
}

.related-posts > .wrap {
	width: var(--wrap-width);
	max-width: 100%;
	margin: 0 auto;
	padding-left: var(--wrap-padding-x);
	padding-right: var(--wrap-padding-x);
}

.related-posts__loop {
	--columns: 1;

	display: grid;
	grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
	gap: 2rem;
}

@media (min-width: 768px) {
	.related-posts__loop {
		--columns: 2;
	}
}

@media (min-width: 992px) {
	.related-posts__loop {
		--columns: 3;
	}
}

.related-posts__entry-thumbnail img {
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
}

.related-posts__entry-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.related-posts__entry-categories a {
	display: inline-block;
	background-color: var(--secondary-200);
	color: var(--primary-500-blue);
	text-transform: uppercase;
	border: none;
	padding: 0.5rem;
	font-size: 0.875rem;
	border-radius: 4px;
	font-weight: var(--font-weight-headings);
}

.related-posts .related-posts__entry-title {
	font-weight: var(--font-weight-headings);
	margin: 0.75rem 0;
}

.related-posts__entry-title a {
	border: none;
}

.related-posts__entry-title a:hover,
.related-posts__entry-title a:focus {
	color: var(--primary-600);
}

.related-posts__entry-author {
	font-weight: var(--font-weight-headings);
	margin-bottom: 0.125rem;
}

.related-posts__entry-meta .delimiter {
	color: var(--neutral-300);
	padding: 0 0.35rem;
}