/*FORUMBIT*/

.fb_cat {
display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.forum-card {
width: 32.6%;
  background-image: var(--texture);
  border: 1px solid var(--accent2);
  position: relative;
  overflow: hidden;
  background-size: 160%;
}

.forum-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.forum-cover {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.forum-cover::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
      linear-gradient(to bottom,
      rgba(0,0,0,.25),
      #0b0b0b 90%),
      url(../../../images_dark/background.jpg) center/cover;

    clip-path: polygon(
      0 0,
      100% 0,
      100% 78%,
      78% 100%,
      50% 82%,
      22% 100%,
      0 78%
    );
}

.forum-cover::after {
    content: "";
    position: absolute;
    inset: -1px;

    background: #8f5b52;

    clip-path: polygon(
      0 0,
      100% 0,
      100% 78%,
      78% 100%,
      50% 82%,
      22% 100%,
      0 78%
    );

    z-index: -1;
}

.forum-emblem {
  width: 105px;
  height: 105px;
  background: #111;
  border: 1px solid rgba(160, 85, 70, .75);
  position: absolute;
  top: 175px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 25px rgba(80,20,20,.5);
}

.forum-emblem span {
  font-size: 42px;
  color: #9d5a4f;
  text-shadow: 0 0 12px rgba(130,40,35,.8);
}

.forum-content {
  padding: 95px 80px 60px;
  text-align: center;
}

.forum-content h2 {
margin: 0;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.divider {
width: 240px;
  height: 1px;
  margin: 20px auto;
  background: linear-gradient(to right, transparent, var(--accent2), transparent);
}

.forum-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.forum-stats strong {
 display: block;
  font-size: 20px;
  font-weight: 300;
  color: var(--accent2);
}

.forum-stats span {
display: block;
  margin-top: 10px;
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.stat-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, transparent, var(--accent2), transparent);
}

.forum-content p {
  max-width: 560px;
  margin: 0 auto 55px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #aaa;
}

.last-post {
  max-width: 430px;
  margin: auto;
  padding: 25px 35px;
  background: linear-gradient(135deg, rgba(70,22,22,.85), rgba(35,10,10,.9));
  border: 1px solid rgba(130,55,55,.7);
  box-shadow: inset 0 0 25px rgba(0,0,0,.45);
}

.last-post span {
  font-size: 13px;
  letter-spacing: 4px;
  color: #aaa;
}

.last-post h3 {
  margin: 18px 0 14px;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.last-post small {
  font-family: Arial, sans-serif;
  color: #9b5a50;
}

/*WELCOME BOX*/

.wel_news {
padding: 30px;
  font-size: 12px;
  text-align: justify;
  line-height: 170%;
}

.welcome_news {
width: 35%;
  box-sizing: border-box;
  background: url(../../../images_dark/background1.jpg);
  background-size: auto;
  background-size: 201%;
  background-position-y: 30%;
  border-left: 1px solid var(--line1);
}

.welcome_top {
display: flex;
  align-items: center;
  height: 50px;
  text-transform: uppercase;
  font-weight: bold;
  padding-left: 30px;
  letter-spacing: 2px;
  width: 100%;
  border-bottom: 1px solid var(--accent2);
}

.welcome_box {
width: 65%;
  box-sizing: border-box;
  padding: 30px;
  font-size: 12px;
  line-height: 170%;
  text-align: justify;
}

.welcome {
	margin-bottom: 20px;
  box-sizing: border-box;
background: var(--accent1);
  border: 1px solid var(--line1);
  display: flex;
  flex-wrap: wrap;
}