/* Time in Title Styling */
.cs-title-time {
    font-size: 0.9em;
    opacity: 0.9;
    color: #505050;
    font-weight: 400;
    margin-left: 0.5rem;
    display: inline-block;
}

/* Dark theme support */
[data-scheme="inverse"] .cs-title-time {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cs-title-time {
        font-size: 0.75em;
        margin-left: 0.3rem;
    }
}

/* Style variations for different title sizes */
.cs-entry__title h1 .cs-title-time,
.cs-entry__title.h1 .cs-title-time {
    font-size: 0.7em;
}

.cs-entry__title h2 .cs-title-time,
.cs-entry__title.h2 .cs-title-time {
    font-size: 0.8em;
}

.cs-entry__title h3 .cs-title-time,
.cs-entry__title.h3 .cs-title-time {
    font-size: 0.85em;
}

.cs-entry__title h4 .cs-title-time,
.cs-entry__title.h4 .cs-title-time {
    font-size: 0.9em;
}

/* Hover effect for links
.cs-entry__title a:hover .cs-title-time {
    opacity: 1;
    color: inherit;
} */

/* Archive page styling */
.archive .cs-title-time,
.blog .cs-title-time {
    color: #888;
}

/* Featured posts */
.cs-entry--featured .cs-title-time {
    color: #ff3f01;
    opacity: 0.9;
}