/* Variables */
:root{
	--about-us-content-image-margin: 8px 0 10px;
	--about-us-content-max-width: calc(280px + calc(var(--content-padding) * 2) + calc(var(--content-border-width) * 2));


	--solutions-box-height: 375px;
	--solutions-box-padding: 1rem 0;

	--solutions-content-width: calc(50% - 50px);
	--solutions-content-media-border: var(--solutions-content-media-border-width) solid #93D5FF;
	--solutions-content-media-border-width: 2px;

	--solutions-request-demo-box-margin: 2.5rem;
}


/* Actual CSS Code */
#other_features_details > article{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--page-body-max-width);
	min-height: var(--solutions-box-height);
	width: var(--page-body-width);
	margin-left: auto;
	margin-right: auto;
	padding: var(--solutions-box-padding);

	grid-template-areas: "t" "b";
}

#other_features_details > article > *{
	flex-basis: var(--solutions-content-width);
}

#other_features_details > article > div:first-child {
	grid-area: b;
}

#other_features_details img,
#other_features_details video{
	border: var(--solutions-content-media-border);
	border-radius: var(--global-border-radius);
	height: auto;
	width: calc(100% - 4px);

	grid-area: t;
}

#other_features_details > article:nth-of-type(2n) > *:first-child,
#other_features_details > article:nth-of-type(2n+1) > *:last-child{
	order: -1;
}

.content_container{
	grid-template-columns: repeat(auto-fit, minmax(max(30%, 275px), 1fr));
}


@media (max-width: 1100px) {
	.content_container{
		grid-template-columns: repeat(auto-fit, minmax(max(45%, 275px), 1fr));
	}

	#other_features_details > article {
		display: grid;
		gap: 0;
		grid-template-columns: repeat(auto-fit, minmax(max(40%, 14em), 1fr));
		margin-bottom: 2rem;
	}

	#other_features_details video {
		align-self: center;
		justify-self: center;
	}
}
