.block-author-box {
	border-radius: var(--wp--custom--border-radius--small);
}
.block-author-box.has-background {
	padding: 40px 24px;
}

.block-author-box__image {
	max-width: 136px;
	margin: 0 auto 1.5rem;
	border-radius: var(--wp--custom--border-radius--small);
	overflow: hidden;
}
.block-author-box__image img {
	width: 100%;
}

.block-author-box__content {
	text-align: center;
}

.block-author-box__title {
	font-family: var(--wp--preset--font-family--permanent-marker);
	line-height: var(--wp--custom--line-height--small);
	margin: 0 0 1rem;
	font-size: clamp(1.1875rem, 2.4vw, 1.5rem);
	font-weight: 400;
}

.block-author-box__content p:not([class]) {
	font-size: var(--wp--preset--font-size--small);
	margin-top: 0;
}

.block-author-box .block-author-box__link {
	color: inherit;
	text-underline-offset: 3px;
}

.block-author-box .block-author-box__link svg {
	margin-left: 10px;
	vertical-align: middle;
	margin-top: -4px;
}

@media only screen and (min-width: 768px) {
	.block-author-box {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 132px;
		align-items: center;
		column-gap: 66px;
	}
	.block-author-box.has-background {
		padding: 34px 40px;
	}
	.block-author-box__content {
		text-align: left;
	}
	.block-author-box__image {
		margin-bottom: 0;
		max-width: 100%;
		order: 1;
	}
}