/* Blog News & Jobs Styles */

/* Category Filters */
.blog-categories {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.category-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-btn:hover {
    border-color: #3498db;
    color: #3498db;
    background: #e6f2ff;
}

.category-btn.active {
    background: #3498db;
    border-color: #3498db;
    color: white;
}

/* Blog Content */
.blog-content {
    padding: 4rem 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-category {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.blog-category.kosovo {
    background: #16a34a;
}

.blog-category.kod95 {
    background: #3498db;
}

.blog-category.jobs {
    background: #f59e0b;
}

.blog-category.europe {
    background: #8b5cf6;
}

.blog-date {
    color: #718096;
    font-size: 0.9rem;
}

.blog-date i {
    margin-right: 0.5rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    color: #1a1f36;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-highlights {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.blog-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-highlights li {
    padding: 0.5rem 0;
    color: #2d3748;
    position: relative;
    padding-left: 1.5rem;
}

.blog-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.job-requirements {
    background: #fef3c7;
    padding: 1.5rem;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.job-requirements p {
    margin: 0.5rem 0;
    color: #78350f;
}

.job-requirements strong {
    color: #92400e;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.read-time {
    color: #718096;
    font-size: 0.9rem;
}

.read-time i {
    margin-right: 0.5rem;
}

.read-more {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #2c7ac7;
}

.read-more i {
    margin-left: 0.5rem;
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, #3498db 0%, #2c7ac7 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.blog-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.blog-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-btn {
        width: 100%;
        text-align: center;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .blog-cta h2 {
        font-size: 1.75rem;
    }
    
    .blog-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

