/** CSS Für das Termine-Rondell auf der Startseite von evang-wien **/
#block-terminerondellblock {
	.termine-rondell-titel {
		font-weight: bold;
		text-transform: uppercase;
	}
	
	.termine-rondell-body {
		display: flex;
		flex-direction: column;
		gap: 0.9rem 0;
		
		@media(min-width: 992px) {
			flex-direction: row;
			flex-wrap: wrap;
			gap: 0 0.9rem;
		}
		
		
		.termin-rondell-termin {
			box-shadow: 0px 0.19rem 0.4rem #00000029;
			
			@media(min-width: 992px) {
				flex-basis: 15%;
			}
			
			.termin-rondell-termin-image img {
				width: 100%;
				height: auto;
			}
			
			.termin-rondell-termin-name {
				font-weight: bold;
				text-align: center;
				padding: 0.6rem 0.9rem 0.6rem 0;
			}
		}
	}
}