/* Blog List Dynamic Loading Styles */
.loading-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #666;
    font-size: 16px;
}

.loading-placeholder p {
    margin: 0;
}

/* Category filter active state */
.sidebar-categories .list .item a.active {
    color: var(--primary-color, #007bff);
    font-weight: bold;
}

/* Tag filter active state */
.sidebar-tags .tabs-list .tabs-item.active {
    background-color: var(--primary-color, #007bff);
    color: white;
}

/* Search form enhancements */
.form-search-siderbar {
    position: relative;
}

.form-search-siderbar input {
    padding-right: 50px;
}

.tf-btn-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
}

.tf-btn-search:hover {
    background-color: #f5f5f5;
}

/* Load more button */
.btn-loadmore2 {
    transition: all 0.3s ease;
}

.btn-loadmore2:hover {
    transform: translateY(-2px);
}

/* Blog card hover effects */
.tf-post-grid.hover-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tf-post-grid.hover-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loading-placeholder {
        min-height: 150px;
        font-size: 14px;
    }
}
