/* Blog-specific styles for django-t1 */

/* Post metadata info style - similar to Bootstrap alert-light but won't be affected by auto-dismiss */
.post-meta-info {
    position: relative;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    
    /* Light theme colors similar to alert-light */
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.post-meta-info a {
    color: #494a4a;
    text-decoration: none;
}

.post-meta-info a:hover {
    color: #2e2f2f;
    text-decoration: underline;
}

/* Alternative darker theme for better contrast */
.post-meta-info.post-meta-dark {
    color: #495057;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.post-meta-info.post-meta-dark a {
    color: #6c757d;
}

.post-meta-info.post-meta-dark a:hover {
    color: #495057;
}

/* Responsive spacing adjustments */
@media (max-width: 768px) {
    .post-meta-info {
        padding: 0.25rem 0.5rem;
        font-size: 0.9em;
    }
}

/* Post card enhancements */
.post-card {
    transition: box-shadow 0.15s ease-in-out;
}

.post-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Post metadata row spacing */
.post-meta-row {
    margin-bottom: 0.5rem;
}

.post-meta-row:last-child {
    margin-bottom: 1rem;
}