.flex {display:flex}
.postcontent {position:relative;}
.postcontent .postinnercontent {z-index:1; position:relative;}
.postcontent h1 { color:var(--color-on-surface)}

s-post-item .more {display:none}
s-post-item .postinnercontent {max-height: none; overflow-y:visible;}
s-post-item.showmore .more {
  display: flex;
  justify-content: center;
  z-index: 2;
  padding: 4rem 1rem 0.5rem 1rem;
  margin: -4rem -1rem 1rem -1rem;
  background: linear-gradient(to top, var(--color-surface) 40%, transparent 100%);
}

s-post-item.showmore .postinnercontent {max-height: 500px; overflow:hidden; max-width:100%; }

s-post-item {display:block; min-height:200px;}
s-post-item s-element-timeago {display:block;}
s-post-item s-element-date {font-size:0.7rem;display:block}


.postfooter {display:flex;  width:100%; align-items: center; margin-top:0.5rem; gap:0.5rem;}
.postfooter > *:last-child{ margin-left:auto;}
.postfooter svg {width: 1rem; height:1rem;}

.postfooter .stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-background);
  color: var(--color-on-background);
  border-radius: 999px;
  padding: 0 8px;
  height: 24px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}
.postfooter a.stat-chip:hover { background: var(--color-gray); }
@media(max-width:500px) {
}

s-post-item, s-post-listitem {position:relative; gap:0 !important;}
s-post-item .tag,s-post-listitem .tag  {font-size:0.85rem; display: inline-block;  padding:0 5px; }
img {max-width:100%;}

s-post-item .eridtoken {opacity: 0.5; font-style:italic; font-size:0.7rem;}
s-post-item .achtung { border-radius: var(--border-radius); background:var(--color-gray); font-style:italic; padding:1rem; margin: 1rem 0;}

.hero {display:grid; gap:1rem; grid-template-columns: repeat(3, 1fr); margin-bottom:1rem; }
.hero > * {flex:1; aspect-ratio:1 / 1; margin:0; background-size: cover; background-position: center center;  padding:0 !important; overflow:hidden;}
.hero img {aspect-ratio: 16 / 9; width:100%; object-fit: cover; }
.hero span { padding:0 0.6rem; font-size:0.8rem; font-weight:500;}
@media (max-width:500px) {
    .hero {flex-wrap: wrap;grid-template-columns: repeat(2, 1fr); margin-left: 0.5rem; margin-right:0.5rem;}
    .hero .block0 {grid-column: 1 / 3; aspect-ratio: 16 / 11;}
}