.blog_images_with_buttons {
	display: flex;
	margin-bottom: 50px;
	margin-top: 50px;
	gap: 30px;
}

.image_with_button {
	flex: 1;
	max-width: calc(50% - 15px);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.image_with_button__image {
	width: 500px;
	max-width: 100%;
	margin-bottom: 25px;
}

.image_with_button__button_link {
	border-radius: 7px;
	background: var(--blue);
	color: white !important;
	padding: 11px 18px;
	font-size: 15px;
	line-height: 22px;
	font-weight: 700;
	display: inline-block;
}

@media (max-width: 767px) {
	.blog_images_with_buttons {
		flex-direction: column;
		gap: 50px;
	}

	.image_with_button {
		max-width: 100%;
	}
}
