/* =========================================================
   LISTEN
   EMBERS REMAIN
   ========================================================= */


/* =========================
   GESAMTBEREICH
   ========================= */

.storm-lists {
	width: 92%;

	margin: 30px auto 55px;

	box-sizing: border-box;
}


/* =========================
   SEITENTITEL
   ========================= */

.storm-lists-title {
	position: relative;

	margin: 0 0 28px;
	padding: 0 0 14px;

	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-style: italic;
	font-weight: normal;

	text-align: center;

	color: #d8b49b;

	border-bottom: 1px solid rgba(154,129,105,.35);
}

.storm-lists-title::after {
	content: "◆";

	position: absolute;

	left: 50%;
	bottom: -7px;

	transform: translateX(-50%);

	padding: 0 8px;

	background: #282529;

	color: #c77854;

	font-size: 8px;
	font-style: normal;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.storm-lists-layout {
	display: grid;

	grid-template-columns:
		190px
		minmax(0, 1fr);

	gap: 28px;

	align-items: start;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.storm-lists-menu {
	min-width: 0;

	padding: 18px 0;

	border-top: 1px solid rgba(154,129,105,.38);
	border-bottom: 1px solid rgba(154,129,105,.22);

	box-sizing: border-box;
}


/* =========================
   MENÜÜBERSCHRIFT
   ========================= */

.storm-lists-menu .lists_menu-head {
	margin: 0 14px 12px;

	font-size: 8px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.storm-lists-menu .lists_menu-head a {
	color: #817976 !important;

	text-decoration: none !important;
}


/* =========================
   MENÜLISTE
   ========================= */

.storm-lists-menu .lists_menu-items {
	display: block;

	width: 100%;
}


/* =========================
   EINZELNER MENÜPUNKT
   ========================= */

.storm-lists-menu .lists_menu-item {
	position: relative;

	display: block;

	width: 100%;

	margin: 0;
	padding: 0;

	background: transparent;

	border: 0;
	border-bottom: 1px solid rgba(255,255,255,.035);

	box-sizing: border-box;
}


/* Link */

.storm-lists-menu .lists_menu-item a {
	position: relative;

	display: block;

	width: 100%;

	padding: 11px 14px;

	background: transparent;

	color: #aaa19b !important;

	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
	font-weight: normal;

	text-align: left;
	text-decoration: none !important;

	box-sizing: border-box;

	transition:
		background .2s ease,
		color .2s ease,
		padding-left .2s ease;
}


/* kleine Linie vor dem Namen */

.storm-lists-menu .lists_menu-item a::before {
	content: "";

	display: inline-block;

	width: 10px;
	height: 1px;

	margin: 0 10px 3px 0;

	background: #706865;

	transition:
		width .2s ease,
		background .2s ease;
}


/* Hover */

.storm-lists-menu .lists_menu-item a:hover {
	padding-left: 18px;

	background: rgba(255,255,255,.018);

	color: #d8b49b !important;
}

.storm-lists-menu .lists_menu-item a:hover::before {
	width: 16px;

	background: #c77854;
}


/* =========================================================
   AKTUELLE LISTE
   ========================================================= */

/*
   Falls das Plugin dem aktuellen Menüpunkt irgendwo
   .active gibt, wird er direkt passend dargestellt.
*/

.storm-lists-menu .lists_menu-item.active a,
.storm-lists-menu .lists_menu-item a.active {
	padding-left: 18px;

	background: rgba(154,129,105,.07);

	color: #d8b49b !important;
}

.storm-lists-menu .lists_menu-item.active a::before,
.storm-lists-menu .lists_menu-item a.active::before {
	width: 16px;

	background: #c77854;
}


/* =========================================================
   INHALTSBEREICH
   ========================================================= */

.storm-lists-content {
	min-width: 0;
}


/* Startseitenbeschreibung */

.storm-lists-description {
	position: relative;

	padding: 26px 30px;

	background: #292627;

	border-top: 1px solid rgba(154,129,105,.30);
	border-bottom: 1px solid rgba(154,129,105,.16);

	color: #aaa19b;

	font-size: 11px;
	line-height: 1.7;

	box-sizing: border-box;
}


/* kleine dekorative Linie */

.storm-lists-description::before {
	content: "";

	position: absolute;

	left: 0;
	top: 26px;

	width: 2px;
	height: 34px;

	background: #9a8169;

	opacity: .65;
}


/* Links im Content */

.storm-lists-content a {
	color: #c8ad94;

	text-decoration: none;

	transition: color .18s ease;
}

.storm-lists-content a:hover {
	color: #c98a68;
}


/* =========================================================
   ALTES LISTEN-CSS NEUTRALISIEREN
   ========================================================= */

/*
   Das alte Plugin bringt vermutlich Regeln für
   .lists_menu / .lists_menu-item mit.
   Innerhalb unseres neuen Wrappers nehmen wir ihnen
   vorsichtshalber Breiten, Floats etc. weg.
*/

.storm-lists-menu .lists_menu,
.storm-lists-menu .lists_menu-items,
.storm-lists-menu .lists_menu-item {
	float: none !important;

	width: 100% !important;
	max-width: none !important;

	box-sizing: border-box;
}

.storm-lists-menu .lists_menu-item {
	height: auto !important;
}


/* Buttons oder Hintergründe aus alten Styles entfernen */

.storm-lists-menu .lists_menu-item a {
	border: 0 !important;
	border-radius: 0 !important;

	box-shadow: none !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media screen and (max-width: 850px) {

	.storm-lists {
		width: 95%;
	}

	.storm-lists-layout {
		grid-template-columns:
			160px
			minmax(0, 1fr);

		gap: 18px;
	}

}


@media screen and (max-width: 650px) {

	.storm-lists-layout {
		display: block;
	}

	.storm-lists-menu {
		margin-bottom: 22px;
	}

	.storm-lists-menu .lists_menu-items {
		display: flex;

		flex-wrap: wrap;

		gap: 4px;
	}

	.storm-lists-menu .lists_menu-item {
		width: auto !important;

		border: 0;
	}

	.storm-lists-menu .lists_menu-item a {
		width: auto;

		padding: 8px 10px;

		border: 1px solid rgba(154,129,105,.15) !important;
	}

	.storm-lists-menu .lists_menu-item a:hover {
		padding-left: 10px;
	}

	.storm-lists-menu .lists_menu-item a::before {
		display: none;
	}

}

/* =========================================================
   LISTEN – DETAILSEITE
   ========================================================= */

.storm-lists-content-head {
	margin: 0 0 14px;

	padding: 0 0 10px;

	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	font-weight: normal;

	color: #d8b49b;

	border-bottom: 1px solid rgba(154,129,105,.28);
}

.storm-lists-content-bit {
	margin-top: 18px;

	min-width: 0;

	box-sizing: border-box;
}


/* Plugin-Inhalt grundsätzlich einpassen */

.storm-lists-content-bit table {
	width: 100% !important;

	box-sizing: border-box;
}

.storm-lists-content-bit img {
	max-width: 100%;
}

/* =========================================================
   LISTEN – EINZELNE KATEGORIEN / LÄNDER
   ========================================================= */

.storm-lists-content-bit .lists_content-block {
	margin: 0 0 28px;
	padding: 0;
}


/* Überschrift: Castandor, Walleydor usw. */

.storm-lists-content-bit .lists_content-block h2 {
	margin: 0 0 12px;
	padding: 0 0 8px;

	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: normal;

	color: #d8b49b;

	border-bottom: 1px solid rgba(154,129,105,.22);
}


/* falls alte Theme-Regeln die Überschrift dunkel färben */

.storm-lists-content-bit .lists_content-block h2,
.storm-lists-content-bit .lists_content-block h2 * {
	color: #d8b49b !important;
}