/* ==========================================================================
   Thoughts — tweet/quote cards
   ========================================================================== */

.page h2 {
    color: var(--color-muted);
}

.tweet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tweet-item {
    padding: var(--space-l) 0;
}

.tweet-item:first-child {
    padding-top: 0;
}

.tweet-text {
    margin: 0;
    padding: 0;
    border: none;
}

.tweet-text p {
    font-size: var(--text-size-prose);
    line-height: 1.7;
    margin: 0;
}

.tweet-text p code {
    font-size: 0.9em;
    background: var(--color-subtle);
    padding: 0.15em 0.4em;
    border-radius: 3px;
}

.tweet-date {
    font-family: var(--font-mono);
    font-size: var(--text-size-sm);
    line-height: 1.2;
    color: var(--color-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
    display: block;
}

/* Animations */

.js-animated .tweet-item {
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.5s forwards;
}
