/**
 * Time to Read for Newspack - Styles
 * Version: 1.0.0
 */

/* Reading time display */
.post-reading-time {
    color: #666;
    font-size: 0.9em;
    font-weight: normal;
    white-space: nowrap;
}

/* Separator between author and reading time */
.reading-time-separator {
    color: #999;
    margin: 0 0.25em;
    font-weight: normal;
}

/* Entry meta context */
.entry-meta .post-reading-time {
    display: inline;
}

/* Author byline integration */
.author-avatar + .post-reading-time,
.entry-author .post-reading-time {
    margin-left: 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .post-reading-time {
        color: #aaa;
    }

    .reading-time-separator {
        color: #888;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .post-reading-time {
        font-size: 0.85em;
    }
}

/* Print styles */
@media print {
    .post-reading-time {
        color: #000;
    }
}
