/* Process Tiles Block Styles */
.process-tiles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-tile {
    min-height: 16rem;
    backdrop-filter: blur(10px);
}

.process-tile:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Smooth transitions for all elements */
.process-tile * {
    transition: all 0.3s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-tiles-container .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-tile {
        min-height: 12rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .process-tiles-container .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Custom hover effects */
.process-tile:hover .bg-blue-500 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.process-tile:hover .bg-yellow-500 {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.process-tile:hover .bg-red-500 {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.process-tile:hover .bg-green-500 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}