/* Ringelbach Hexen - Anstehende Termine */

.rh-termine-liste {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rh-termin {
	display: grid;
	grid-template-columns: 180px 1fr;
	column-gap: 15px;
	align-items: start;
	padding: 12px 0;
	border-bottom: 1px solid #e5e5e5;
}

.rh-termin:last-child {
	border-bottom: none;
}

.rh-termin-datum {
	background: #4c8fb1;
	color: #fff;
	font-weight: bold;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 0.95em;
	text-align: center;
}

.rh-termin-info {
	display: flex;
	flex-direction: column;
}

.rh-termin-titel {
	font-weight: bold;
	font-size: 1.1em;
}

.rh-termin-ort {
	color: #666;
	font-size: 0.9em;
}

.rh-termin-beschreibung {
	margin: 5px 0 0;
}

.rh-termine-weitere,
.rh-termine-archiv {
	margin-top: 20px;
}

.rh-termine-weitere summary,
.rh-termine-archiv summary {
	cursor: pointer;
	font-weight: bold;
	color: #4c8fb1;
	padding: 8px 0;
}

.rh-termine-weitere summary:hover,
.rh-termine-archiv summary:hover {
	color: #3d7591;
}

.rh-termine-weitere .rh-termine-liste,
.rh-termine-archiv .rh-termine-liste {
	margin-top: 5px;
}

.rh-termine-archiv .rh-termine-liste {
	opacity: 0.85;
}

.rh-termine-archiv .rh-termin-datum {
	background: #999;
}

@media screen and (max-width: 550px) {
	.rh-termin {
		grid-template-columns: 1fr;
		row-gap: 6px;
	}

	.rh-termin-datum {
		display: inline-block;
		width: auto;
	}
}
