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

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



div.bergamissionEvent {
	display: grid;

	grid-template-columns: 0.25em 3em auto auto 1fr auto 0.25em;
	grid-template-rows: auto auto;
	grid-template-areas:	". time title place . . ."
												". . description description description image .";
	grid-gap: 1em;
	grid-row-gap: 0;
	justify-content: start;
}


.bergamissionEventImage { /*Bild som attachment till event*/
	max-width: 100%;
	max-height: 250px;
	aspect-ratio: 1;
	min-width: 200px;
}
