/* =========================================================
   mkz Kurse – CSS
   Andreas Stämpfli
   Bereinigt & strukturiert 2026
   ========================================================= */

/* =========================================================
   BASIS
   ========================================================= */

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 14px;
	background: none;
}

/* =========================================================
   KURSLISTE (Übersicht) – 2026
   ========================================================= */

/* Kursliste Container */
.kurs-liste {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Einzelner Kurs */
.kurs-eintrag {
	border: 1px dotted #6ed1c4;
	padding: 10px 12px;
	border-radius: 4px;
	background-color: #ffffff;
}

/* Box um jeden Kurs  */
.kurs-info {
	border: 1px dotted #6ed1c4;
	padding: 10px 12px;
	margin: 8px 0;
	border-radius: 4px;
	background-color: #ffffff;
}

/* Titel */
.kurs-titel {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 4px;
}

.kurs-titel a {
	color: #0052a1;
	text-decoration: none;
}

.kurs-titel a:hover {
	text-decoration: underline;
}

.kurs-datum,
.kurs-nummer {
	font-size: 19px;
}

.kurs-datum {
	color: #222;
	font-weight: 700;
}

.kurs-nummer {
	color: #222;
}

.kurs-dozent {
	font-size: 19px;
}

.kurs-kosten {
	font-size: 19px;
}

/* Button */
.kurs-button {
	margin-top: 6px;
}

.btn-kurzinfos {
	display: inline-block;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	background-color: #0052a1;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.btn-kurzinfos:hover {
	background-color: #4fd1c5;
	color: #ffffff;
}

/* =========================================================
   KURSDETAILS – 2026
   ========================================================= */

.kurs-detail {
	margin-top: 15px;
	font-size: 19px;
}

.kurs-detail-zeile {
	padding: 8px 0;
	border-bottom: 1px dotted #ccc;
}

.kurs-label {
	font-size: 19px;
	font-weight: 700;
	color: #0052a1;
	margin-bottom: 2px;
}

.kurs-wert {
	font-size: 19px;
	color: #000;
}

/* Status */
.ausgebucht {
	color: #b00020;
	font-weight: 600;
}

.frei {
	color: #007a3d;
	font-weight: 600;
}

/* =========================================================
   KURSINHALTE – 2026
   ========================================================= */

.kurs-content-header {
	background-color: #1e5aa8;
	padding-bottom: 20px;
	padding-top: 20px;
	padding-left: 10px;
	text-align: left;
}

.kurs-content-headertext {
	color: #ffffff;
	font-size: 19px;
	line-height: 20px;
	text-align: left;
}

.kurs-content {
	margin-top: 20px;
	font-size: 19px;
}

.kurs-content-block {
	padding: 10px 0;
	border-bottom: 1px dotted #ccc;
}

.kurs-content-titel {
	font-size: 19px;
	font-weight: 700;
	color: #0052a1;
	margin-bottom: 4px;
}

.kurs-content-text {
	font-size: 19px;
	color: #000;
	line-height: 1.5;
}

.kurs-content-text small {
	font-size: 19px;
	color: #555;
}

/* =========================================================
   BILDER
   ========================================================= */

/* Das Bild  */
#Titelbild {
	width: 227px;
	height: 227px;
	object-fit: cover; /* skaliert & schneidet */
	display: block;
	margin: 0 auto;
	display: inline-block;
}

/* Titelbild-Container */
#Titelbilder {
	width: 100%;
	margin-bottom: 25px;
	text-align: left;
	clear: both;
}

@media screen and (min-width: 768px) {
	#Titelbilder {
		float: right;
		width: auto;
		background: white;
		padding: 0 0 1rem 1rem;
		margin-bottom: 0;
	}
}

/* =========================================================
   SONSTIGES
   ========================================================= */

.feinelinie {
	border-bottom: 1px solid #0052a1;
}

/* =========================================================
   FORMULAR / ANMELDUNG – NEU 2026
   ========================================================= */
.kurs-form {
	max-width: 600px;
	margin: 0 auto;
}

.form-block {
	margin-bottom: 20px;
	padding: 12px;
	border: 1px dotted #ccc;
}

legend {
	font-weight: 700;
	color: #0052a1;
	padding: 0 6px;
	font-size: 19px;
}

label {
	display: block;
	margin-bottom: 12px;
	font-size: 19px;
}

input,
select {
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
	font-size: 19px;
	margin-top: 4px;
}

.radio,
.checkbox {
	display: block;
	margin-bottom: 8px;
}

.form-actions {
	margin-top: 20px;
	text-align: left;
}
