﻿.block-author-box {
	--cwp-image: 344px;
	min-height: var(--cwp-image);
	position: relative;
	align-items: center;
}

.block-author-box.cwp-large,
.block-author-box.cwp-large.has-background,
.editor-styles-wrapper .wp-block-cwp-author-box.has-background {
	padding: 0;
}

.block-author-box .block-author-box__inner,
.editor-styles-wrapper .block-author-box .block-author-box__inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 0;
}

.block-author-box__image img {
	width: 100%;
}

.block-author-box__content {
	flex-basis: 0;
	flex-grow: 1;
	text-align: center;
	padding: var(--wp--custom--layout--block-gap);
}

.block-author-box__content > * {
	margin-top: 0;
	margin-bottom: 0;
}
.block-author-box__content > * + * {
	margin-top: var(--wp--custom--layout--block-gap);
}

.block-author-box__title {
	font-family: var(--wp--custom--typography--heading--font-family);
	letter-spacing: var(--wp--custom--typography--heading--letter-spacing);
	text-transform: var(--wp--custom--typography--heading--text-transform);
	font-weight: 700;
	line-height: var(--wp--custom--line-height--small);
	font-size: var(--wp--preset--font-size--big);
}

.block-author-box .social-links {
	margin-bottom: 0;
	justify-content: center;
}

.editor-styles-wrapper .block-author-box a {
	pointer-events: none;
}

@media only screen and (max-width: 760px) {

	.block-author-box .block-author-box__inner,
	.editor-styles-wrapper .block-author-box .block-author-box__inner {
		display: block;
	}

	.block-author-box__content {
		padding-top: var(--wp--custom--layout--block-gap);
	}

}

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

	.block-author-box__image {
		align-self: stretch;
		width: var(--cwp-image);
		height: auto;
	}

	.block-author-box__image figure,
	.block-author-box__image img,
	.editor-styles-wrapper .block-author-box__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.block-author-box__content {
		padding: var(--wp--custom--layout--block-gap-large);
	}


}