.blog-search .input-group {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.blog-search .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
}

.blog-search .btn {
    border: none;
    padding: 0.75rem 1.5rem;
}

/* Minimal Blog Card Design */
.blog-card-minimal {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Minimal Image Section */
.blog-minimal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.blog-minimal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.95);
}

.blog-card-minimal:hover .blog-minimal-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

.blog-minimal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.blog-minimal-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.blog-minimal-placeholder i {
    font-size: 3rem;
    color: white;
    z-index: 1;
    position: relative;
}

/* Category Tag */
.blog-minimal-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    border: 1px solid rgba(var(--primary-rgb, 107, 70, 193), 0.2);
    transition: all 0.3s ease;
}

.blog-card-minimal:hover .blog-minimal-category {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Content Section */
.blog-minimal-content {
    padding: 2rem;
    position: relative;
}

.blog-minimal-date {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.blog-minimal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card-minimal:hover .blog-minimal-title {
    color: var(--primary-color);
}

.blog-minimal-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Arrow Indicator */
.blog-minimal-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0.8) translateX(-10px);
    transition: all 0.3s ease;
}

.blog-card-minimal:hover .blog-minimal-arrow {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.blog-minimal-arrow i {
    transition: transform 0.3s ease;
}

.blog-card-minimal:hover .blog-minimal-arrow i {
    transform: translateX(2px);
}

/* Hover Line Effect */
.blog-card-minimal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.blog-card-minimal:hover::after {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-minimal-image {
        height: 160px;
    }
    
    .blog-minimal-content {
        padding: 1.5rem;
    }
    
    .blog-minimal-title {
        font-size: 1.05rem;
    }
    
    .blog-minimal-excerpt {
        font-size: 0.85rem;
    }
    
    .blog-minimal-arrow {
        width: 35px;
        height: 35px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Sidebar Widgets */
.widget {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget-title {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.widget-content {
    padding: 1.5rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-color);
    color: white;
}

.category-list .count {
    font-size: 0.9rem;
    opacity: 0.7;
}

.popular-post {
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.popular-post-title a {
    color: var(--text-color);
    text-decoration: none;
}

.popular-post-title a:hover {
    color: var(--primary-color);
}

.popular-post-meta {
    font-size: 0.85rem;
}

.widget-cta {
    background: var(--primary-gradient);
    color: white;
}

.widget-cta .widget-content {
    padding: 2rem;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #E5E7EB;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}