/* Forum page (no Bootstrap/Tailwind) */
.forum-hero {
  position: relative;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.pexels.com/photos/1181406/pexels-photo-1181406.jpeg?auto=compress&cs=tinysrgb&w=1680");
  background-size: cover;
  background-position: center;
  text-align: center;
}
.forum-hero__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 98px 24px;
}
.forum-hero__title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.forum-hero__subtitle {
  margin: 0;
  font-size: 18px;
  opacity: 0.95;
}

.forum-section {
  background: #f3f4f6;
  padding: 48px 0;
}
.forum-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}
.forum-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.forum-head__title {
  margin: 0;
  font-weight: 800;
  color: #111827;
  font-size: 24px;
}
.forum-btn {
  display: inline-block;
  background: #1e8449;
  color: #fff;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
}
.forum-btn:hover {
  background: #166a3a;
}

.forum-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 24px;
}
.forum-card__header {
  background: #e5e7eb;
  padding: 16px 20px;
}
.forum-card__title {
  margin: 0;
  font-weight: 800;
  font-size: 20px;
}
.forum-card__body {
  overflow: auto;
}

.forum-table {
  width: 100%;
  border-collapse: collapse;
}
.forum-table thead {
  background: #f9fafb;
}
.forum-table th,
.forum-table td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  text-align: right;
  color: #374151;
}
.forum-table th {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}
.forum-table tr:hover {
  background: #f9fafb;
}
.forum-link {
  color: #1e8449;
  text-decoration: none;
}
.forum-link:hover {
  text-decoration: underline;
}
.forum-meta {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 14px;
}
.is-center {
  text-align: center;
}
.hide-sm {
}

@media (max-width: 900px) {
  .forum-hero__title {
    font-size: 34px;
  }
  .forum-hero__inner {
    padding: 36px 24px 48px;
  }
  .hide-sm {
    display: none;
  }
}
