/* =========================================================
   FORUMBIT – EDITORIAL / TRANSPARENTER AUFBAU
   ========================================================= */

.fire-category,
.fire-category *,
.fire-forum,
.fire-forum * {
	box-sizing: border-box;
}

.fire-category {
	width: 100%;
	margin: 74px 0 96px;
	padding: 0 clamp(34px, 5vw, 72px);
}

.fire-category:first-of-type {
	margin-top: 46px;
}


/* =========================================================
   KATEGORIEKOPF
   ========================================================= */

.fire-category__header {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 40px;
	width: 100%;
	min-height: 0;
	padding: 0 0 35px;
	background: transparent;
	border: 0;
}

/* Kategorieinhalt */

.fire-category__heading {
	display: grid;
	grid-template-columns:
		minmax(260px, 0.48fr)
		minmax(340px, 1fr);

	align-items: end;
	gap: clamp(38px, 6vw, 86px);

	min-width: 0;
	width: 100%;
}

.fire-category__eyebrow {
	grid-column: 1 / -1;

	display: block;
	margin-bottom: -16px;

	color: var(--fire-accent-light);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.32em;
	line-height: 1.5;
	text-transform: uppercase;
}

.fire-category__title {
	grid-column: 1;

	margin: 0;

	color: transparent;
	font-family: var(--fire-display);
	font-size: clamp(52px, 5.4vw, 78px);
	font-weight: 400;
letter-spacing: 0.05em;
	line-height: 0.9;

	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px var(--accent);
}

.fire-category__description {
	grid-column: 2;

	position: relative;

	max-width: 760px;
	padding: 0 0 4px 34px;

	color: rgba(220, 227, 225, 0.78);
	font-size: 13px;
	font-weight: 300;
	line-height: 1.8;
}

.fire-category__description:empty {
	display: none;
}


/* Einklappen */

.fire-category__collapse {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 40px;
	height: 40px;
	margin-bottom: 2px;

	background: transparent;
	border: 1px solid rgba(165, 195, 200, 0.18);

	transition:
		border-color 0.2s ease,
		background 0.2s ease;
}

.fire-category__collapse:hover {
	background: rgba(165, 195, 200, 0.045);
	border-color: rgba(165, 195, 200, 0.38);
}

.fire-category__collapse img {
	display: block;

	max-width: 15px;
	max-height: 15px;

	opacity: 0.68;
	cursor: pointer;

	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.fire-category__collapse:hover img {
	opacity: 1;
	transform: rotate(90deg);
}


/* =========================================================
   FORUMTABELLE
   ========================================================= */

.fire-forum-table {
	width: 100%;
	margin-top: 20px;

	border-collapse: collapse;
	border-spacing: 0;

	background: transparent;
	border: 0;
}

.fire-forum-table > tbody > tr > td {
	padding: 0;

	background: transparent;
	border: 0;
}

/* =========================================================
   EINZELNES FORUM
   ========================================================= */

.fire-forum{

	display:grid;

	grid-template-columns:

	46px
	1fr
	170px
	240px;

	grid-template-areas:

	"status content stats last"

	". sub sub sub";
}

.fire-forum::before {
	position: absolute;
	top: -1px;
	left: 54px;

	width: 78px;
	height: 1px;

	content: "";

	background: var(--accent);
}


/* =========================================================
   FORUMSTATUS
   ========================================================= */

.fire-forum__content{

	grid-area:content;
}

.fire-forum__statistics{

	grid-area:stats;
}

.fire-forum__lastpost{

	grid-area:last;
}

.fire-forum__subforums{

	grid-area:sub;
}

/* =========================================================
   FORUMSTATUS
   ========================================================= */

.fire-forum__status {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fire-forum__status .forum_status {

	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	background: none !important;
	cursor: pointer;

	transition: color .25s ease;
}


/* ---------------------------------------------------------
   Raute
--------------------------------------------------------- */

.fire-forum__status .forum_status::before {

	content: "";

	position: absolute;

	width: 20px;
	height: 20px;

	border: 1px solid currentColor;

	transform: rotate(45deg) scale(1);

	opacity: .38;

	transition:
		transform .25s ease,
		opacity .25s ease,
		border-color .25s ease;
}


/* ---------------------------------------------------------
   Besen
--------------------------------------------------------- */

.fire-forum__status .forum_status i {
	position: absolute;
	z-index: 2;
	font-size: 32px;
	line-height: 1;

}


/* =========================================================
   GELESEN
========================================================= */

.fire-forum__status .forum_off,
.fire-forum__status [class*="forum_off"] {
	color: var(--fire-accent);
}

.fire-forum__status .forum_off i,
.fire-forum__status [class*="forum_off"] i {
	opacity: 0;
}


/* =========================================================
   UNGELESEN
========================================================= */

.fire-forum__status .forum_on,
.fire-forum__status .forum_new,
.fire-forum__status [class*="forum_on"] {
	color: var(--accent);
}

.fire-forum__status .forum_on i,
.fire-forum__status .forum_new i,
.fire-forum__status [class*="forum_on"] i {
	opacity: 1;
}


/* =========================================================
   HOVER
========================================================= */

.fire-forum__status .forum_status:hover {
	color: #ffffff;
	width:80px;
}

.fire-forum__status .forum_status i:hover {
color:var(--fire-accent);
font-size: 14px;
transform:2s;
}

	

.fire-forum__status .forum_status:hover::before {
	opacity: .8;
}

.fire-forum__status .forum_status:hover::before {
	transform: rotate(45deg) scale(1.28);
	opacity: .8;
}

/* =========================================================
   FORUMTEXT
   ========================================================= */

.fire-forum__content {
	display: flex;
	flex-direction: column;
	justify-content: center;

	min-width: 0;
	padding:
		38px
		clamp(34px, 4vw, 58px)
		40px
		34px;
}

.fire-forum__heading {
	min-width: 0;
}

.fire-forum__label {
	display: block;
	margin-bottom: 10px;

	color: var(--fire-accent-light);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.27em;
	line-height: 1.5;
	text-transform: uppercase;
}

.fire-forum__name {
	margin: 0;
border-bottom: 1px solid var(--accent);
	font-family: var(--fire-display);
	font-size: clamp(35px, 3.1vw, 46px);
	font-weight: 400;
	letter-spacing: 0.005em;
	line-height: 1;
}

.fire-forum__name a {
	color: rgba(238, 240, 236, 0.94);
	text-decoration: none;

	transition:
		color 0.2s ease,
		letter-spacing 0.2s ease;
}

.fire-forum__name a:hover {
	color: var(--accent-light);
	letter-spacing: 0.015em;
}


/* Beschreibung */

.fire-forum__description {
	position: relative;

	max-width: 760px;
	margin-top: 20px;
	padding-top: 18px;

	color: rgba(216, 224, 222, 0.76);
	font-size: 13px;
	font-weight: 300;
	line-height: 1.82;
}

.fire-forum__description:empty {
	display: none;
}


/* =========================================================
   UNTERFOREN
   ========================================================= */

.fire-forum__subforums{
	display:flex;
	flex-wrap:wrap;
	gap:12px 24px;
	padding-top:18px;
	font-size:11px;
	text-transform:uppercase;
	letter-spacing:.08em;
	color: var(--fire-bg-dark);
}

.fire-forum__subforums a{
	color:rgba(195,205,203,.78);
	text-decoration:none;
	transition:.2s;
}

.fire-forum__subforums a::before{

	content:"•";
	margin-right:10px;
	color:var(--accent);
}

.fire-forum__subforums a:hover{
	color:#fff;
}

.fire-forum__subforums:empty {
	display: none;
}

.fire-forum__subforums a {
	position: relative;

	display: inline-flex;
	align-items: center;
	gap: 9px;

	color: rgba(187, 203, 202, 0.73);
	text-decoration: none;

	transition:
		color 0.18s ease,
		transform 0.18s ease;
}

.fire-forum__subforums a::before {
	content: "—";

	color: var(--accent);
	font-weight: 400;
}

.fire-forum__subforums a:hover {
	color: #ffffff;
	transform: translateX(2px);
}

.fire-forum__subforums .smalltext,
.fire-forum__subforums span {
	font-size: inherit;
}


/* =========================================================
   THEMEN UND BEITRÄGE
   ========================================================= */

.fire-forum__statistics {
	position: relative;

	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;

	min-width: 0;
	padding: 36px 24px;

	background: transparent;
}

.fire-forum__statistics::after {
	position: absolute;
	top: 32px;
	right: 0;
	bottom: 32px;

	width: 1px;

	content: "";

	background:
		linear-gradient(
			to bottom,
			transparent,
			rgba(165, 195, 200, 0.13),
			transparent
		);
}

.fire-forum__stat {
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;

	min-width: 0;
	min-height: 78px;
	padding: 0 15px;

	text-align: center;
}

.fire-forum__stat + .fire-forum__stat::before {
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 0;

	width: 1px;

	content: "";

	background: rgba(165, 195, 200, 0.11);
}

.fire-forum__stat-value {
	color: rgba(235, 239, 236, 0.94);
	font-family: var(--fire-display);
	font-size: 34px;
	font-weight: 400;
	line-height: 1;
}

.fire-forum__stat-label {
	color: rgba(165, 195, 200, 0.62);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.4;
	text-transform: uppercase;
}


/* =========================================================
   LETZTER BEITRAG
   ========================================================= */

.fire-forum__lastpost {
	display: flex;
	align-items: center;

	min-width: 0;
	padding:
		36px
		clamp(26px, 3vw, 44px);

	background: transparent;
}

.fire-lastpost {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	min-width: 0;
	width: 100%;
}

.fire-lastpost__label {
	display: block;
	margin-bottom: 12px;

	color: var(--fire-accent-light);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.21em;
	line-height: 1.5;
	text-transform: uppercase;
}

.fire-lastpost__subject {
	display: block;

	max-width: 100%;

	overflow: hidden;

	color: rgba(227, 232, 229, 0.9);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.55;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;

	transition: color 0.18s ease;
}

.fire-lastpost__subject:hover {
	color: var(--accent-light);
}

.fire-lastpost__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px 11px;

	margin-top: 12px;

	color: rgba(184, 198, 196, 0.58);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.55;
}

.fire-lastpost__author {
	color: rgba(193, 205, 203, 0.68);
}

.fire-lastpost__author a {
	color: var(--accent-light);
	font-weight: 600;
	text-decoration: none;

	transition: color 0.18s ease;
}

.fire-lastpost__author a:hover {
	color: #ffffff;
}

.fire-lastpost__date::before {
	margin-right: 10px;

	content: "•";

	color: var(--accent);
}


/* =========================================================
   GROSSE TABLETS / KLEINERE DESKTOPS
   ========================================================= */

@media (max-width: 1200px) {

	.fire-category {
		padding: 0 38px;
	}

	.fire-category__heading {
		grid-template-columns:
			minmax(235px, 0.44fr)
			minmax(300px, 1fr);

		gap: 42px;
	}

	.fire-forum {
		grid-template-columns:
			42px
			minmax(340px, 1fr)
			165px
			230px;
	}



	.fire-forum__content {
		padding-right: 38px;
		padding-left: 28px;
	}

	.fire-forum__lastpost {
		padding-right: 28px;
		padding-left: 28px;
	}

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

	.fire-category {
		padding: 0 30px;
	}

	.fire-category__heading {
		display: block;
	}

	.fire-category__eyebrow {
		margin-bottom: 9px;
	}

	.fire-category__title {
		font-size: 54px;
	}

	.fire-category__description {
		max-width: 720px;
		margin-top: 20px;
		padding: 18px 0 0;
	}

	.fire-forum {
		grid-template-columns:
			42px
			minmax(0, 1fr)
			180px;
	}

	.fire-forum__statistics {
		border-right: 0;
	}

	.fire-forum__lastpost {
		grid-column: 2 / 4;

		padding: 25px 30px 30px;

		border-top: 1px solid rgba(165, 195, 200, 0.1);
	}

	.fire-lastpost {
		display: grid;
		grid-template-columns: minmax(180px, 1fr) auto;
		align-items: center;
		gap: 7px 28px;
	}

	.fire-lastpost__label {
		grid-column: 1 / -1;
		margin-bottom: 2px;
	}

	.fire-lastpost__meta {
		justify-content: flex-end;
		margin-top: 0;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

	.fire-category {
		margin: 52px 0 66px;
		padding: 0 22px;
	}

	.fire-category__header {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 18px;

		padding-bottom: 28px;
	}

	.fire-category__title {
		font-size: 45px;
	}

	.fire-category__description {
		font-size: 12px;
		line-height: 1.75;
	}

	.fire-category__collapse {
		width: 38px;
		height: 38px;
	}

	.fire-forum {
		grid-template-columns:
			36px
			minmax(0, 1fr);

		min-height: 0;
		padding: 0;
	}

	.fire-forum::before,
	.fire-forum::after {
		left: 36px;
		right: 0;
	}

	.fire-forum__status {
		align-items: flex-start;
		padding-top: 34px;
	}

	.fire-forum__content {
		padding: 31px 24px 27px;
	}

	.fire-forum__name {
		font-size: 35px;
	}

	.fire-forum__description {
		font-size: 12px;
		line-height: 1.78;
	}

	.fire-forum__subforums {
		font-size: 10px;
	}

	.fire-forum__statistics {
		grid-column: 2;

		padding: 21px 20px;

		border-top: 1px solid rgba(165, 195, 200, 0.1);
		border-left: 0;
	}

	.fire-forum__statistics::after {
		display: none;
	}

	.fire-forum__stat {
		min-height: 60px;
	}

	.fire-forum__stat-value {
		font-size: 31px;
	}

	.fire-forum__lastpost {
		grid-column: 2;

		padding: 24px 24px 29px;

		border-top: 1px solid rgba(165, 195, 200, 0.1);
	}

	.fire-lastpost {
		display: flex;
		align-items: flex-start;
	}

	.fire-lastpost__meta {
		justify-content: flex-start;
		margin-top: 10px;
	}

}


/* =========================================================
   SEHR SCHMALE BILDSCHIRME
   ========================================================= */

@media (max-width: 480px) {

	.fire-category {
		padding: 0 17px;
	}

	.fire-category__header {
		grid-template-columns: 1fr;
	}

	.fire-category__heading {
		padding-right: 42px;
	}

	.fire-category__collapse {
		position: absolute;
		top: 0;
		right: 0;
	}

	.fire-category__title {
		font-size: 39px;
	}

	.fire-forum {
		grid-template-columns: 1fr;
	}

	.fire-forum::before,
	.fire-forum::after {
		left: 0;
	}

	.fire-forum__status {
		justify-content: flex-start;
		align-items: center;

		min-height: 46px;
		padding: 0 0 0 22px;

		border-bottom: 1px solid rgba(165, 195, 200, 0.08);
	}

	.fire-forum__content,
	.fire-forum__statistics,
	.fire-forum__lastpost {
		grid-column: 1;
	}

	.fire-forum__content {
		padding-right: 21px;
		padding-left: 21px;
	}

	.fire-forum__statistics {
		padding-right: 15px;
		padding-left: 15px;
	}

	.fire-forum__lastpost {
		padding-right: 21px;
		padding-left: 21px;
	}

}
