.ec1-process-chain
{
    display: grid;
    grid-template-columns: repeat(6, minmax(110px, 1fr));
    gap: 1.75rem;
    align-items: stretch;
}

.ec1-process-step
{
    position: relative;
    min-width: 0;
    padding: 1rem 0.9rem;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(34, 140, 114, 0.12);
    border: 1px solid rgba(34, 140, 114, 0.15);
    text-align: center;
}

.ec1-process-step:not(:last-child)::after
{
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    right: -1.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7bccb9;
    font-size: 1rem;
}

.ec1-process-step i
{
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #228c72;
}

.ec1-process-step span
{
    display: block;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.ec1-process-step small
{
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.25;
    color: #6b7280;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

@media (max-width: 1199px)
{
    .ec1-process-chain
    {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
        gap: 1.25rem;
    }

    .ec1-process-step::after
    {
        display: none;
    }
}

@media (max-width: 767px)
{
    .ec1-process-chain
    {
        grid-template-columns: repeat(2, minmax(145px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 575px)
{
    .ec1-process-chain
    {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .ec1-process-step
    {
        display: flex;
        align-items: flex-start;
        text-align: left;
        padding: 0.85rem 1rem;
    }

    .ec1-process-step i
    {
        margin: 0 0.85rem 0 0;
        min-width: 28px;
        font-size: 1.35rem;
    }

    .ec1-process-step:not(:last-child)::before
    {
        content: "\f063";
        font-family: "Font Awesome 6 Pro";
        font-weight: 900;
        position: absolute;

        left: 50%;
        bottom: -1.6rem;

        transform: translateX(-50%);

        color: #7bccb9;
        font-size: 1rem;
        line-height: 2rem;
        z-index: 3;
    }

    .ec1-process-step > div
    {
        min-width: 0;
    }
}