/* Case Studies specific styles */

/* Category filter buttons */
.category-filter-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.category-filter-btn:hover {
    background-color: #f3f4f6;
}

.category-filter-btn.active {
    background-color: #009FE3;
    color: white;
    border-color: #009FE3;
}

/* Card hover effects */
.case-study-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Line clamp utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .category-filter-btn {
        margin-bottom: 0.5rem;
    }
}

/* Stats styling */
.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #009FE3;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}
