/**
 * Blog List Template Styles
 */

.blog-list-page .page-header-section {
    background: linear-gradient(135deg, #2d1b4e 0%, #7c3aed 100%);
    color: white;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-list-page .page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(240, 171, 252, 0.3), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(168, 85, 247, 0.2), transparent 60%);
    pointer-events: none;
}

/* Blog Filters */
.blog-filters {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid rgba(240, 171, 252, 0.2);
    backdrop-filter: blur(10px);
}

/* Post Card - reuse from blog-archive */
.blog-list-page .post-card {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(240, 171, 252, 0.2);
    backdrop-filter: blur(10px);
}

.blog-list-page .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
    border-color: var(--color-gold);
}

.blog-list-page .post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(240, 171, 252, 0.1));
}

.blog-list-page .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-list-page .post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.blog-list-page .post-content {
    padding: 25px;
}

.blog-list-page .post-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 800;
}

.blog-list-page .post-title a {
    color: #faf5ff;
    transition: color 0.3s ease;
}

.blog-list-page .post-title a:hover {
    color: #f0abfc;
}

.blog-list-page .post-excerpt {
    color: rgba(250, 245, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.blog-list-page .read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(109, 40, 217, 0.05);
}

.blog-list-page .read-more:hover {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    gap: 15px;
    padding-right: 25px;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.blog-list-page .read-more i {
    transition: transform 0.3s ease;
}

.blog-list-page .read-more:hover i {
    transform: translateX(5px);
}

/* Blog Filters */
.blog-filters {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid rgba(240, 171, 252, 0.2);
    backdrop-filter: blur(10px);
}

.filter-form {
    width: 100%;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-item label {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-item label i {
    font-size: 14px;
}

.filter-item input[type="text"],
.filter-item select {
    width: 100%;
    padding: 12px 18px;
    background: rgba(26, 11, 46, 0.8);
    border: 2px solid rgba(240, 171, 252, 0.3);
    border-radius: 10px;
    color: #faf5ff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-item input[type="text"]:focus,
.filter-item select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(240, 171, 252, 0.3);
}

.filter-item input[type="text"]::placeholder {
    color: rgba(250, 245, 255, 0.5);
}

.filter-item select option {
    background: #2d1b4e;
    color: #faf5ff;
}

.filter-actions {
    display: flex;
    gap: 10px;
}

.filter-actions .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.filter-actions .btn i {
    margin-right: 5px;
}

/* Results Info */
.results-info {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: rgba(124, 58, 237, 0.2);
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
}

.results-info p {
    margin: 0;
    color: rgba(250, 245, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-info i {
    color: var(--color-gold);
}

.results-info strong {
    color: #f0abfc;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: rgba(45, 27, 78, 0.4);
    border-radius: 15px;
    border: 2px dashed rgba(240, 171, 252, 0.3);
}

.no-results i {
    font-size: 60px;
    color: rgba(240, 171, 252, 0.5);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.75rem;
    color: #f0abfc;
    margin-bottom: 15px;
}

.no-results p {
    color: rgba(250, 245, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .filter-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .filter-actions {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .blog-list-page .page-header-section {
        padding: 40px 0 30px;
    }
    
    .blog-filters {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filter-item input[type="text"],
    .filter-item select {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .filter-actions {
        grid-column: 1;
        flex-direction: column;
        width: 100%;
    }
    
    .filter-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .results-info {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .no-results {
        padding: 60px 15px;
    }
    
    .no-results i {
        font-size: 50px;
    }
    
    .no-results h3 {
        font-size: 1.5rem;
    }
    
    .no-results p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-filters {
        padding: 20px 15px;
    }
    
    .filter-item label {
        font-size: 0.9rem;
    }
    
    .filter-actions .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
