.post_preview {
  background-color: var(--bg-color-1);
  background-image: var(--bg-image-koiro-text-tile);
  border-radius: 6px;
  border: solid 1px var(--bg-color-1);
  box-shadow: inset 0 -6px var(--shadow-color-0);
  padding-bottom: 6px;
  transition: 0.5s border, 0.5s background-color;
  width: 100%;
  margin: 14px auto;
  cursor: pointer;
}
.post_preview:hover {
  background-color: var(--bg-color-2);
  border: solid 1px var(--line-color);
}
.post_preview:active {
  box-shadow: none;
  padding-bottom: 0;
}

a.post_preview:any-link {
  display: flex;
  text-decoration: none;
  cursor: pointer;
}

.post_preview.regular {
  position: relative;
  height: 81px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.post_preview.regular .emoji {
  text-shadow: 0 6px 8px var(--shadow-color-1);
  font-size: 36px;
  padding: 13px 16px 16px;
  margin: 0 0 0 6px;
  width: fit-content;
  transition: 0.2s text-shadow;
}
.post_preview.regular .description {
  margin: auto 0;
  flex-direction: column;
  flex-grow: 1;
  width: 500px;
  min-width: 100px;
  text-align: left;
}
.post_preview.regular .description h2 {
  color: var(--text-color-0);
  font-size: 18px;
  margin: 0;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.post_preview.regular .description h3 {
  font-size: 12px;
  margin: 0;
  margin-top: 6px;
  color: var(--text-color-1);
  font-weight: 200;
}
.post_preview.regular .description * {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.post_preview.regular .info {
  flex-direction: column;
  height: fit-content;
  width: fit-content;
  margin: auto 20px auto 10px;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  min-width: fit-content;
}
.post_preview.regular .info p {
  margin: 0;
}

.blog.large {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.blog.large > * {
  flex: 1 1 auto;
}
.blog.large .description {
  display: flex;
  flex-direction: column;
  margin: 24px;
}
.blog.large .description .title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.blog.large .description .emoji {
  font-size: 24px;
  flex-basis: 24px;
}
.blog.large .description h2 {
  color: var(--text-color-0);
  font-weight: normal;
  font-size: 20px;
  text-align: left;
  margin: 0;
}
.blog.large .description h3 {
  color: var(--text-color-1);
  font-weight: 200;
  font-size: 14px;
  text-align: left;
  margin: 0;
  margin-top: 12px;
  max-height: 400px;
}

.devlog.regular img {
  margin: 0;
  width: fit-content;
  height: 100%;
}
.devlog.regular .description {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.devlog.regular .description h2 {
  margin: 12px;
  font-size: 16px;
  white-space: wrap;
  height: fit-content;
  max-height: 100%;
  text-align: left;
}
.devlog.regular .info {
  flex-grow: 1;
  height: fit-content;
}
.devlog.regular .info p {
  text-wrap: nowrap;
}

.devlog.large {
  flex-direction: column;
  padding: 24px;
  align-items: center;
}
.devlog.large .preview {
  width: 90%;
}
.devlog.large .preview img {
  width: 100%;
  border-radius: 2px;
}
.devlog.large .description h2 {
  font-size: 18px;
}

/*# sourceMappingURL=post_preview.css.map */
