/* Wider content area for readability (was 660px / ~82 chars, bumping to ~110) */
.wrapper {
    max-width: 900px;
}

/* Blockquote on homepage — makes it stand out more */
.page-content blockquote {
    color: #1a1a2e;
    font-weight: 500;
}

body[data-theme="dark"] .page-content blockquote {
    color: #e8e8ee;
}

/* Post meta — date + tags */
.post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.9em;
    opacity: 0.8;
}

.post-tags a {
    color: #003fff;
    text-decoration: none;
    font-size: 0.85em;
    margin-right: 0.25rem;
    transition: opacity 75ms ease-in;
}

.post-tags a:hover {
    text-decoration: underline;
}

body[data-theme="dark"] .post-tags a {
    color: #77a8fd;
}
ul.terms-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

ul.terms-tags li {
    display: inline-block;
}

ul.terms-tags li a {
    text-decoration: none;
    border: 1px solid #d2c7c7;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: border-color 75ms ease-in;
}

ul.terms-tags li a:hover {
    border-color: #0069d9;
}

ul.terms-tags li a .count {
    font-size: 0.8em;
    opacity: 0.6;
}
