/* Lucide Icons Styling */
.lucide-icon {
    width: 16px;
    height: 16px;
    vertical-align: -0.125em;
    margin-right: 4px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: var(--primary);
}

/* Blog meta icons */
.blog-meta .lucide-icon {
    width: 14px;
    height: 14px;
    margin-right: 3px;
    opacity: 0.8;
}

/* Read more arrow icon */
.blog-read-more .lucide-icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.blog-read-more:hover .lucide-icon {
    transform: translateX(3px);
}

/* Blog post meta icons */
.blog-post-meta-item .lucide-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    opacity: 0.8;
}
