.content
{
	display: grid;
	gap: var(--gap);
	padding: var(--gap);

	grid-template-columns: 45% 1fr;

	grid-template-areas:
		"image title"
		"image icons"
		"button icons"
		"text text";
}

/* Areas */
.content_image
{
	grid-area: image;
	min-height: 375px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
}

.content_title
{
	grid-area: title;
}

.content_icons
{
	grid-area: icons;
}

.content_icons img
{
	height: 45px;
}

.content_button
{
	grid-area: button;
	z-index: 10;
}

.content_text
{
	grid-area: text;
	line-height: 1.6;
}

.content_title h1
{
	margin: 0;
}

.content_icons ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

.content_icons li
{
	margin-top: 10px;
	display: flex;
}

.content_button
{
	text-align: center;
}

@media (min-width: 992px)
{
	.content
	{
		grid-template-columns: 300px 1fr;
		align-items: start;

		grid-template-areas:
			"image title"
			"image text"
			"image icons"
			"button icons";

		width: 90vw;
		margin: 0 auto;
	}

	#protein .content,
	#chocolate .content
	{
		grid-template-areas:
			"image title"
			"image text"
			"button icons";
	}

	.content_button
	{
		text-align: center;
	}

	.content_text
	{
		max-width: 900px;
	}

	.content_icons ul
	{
		display: grid;
		column-gap: 25px;
		row-gap: 5px;
		max-height: 110px;
	}
}

@media (min-width: 601px) and (max-width: 992px)
{
	.content_image
	{

		aspect-ratio: 0.75;
	}
}


@media (max-width: 800px)
{
	.content_title
	{
		text-align: center;
	}
}

