/* workflow.css — адаптовано під /template-parts/workflow-dynamic.php */

.workflow {
    padding: 60px 20px;
    background-color: #fff7f0;
    text-align: center;
}

.workflow .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-step {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
}

.workflow-step:hover {
    transform: translateY(-4px);
}

.workflow-step img {
    max-width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.workflow-step p {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}