/* FDS Videothek: Kacheln, Player und Zugangsformular. */

.fds-vt-mediathek {
	margin: 1.5em 0;
}

.fds-vt-rubrik {
	margin: 2em 0 .3em;
	color: #164f9e;
}

.fds-vt-rubrik-text {
	margin: 0 0 1em;
	opacity: .8;
}

.fds-vt-raster {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 22px;
	margin: 1em 0 2.5em;
}

.fds-vt-kachel {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 10px;
	overflow: hidden;
	transition: transform .15s ease;
}

.fds-vt-kachel:hover,
.fds-vt-kachel:focus-visible {
	transform: translateY(-3px);
}

.fds-vt-bild {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background: #dbe3ea;
	border-radius: 10px;
	overflow: hidden;
}

.fds-vt-bild img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fds-vt-platzhalter {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	color: #164f9e;
}

.fds-vt-dauer {
	position: absolute;
	right: 8px;
	bottom: 8px;
	background: rgba(0, 0, 0, .78);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 2px 7px;
	border-radius: 4px;
	font-variant-numeric: tabular-nums;
}

.fds-vt-titel {
	display: block;
	margin-top: 10px;
	font-weight: 600;
	line-height: 1.35;
}

/* Player */
.fds-vt-player {
	margin: 0 0 1.5em;
	background: #000;
	border-radius: 10px;
	overflow: hidden;
}

.fds-vt-player video {
	width: 100%;
	max-height: 78vh;
	display: block;
}

.fds-vt-schutzhinweis {
	background: #fdf3e3;
	border-radius: 8px;
	padding: 14px 16px;
	font-size: .95em;
	margin-top: 1.5em;
}

.fds-vt-zurueck {
	margin-top: 1em;
}

/* Zugangsformular */
.fds-vt-box {
	background: #f6f8fa;
	border-radius: 10px;
	border-top: 4px solid #164f9e;
	padding: 26px 28px;
	margin: 1.5em 0;
}

.fds-vt-box h3 {
	margin-top: 0;
	color: #164f9e;
}

.fds-vt-formular {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: flex-end;
	margin: 1em 0;
}

.fds-vt-formular label {
	flex-basis: 100%;
	font-weight: 600;
}

.fds-vt-formular input[type="text"] {
	flex: 1 1 220px;
	font-size: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 10px 14px;
	border: 1px solid #c6d0da;
	border-radius: 8px;
	background: #fff;
}

.fds-vt-knopf {
	display: inline-block;
	background: #4fa82e;
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
	padding: 11px 22px;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
}

.fds-vt-knopf:hover,
.fds-vt-knopf:focus-visible {
	background: #164f9e;
}

.fds-vt-knopf-hell {
	background: #164f9e;
}

.fds-vt-meldung {
	padding: 12px 16px;
	border-radius: 8px;
	font-weight: 600;
}

.fds-vt-gut {
	background: #e6f4e6;
	color: #205c20;
}

.fds-vt-schlecht {
	background: #fbe9e9;
	color: #8f2b2b;
}

.fds-vt-hinweis {
	font-size: .92em;
	opacity: .85;
}

@media (max-width: 600px) {
	.fds-vt-raster {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 16px;
	}
}

/* Hinweis auf die Mitgliedschaft */
.fds-vt-mitglied {
	background: #eef6ee;
	border-radius: 10px;
	border-left: 4px solid #4fa82e;
	padding: 24px 26px;
	margin: 2.5em 0 1em;
}

.fds-vt-mitglied h3 {
	margin-top: 0;
	color: #164f9e;
}

.fds-vt-mitglied p {
	max-width: 62ch;
}

.fds-vt-textlink {
	display: inline-block;
	margin-left: 10px;
	font-weight: 600;
}
