/**
 * Estimated Reading Time - Frontend Styles
 */

.estimated-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    background: #f5f5f5;
    border-left: 3px solid #0073aa;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
}

.estimated-reading-time .ert-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.estimated-reading-time .ert-text {
    font-weight: 500;
}

/* Light theme variation */
.estimated-reading-time.ert-light {
    background: #ffffff;
    border-color: #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Minimal style */
.estimated-reading-time.ert-minimal {
    background: transparent;
    border: none;
    padding: 0.25rem 0;
    color: #666;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .estimated-reading-time {
        background: #2c2c2c;
        border-color: #4a90e2;
        color: #e0e0e0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .estimated-reading-time {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}
