/*
Theme Name: astra_child
Template: astra
*/

@media screen and (min-width: 768px) 
{
	.screen-layout-custom
	{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
}

@media screen and (max-width: 767px) 
{
	.screen-layout-custom
	{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}
}