/* Blog Section Styling */
.blogPost .thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.blogPost .meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blogPost .meta span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 10px;
    border-radius: 4px;
    margin: 0 2px;
}

/* Ensure the meta text is visible on hover */
.blogPost .thumb:hover .meta {
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .blogPost .meta {
        padding: 10px 15px;
    }
    
    .blogPost .meta span {
        font-size: 12px;
        padding: 2px 8px;
    }
}
