/* =========================================================
   SZENENINFORMATIONEN ÜBER DEM THREAD
========================================================= */

.fire_szinfo {
	position: relative;

	width: 100%;
	margin: 18px 0 24px !important;
	padding: 0;

	box-sizing: border-box;

	overflow: hidden;

	background: var(--owlh-surface-raised);
	border: 1px solid var(--owlh-border-soft);
	box-shadow: 0 5px 16px var(--owlh-shadow);

	color: var(--owlh-text);
	font-size: 12px;
	line-height: 1.7;

	text-align: left;
}


/* kleine Kennzeichnung oben */

.fire_szinfo::before {
	content: "Szeneninformationen";

	display: block;

	padding: 9px 18px 8px;

	background: var(--owlh-surface-soft);
	border-bottom: 1px solid var(--owlh-border-soft);

	color: var(--owlh-accent);

	font-size: 8px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .14em;

	text-transform: uppercase;
}


/* =========================================================
   SZENENTITEL
========================================================= */

.fire_szinfo > name {
	position: relative;

	margin: 0;
	padding: 18px 20px 13px;

	display: block;

	color: var(--owlh-heading);

	font-family: var(--owlh-font-serif, Georgia, "Times New Roman", serif);
	font-size: 23px;
	font-weight: normal;
	font-style: italic;
	line-height: 1.15;
}


.fire_szinfo > name::after {
	content: "";

	position: absolute;
	left: 20px;
	bottom: 5px;

	width: 48px;
	height: 1px;

	background: var(--owlh-accent);
}


/* das <br> direkt hinter dem Titel brauchen wir optisch nicht */

.fire_szinfo > name + br {
	display: none;
}


/* =========================================================
   INFODATEN
========================================================= */

.fire_szinfo > div:first-of-type {
	width: auto !important;

	margin: 0 20px;
	padding: 13px 15px !important;

	box-sizing: border-box;

	background: var(--owlh-surface);
	border: 1px solid var(--owlh-border-soft);

	color: var(--owlh-text-soft);

	font-size: 12px;
	line-height: 2;

	text-align: left !important;
}


/* Teilnehmer etwas hervorheben */

.fire_szinfo > div:first-of-type a {
	margin: 1px 2px;
	padding: 2px 6px;

	display: inline-block;

	background: var(--owlh-surface-soft);
	border: 1px solid var(--owlh-border);

	color: var(--owlh-accent);

	font-size: 11px;
	line-height: 1.35;

	text-decoration: none;
}


.fire_szinfo > div:first-of-type a:hover {
	background: var(--owlh-accent-soft);
	border-color: var(--owlh-border-strong);

	color: var(--owlh-accent-hover);

	text-decoration: none;
}


/* =========================================================
   BUTTONBEREICH
========================================================= */

.fire_szinfo > div:last-of-type {
	margin: 16px 20px 0 !important;
	padding: 13px 0 18px;

	display: flex !important;
	align-items: center;
	flex-direction: row !important;
	flex-wrap: wrap;
	gap: 7px;

	border-top: 1px solid var(--owlh-border-soft);
}


.fire_szinfo > div:last-of-type > div {
	margin: 0;
	padding: 0;
}


/* Buttons */

.fire_szinfo .button {
	min-height: 32px;

	margin: 0 !important;
	padding: 7px 11px !important;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	box-sizing: border-box;

	background: var(--owlh-surface-soft) !important;
	border: 1px solid var(--owlh-border) !important;
	border-radius: var(--owlh-radius) !important;

	color: var(--owlh-text-soft) !important;

	font-family: var(--owlh-font-body);
	font-size: 9px !important;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .07em;

	text-decoration: none !important;
	text-transform: uppercase;
}


.fire_szinfo .button:hover {
	background: var(--owlh-accent-soft) !important;
	border-color: var(--owlh-border-strong) !important;

	color: var(--owlh-accent-hover) !important;
}


/* Archivieren etwas stärker markieren */

.fire_szinfo > div:last-of-type > div:last-child .button {
	border-color: var(--owlh-accent-soft) !important;
	color: var(--owlh-accent) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

	.fire_szinfo {
		margin-bottom: 18px !important;
	}

	.fire_szinfo::before {
		padding-left: 15px;
		padding-right: 15px;
	}

	.fire_szinfo > name {
		padding: 16px 15px 12px;

		font-size: 20px;
	}

	.fire_szinfo > name::after {
		left: 15px;
	}

	.fire_szinfo > div:first-of-type {
		margin-left: 15px;
		margin-right: 15px;
		padding: 12px !important;

		font-size: 12px;
		line-height: 1.9;
	}

	.fire_szinfo > div:last-of-type {
		margin-left: 15px !important;
		margin-right: 15px !important;
	}

}


@media (max-width: 460px) {

	.fire_szinfo > div:last-of-type {
		align-items: stretch;
		flex-direction: column !important;
	}

	.fire_szinfo > div:last-of-type > div,
	.fire_szinfo .button {
		width: 100%;
	}

}