.forum-page {
  margin-top: 12px;
}

.breadcrumbs {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  margin: 0 0 10px;
}

.forum-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: start;
}

.forum-main,
.forum-sidebar-card {
  background: rgba(39,42,48,.95);
}

.forum-section {
  margin-bottom: 14px;
  background: rgba(43,46,53,.95);
}

.forum-section-title,
.forum-sidebar-card h3 {
  margin: 0;
  background: #4a4f67;
  color: #f1f4fb;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
}

.forum-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  padding: 16px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.forum-row:first-of-type {
  border-top: 0;
}

.forum-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.forum-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f59e0b;
  flex: 0 0 auto;
}

.forum-desc {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.45;
}

.forum-links {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.forum-links a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
}

.forum-links a:hover {
  text-decoration: underline;
}

.last-post {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.last-post img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: .9;
  margin-top: 2px;
}

.last-post-title {
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 4px;
}

.last-post-meta,
.last-post-date {
  font-size: 12px;
  color: rgba(255,255,255,.78);
}

.forum-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.forum-sidebar-card {
  border: 1px solid rgba(255,255,255,.06);
}

.forum-sidebar-card .inner {
  padding: 14px;
}

.vote-box {
  background: linear-gradient(90deg, rgba(255,188,69,.12), rgba(255,188,69,.03));
  border: 1px solid rgba(255,188,69,.12);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.vote-rank {
  color: #fff;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}

.vote-button,
.goal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 32px;
  padding: 0 14px;
  border: 0;
  border-radius: 3px;
  background: #f59e0b;
  color: #111;
  font-weight: 800;
  text-decoration: none;
}

.goal-copy {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.55;
}

.goal-meter {
  margin: 12px 0 10px;
}

.goal-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}

.goal-fill {
  height: 100%;
  width: 16%;
  background: #65a9ec;
}

.goal-meta {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.82);
  display: flex;
  justify-content: space-between;
}

.goal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.goal-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.online-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.online-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
}

.online-list img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.powered-forumify {
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  margin-top: 26px;
}

.news-page-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.news-post-card {
  background: rgba(43,46,53,.95);
  border: 1px solid rgba(255,255,255,.06);
}

.news-post-card h2 {
  margin: 0;
  background: #4a4f67;
  font-size: 18px;
  padding: 10px 14px;
}

.news-post-body {
  padding: 14px;
}

.news-post-meta {
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin-bottom: 10px;
}

.news-post-body p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255,255,255,.86);
}

@media (max-width: 1100px) {
  .forum-layout {
    grid-template-columns: 1fr;
  }

  .forum-row {
    grid-template-columns: 1fr;
  }
}
