#rss {
    margin: 0;
    text-align: right;
    margin-bottom: calc(var(--article-margin-vertical) * -1);
}

#rss.animated {
    animation: articleEntrance 0.6s var(--transition-timing);
}

#blips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#end {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-sm) 0 0;
}

#end p {
    margin: 0;
    color: hsl(0, 0%, 75%);
    font-style: italic;
    font-size: var(--font-size-md);
    text-align: center;
}

.blip {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 1rem;
    scroll-margin-top: calc(var(--main-margin-top) + var(--spacing-lg));
}

.blip-content:not(:has(> :only-child:is(blockquote, pre))) {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

:target .blip-content:not(:has(> :only-child:is(blockquote, pre))) {
    border: var(--border-accent-2px);
}

.blip-content > :first-child {
    margin-top: 0;
}
.blip-content > :last-child {
    margin-bottom: 0;
}
.blip-content blockquote {
    width: auto;
}
.time {
    color: #a3a3a3;
    font-size: var(--font-size-xs);
    white-space: pre;
    display: flex;
    justify-content: space-between;
}
