.blog-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-date {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
}

.blog-category {
    background: var(--accent-1);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-weight: 500;
}

.project-card p {
    margin: 1.5rem 0;
    line-height: 1.7;
}

.button[href="#"] {
    pointer-events: none;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-date,
    .blog-category {
        width: fit-content;
    }
}
