.gd-forum-category {
  max-width: 1200px;
  margin: 35px auto;
  position: relative;
  overflow: hidden;
  background: 
	 /* dunkler Farbverlauf */
    linear-gradient(
      rgba(7, 18, 31, 0.92),
      rgba(7, 18, 31, 0.96)
    ),
    /* Bildlayer */
    url(../../../images/style/goldendaysnight/rohling.png) center center / cover no-repeat;
  border: 1px solid rgba(194, 138, 98, 0.42);
  border-radius: 8px;

  box-shadow:
    inset 0 0 0 1px rgba(194, 138, 98, 0.08),
    0 20px 45px rgba(0, 0, 0, 0.55);
}
.gd-forum-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 86px 1fr 190px 390px;
  align-items: center;
  gap: 18px;
  padding: 10px 28px;

  background: rgba(7, 18, 31, 0.35);

  border-bottom: 1px solid rgba(194, 138, 98, 0.18);
  transition: 0.25s;
}

.gd-forum-row:hover {
  background: rgba(7, 18, 31, 0.55);
}
/* leichte Vignette wie im Header */
.gd-forum-category::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0) 40%,
      rgba(5, 13, 26, 0.65) 75%,
      rgba(5, 13, 26, 0.92) 100%
    );
}
.gd-cat-title {
  padding: 22px 34px;
  border-bottom: 1px solid rgba(194, 138, 98, 0.25);

  background:
    linear-gradient(
      rgb(5 13 26 / 70%),
      rgb(5 13 26 / 88%)
    );

  backdrop-filter: blur(4px);
}

.gd-cat-title h2 {
  margin: 0;
  color: var(--gd-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 19px;
}

.gd-cat-title span {
  display: block;
  margin-top: 5px;
  color: var(--gd-muted);
  font-size: 13px;
}

.gd-forum-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 86px 1fr 190px 390px;
  align-items: center;
  gap: 18px;
  padding: 8px 28px;
  border-bottom: 1px solid rgba(194, 138, 98, 0.22);
}

.gd-forum-row:last-child {
  border-bottom: 0;
}

.gd-forum-icon {
  position: relative;
  z-index: 3;
}

.gd-forum-icon img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  filter: none !important;
  box-shadow:
    0 0 0 3px rgba(5, 13, 26, 0.9),
    0 0 0 4px rgba(194, 138, 98, 0.5);
  border: none;
}

.gd-forum-main h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gd-forum-main h3 a {
  color: var(--gd-text);
  text-decoration: none;
}

.gd-forum-main h3 a:hover {
  color: var(--gd-rose);
}

.gd-forum-main p {
  margin: 4px 0 0;
  max-width: 420px;
  color: var(--gd-muted);
  font-size: 13px;
  line-height: 1.35;
}

.gd-subforums {
  margin-top: 6px;
  font-size: 12px;
}

.gd-subforum a {
  color: var(--gd-rose);
  text-decoration: none;
  margin-right: 8px;
}

.gd-forum-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  color: var(--gd-text);
}

.gd-forum-stats div {
  padding: 0 18px;
  border-left: 1px dotted rgba(194, 138, 98, 0.45);
}

.gd-forum-stats strong {
  display: block;
  font-size: 17px;
  font-weight: normal;
}

.gd-forum-stats span {
  display: block;
  margin-top: 4px;
  color: var(--gd-muted);
  font-size: 12px;
}

.gd-lastpost {
  border-left: 1px dotted rgba(194, 138, 98, 0.45);
  padding-left: 26px;
}

.gd-lastpost-inner {
  display: grid;
  grid-template-columns: 48px 1fr 22px;
  align-items: center;
  gap: 14px;
}

.gd-lastpost-avatar img,
.gd-lastpost-avatar a img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(194, 138, 98, 0.55);
}

.gd-lastpost-text {
  font-size: 12px;
  line-height: 1.35;
}

.gd-lastpost-title {
  display: block;
  color: var(--gd-rose);
  font-weight: bold;
  text-decoration: none;
}

.gd-lastpost-text span,
.gd-lastpost-text small {
  display: block;
  color: var(--gd-muted);
}

.gd-lastpost-text a {
  color: var(--gd-rose);
  text-decoration: none;
}

.gd-lastpost-arrow {
  color: var(--gd-gold);
  font-size: 34px;
  text-decoration: none;
}

.gd-lastpost-empty {
  grid-template-columns: 1fr;
}

@media (max-width: 1000px) {
  .gd-forum-row {
    grid-template-columns: 70px 1fr;
  }

  .gd-forum-stats,
  .gd-lastpost {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
  }
}