.block-link__wrapper {
    background-color: var(--white100);
}

.block-link__wrapper:hover {
	box-shadow: 0 0 20px 0 rgba(67, 112, 183, 0.3);
	transition: all .2s ease;
}

.block_link__text_container {
    padding: 20px; 
    background-color: var(--white100);
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow-wrap: anywhere;
}

.block_link_h3 {
    color: var(--text);
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1;
}

.block_link_p {
    color: var(--text-gray);
    font-family: var(--font-family);
    font-size: 1.125rem;
    font-weight: 400;
}

.block_link_a:hover {
    text-decoration: none !important;
}

.block_link__icon {
    max-width: 60px;    
    max-height: 60px;  
    border-radius: 10px;
}

.block_link__left_img__icon {
    max-width: 80px; 
    max-height: 80px;
    position: absolute; 
    left: 0; 
    top: 0; 
    border-radius: 10px;
}

@media screen and (max-width: 765px) {
	.block_link_h3 {
		font-size: 1.125rem !important;
		overflow-wrap: anywhere;
	}
	.block_link_p {
		font-size: 0.8125rem !important;
	}
}