/* Custom styling for dates */
.post-item-meta {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--meta-color);
    margin-top: 0.3rem;
    line-height: 1.5;
}

.post-date-separator {
    margin: 0 0.5rem;
    color: var(--meta-color);
    opacity: 0.6;
}

/* Single post date styling */
.post-meta time {
    font-size: 0.9rem;
    color: var(--meta-color);
}

@media (max-width: 576px) {
    .post-item-meta {
        flex-direction: column;
    }
    
    .post-date-separator {
        display: none;
    }
} 