@charset "UTF-8";
.forum-archive-list {
  display: grid;
  grid-template-columns: 1fr; /* 1カラムに固定 */
  gap: 20px;
}

.forum-card {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  width: 100%; /* 横幅を揃える */
}

.forum-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.forum-main-card {
  flex: 1;
  padding: 16px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.forum-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.forum-title-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.forum-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.forum-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 13px;
  color: #666;
}

.forum-stats img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.forum-stats span {
  display: inline-flex;
  align-items: center;
}

.forum-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-weight: 700;
  color: #999;
}

@media (max-width: 600px) {
  .forum-archive-list {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=forum.css.map */