.wp-block-my-plugin-custom-flex-block.custom-flex-block .flex-container, .custom-flex-block .flex-container {
	background-color: var(--background-color);
	color: var(--text-color);
	padding: var(--padding);
	display: grid;
	/*grid-template-columns: 1fr 3fr;*/
	grid-template-columns: auto 3fr;
	grid-template-rows: 1em auto;
    grid-template-areas:
		"bio-img bio-tit"
		"bio-img bio-desc";
	row-gap: var(--row-gap);
	column-gap: var(--column-gap);
	align-items: start;
	
	line-height: 28px;
	line-height: 1.5em;
    font-size: 18px;
    /*color: #222222;*/
    font-weight: 400;
	padding: 0;
}

.custom-flex-block button {
	
	grid-area: bio-img;
	margin: 0;
}

.wp-block-my-plugin-custom-flex-block.custom-flex-block.right .flex-container,
.custom-flex-block.right .flex-container {
	    grid-template-areas:
		"bio-tit bio-img"
		"bio-desc bio-img";
		row-gap: var(--row-gap);
		/*grid-template-columns: 3fr 1fr;*/
		grid-template-columns: 3fr auto;
}

.wp-block-my-plugin-custom-flex-block.custom-flex-block img, .custom-flex-block img {
    grid-area: bio-img;
    margin: 0;
    max-width: 100%;
    /* height: auto; */
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.wp-block-my-plugin-custom-flex-block.custom-flex-block .bio-heading, .custom-flex-block .bio-heading {
    grid-area: bio-tit;
    margin: 0;
    font-size: 18pt;
    font-weight: 700;
}

.wp-block-my-plugin-custom-flex-block.custom-flex-block .bio-description, .custom-flex-block .bio-description {
	grid-area: bio-desc;
	font-size: .875rem;
    line-height: 1.25rem;
	margin: 0;
	
	font-size: 16px;
    line-height: 26px;
}

@media (max-width: 500px) {
	
	.wp-block-my-plugin-custom-flex-block.custom-flex-block .flex-container, .wp-block-my-plugin-custom-flex-block.custom-flex-block.right .flex-container,
	.custom-flex-block .flex-container, .custom-flex-block.right .flex-container {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(1em, auto) auto;
		grid-template-areas:
			"bio-tit"
			"bio-img"
			"bio-desc";
	}
}

/*custom li edit styles not from this block! */
ul.key-insight-section {
	/*margin: 32px 0;*/
	margin: 26px 0 32px;
	display: flex;
    flex-direction: column;
    gap: 30px;
	
	list-style: none;
    padding-left: 23px;
}

ul.key-insight-section li {
	font-size: 18px;
	font-weight: 600;
	color: #444;
	line-height: 28px;
	position: relative;
	list-style: none;
}

ul.key-insight-section li::before {
	content: '';
    position: absolute;
    background: #444;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    top: 10px;
    left: -22px;
}
