/*Stilmall för visning av händelser ur församlingens Google-kalender – Mobila enheter.*/
/*Oskar Fornander, augusti 2019*/

body {
	/* font-size: 100%; */
}



div.bergamissionEvent {
	display: grid;
	grid-template-columns: 0.1em 1fr 0.1em;
	grid-template-rows: auto auto auto auto auto;
	grid-template-areas:	". time ."
												". title ."
												". place ."
												". description ."
												". image .";
	grid-gap: 1em;
	grid-row-gap: 0;
	justify-content: start;
}

.bergamissionEventImage { /*Bild som attachment till event*/
	left: 0;
	right: 0;
	margin: auto;
	min-width: 200px;
	aspect-ratio: 1;
	max-width: 300px;
	max-height: 300px;
}
