/* Tag styling for blog posts */
.post-tag-single {
    display: inline-block;
    font-size: 0.85rem;
}

/* Post image container positioning */
.post-image-container {
    position: relative;
    display: block;
}

/* Tag styling */
.post-tag {
    display: inline-block;
    opacity: 0.95;
    padding: 12px 12px;
    font-weight: 600;
    background-color: #f7b501;
    border-radius: 10px;
    font-size: 13px !important;
}

/* Ensure tag text is readable against all backgrounds */
.tag.is-light {
    background-color: rgba(255, 255, 255, 0.92) !important;
}

/* Keep hover effect for individual blog post tags, but remove from blog listing */
.post-tag-link {
    text-decoration: none;
}

/* Post tag styling on individual blog post pages */
.post-tag-single[data-tag] {
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
}

.post-tag-single[data-tag]:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Color classes for post tags */
.tag.is-warning.is-light {
    color: #946c00;
}

.tag.is-primary.is-light {
    color: #4a00b0;
}

.tag.is-info.is-light {
    color: #004e7c;
}

/* Active tag styling */
.tag-filter.is-active {
    font-weight: bold;
    background-color: #f7b501 !important;
    color: white !important;
} 