.blog-page {
    background: var(--ut-color-surface-muted);
    min-height: 100vh;
    padding: 2rem 0;
}

.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--ut-color-primary-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--ut-color-accent-500);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
}

.blog-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--ut-radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--ut-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.blog-count {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.search-card {
    background: white;
    border: none;
    border-radius: var(--ut-radius-lg);
    box-shadow: var(--ut-shadow-sm);
    transition: all 0.3s ease;
}

.search-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.search-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--ut-color-primary-500);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.search-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-select:focus {
    border-color: var(--ut-color-primary-500);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.search-btn {
    background: var(--ut-gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.article-card {
    background: white;
    border: none;
    border-radius: var(--ut-radius-lg);
    box-shadow: var(--ut-shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ut-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.article-card:hover::before {
    opacity: 1;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    transition: color 0.3s ease;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.article-title:hover {
    color: var(--ut-color-primary-500);
}

.article-title i {
    color: var(--ut-color-primary-500);
    margin-right: 0.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ut-color-border);
}

.article-meta-info {
    color: #6c757d;
    font-size: 0.9rem;
}

.article-meta-info i {
    color: var(--ut-color-primary-500);
    margin-right: 0.3rem;
}

.article-album {
    background: rgba(102, 126, 234, 0.12);
    color: var(--ut-color-primary-500);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.75rem;
}

.article-album i {
    font-size: 0.75rem;
}

.article-type-album {
    background: rgba(118, 75, 162, 0.12);
    color: var(--ut-color-accent-500);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.75rem;
}

.article-type-album i {
    font-size: 0.75rem;
}

.article-tag {
    background: var(--ut-gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.article-tag i {
    font-size: 0.75rem;
}

.pagination-custom {
    margin-top: 3rem;
}

.pagination .page-link {
    border: none;
    border-radius: 10px;
    margin: 0 0.25rem;
    padding: 0.6rem 1rem;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--ut-gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--ut-gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    color: #adb5bd;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.empty-state i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1.5rem;
}

.empty-state p {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.loading-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.spinner-custom {
    width: 3rem;
    height: 3rem;
    border: 0.3em solid rgba(102, 126, 234, 0.2);
    border-top-color: var(--ut-color-primary-500);
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .article-title {
        font-size: 1.25rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-card .row {
        gap: 1rem;
    }
}
