.wp-block-artifex-blocks-a-more.artifex-blocks:not(.block-editor-block-list__block) {
	position: relative;
}

.wp-block-artifex-blocks-a-more.artifex-blocks:not(.block-editor-block-list__block) .artifex-blocks__content {
	position: relative;
	overflow: hidden;
	max-height: 300px;
	transition: max-height 280ms ease;
}

.wp-block-artifex-blocks-a-more.artifex-blocks:not(.block-editor-block-list__block).is-expanded .artifex-blocks__content {
	max-height: 10000px;
}

.wp-block-artifex-blocks-a-more.artifex-blocks:not(.block-editor-block-list__block) .artifex-blocks__content::before {
	content: '';
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg,hsla(0,0%,100%,0) 70%,rgba(11, 17, 0, .8));
	transition: opacity 200ms ease;
}

.wp-block-artifex-blocks-a-more.artifex-blocks:not(.block-editor-block-list__block).is-expanded .artifex-blocks__content::before {
	opacity: 0;
}

.wp-block-artifex-blocks-a-more.artifex-blocks:not(.block-editor-block-list__block) .artifex-blocks__button {
	display: block;
	margin: 1rem auto 0;
	padding: 0.75rem 1.5rem;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	color: #222;
	background: #fff;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.08 );
}

.wp-block-artifex-blocks-a-more.artifex-blocks:not(.block-editor-block-list__block) .artifex-blocks__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

@media (max-width: 768px){
	.wp-block-artifex-blocks-a-more.artifex-blocks:not(.block-editor-block-list__block) .artifex-blocks__content {
		max-height: 650px;
	}
}