/* Loucura Devaneia — clean palette
 * Matches the live site's Ghost theme variables (loucuradevaneia.com/about/):
 * plain white background, near-black body text, gray secondary text,
 * blue accent (--ghost-accent-color: #1986ff). No color noise, no cards.
 *
 * Always light — the live site has no dark mode, so this applies
 * unconditionally regardless of data-theme or system preference.
 */

:root,
[data-theme=light],
[data-theme=dark] {
    --pico-border-radius: 0.25rem;
    --pico-card-box-shadow: none;
    --pico-background-color: #ffffff;
    --pico-card-background-color: #ffffff;
    --pico-card-sectioning-background-color: var(--pico-background-color);
    --pico-primary: #1986ff;
    --pico-primary-opacity-25: #1986ff40;
    --pico-primary-hover: #0f6fdb;
    --pico-secondary: #1986ff;
    --pico-color: #333333;
    --pico-tag: #999999;
    --pico-h1-color: #15171a;
    --pico-h2-color: #15171a;
    --pico-h3-color: #15171a;
    --pico-h4-color: #15171a;
    --pico-h5-color: #15171a;
    --pico-h6-color: #15171a;
    --pico-code-background-color: #f6f6f6;
    --pico-table-border-color: #e6e6e6;
    --pico-color-azure-550: var(--pico-primary);
}

/* Plain list, no card chrome — matches the live site's minimal layout */
.content-list-item {
    border: none;
    border-bottom: 1px solid var(--pico-table-border-color);
    border-radius: 0;
    padding: 1.25rem 0;
    margin-bottom: 0;
}

.content-title a {
    color: var(--pico-color);
}

.content-title a:hover {
    color: var(--pico-primary);
}

.footer-content {
    border-top: 1px solid var(--pico-table-border-color);
    opacity: 0.85;
}
