@include namespace('post-list') { @include store(( --colors: ( --cat: ( --fg: prop(--colors --fg-lo, $global: true), ), --meta: ( --fg: prop(--colors --fg-hi, $global: true), ) ) )); @include component(namespace()) { margin-top: $line-height * 2rem; @include element('category-header') { margin-top: $line-height * 2rem; color: prop(--colors --cat --fg); :link, :visited { text-decoration: none; &:hover { text-decoration: underline; } } } @include element('category-content') { margin-top: $line-height * .5rem; filter: drop-shadow(#{prop(--dims --obj-shadow, $global: true)} #{prop(--colors --obj-shadow, $global: true)}); } @include element('post') { box-shadow: none; @include next-twin-element { margin-top: 1px; } } } }