table.data {
  width: 100%;
  margin: auto;
}
.section_title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.forum_title {
  font-size: 1.2em;
  font-weight: bold;
}
.flex_container {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: left;
  flex-wrap: wrap;
  padding: unset;
}
.flex_container > .flex_item {
  flex: 1;
  background: white;
  min-height: 40em;
  max-height: 40em;
  box-shadow: var(--box-shadow-color);
  border: 1px solid var(--border-color);
  border-radius: 1em;
  padding: 1em;
  margin-right: 1em;
  display: flex;
  flex-flow: column;
}
.flex_container > .flex_item.single {
  max-height: unset;
  margin-right: unset;
}
.flex_container > .flex_item > .flex_item_img {
  margin-bottom: 1em;
}
.flex_container > .flex_item > .flex_item_img > img {
  max-height: 30em;
  width: 100%;
}
.flex_container > .flex_item > .flex_item_title {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.flex_container > .flex_item > .credits {
  font-style: italic;
  font-size: 0.8em;
  margin-bottom: 2em;
}
.flex_container > .flex_item > .message_container {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-bottom: 1em;
}
.flex_container > .flex_item > .message_container > .message {
  overflow: hidden;
  text-overflow: ellipsis;
  width: fit-content;
  max-height: 20ch;
}
.flex_container > .flex_item > .actions {
  display: flex;
  flex: 1;
  align-items: flex-end;
}
.flex_container.full_list > .flex_item {
  margin-right: 0.5em;
  min-height: 16em;
  max-height: 16em;
  min-width: 326px;
  max-width: 326px;
  margin-bottom: 1em;
}
.flex_container.full_list > .flex_item > .flex_item_img {
  min-height: 7em;
  overflow: hidden;
}
.flex_container.full_list > .flex_item > .flex_item_img > img {
  max-height: 30em;
  width: 100%;
}
.section_footer {
  background: var(--card-background-color);
  padding: 1em;
  box-shadow: var(--box-shadow-color);
  border: 1px solid var(--border-color);
  border-radius: 1em;
  margin-top: 0.5em;
}
@media screen and (max-width: 50em) {
  .section_title {
    margin: 0.5em;
    text-align: center;
  }
  .flex_container {
    flex-flow: column;
  }
  .flex_container > .flex_item {
    margin: auto;
    margin-bottom: 0.5em;
    width: calc(100% - 2em);
  }
  .flex_container.full_list > .flex_item {
    min-height: unset;
    max-height: unset;
    min-width: unset;
    max-width: unset;
  }
  .flex_container.full_list > .flex_item > .flex_item_img {
    min-height: 10em;
  }
}
/*# sourceMappingURL=forum2.page.css.map */