/* Integration procedure page (Views/Info/Procedure.cshtml) */
.procedure__section {
    margin-top: 32px;
}

.procedure__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.procedure__number {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 18px;
    background-color: #1286a4;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.procedure__subheading {
    margin: 24px 0 16px;
    font-size: 18px;
    font-weight: 600;
}

.procedure__legal {
    color: #777;
}

.procedure__table {
    max-width: 640px;
    border: 1px solid #e3e3e3;
}

    .procedure__table > thead > tr > th {
        background-color: #e7f3f6;
        color: #0d6379;
        border-bottom: 0;
    }

.procedure__badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    background-color: #dff0d8;
    color: #3c763d;
    font-size: 13px;
    font-weight: 600;
}

/* Vertical stepper: numbered circles joined by a connector line */
.procedure__steps {
    list-style: none;
    counter-reset: procedure-step;
    margin: 0 0 20px;
    padding-left: 0;
}

    .procedure__steps > li {
        counter-increment: procedure-step;
        position: relative;
        min-height: 32px;
        padding: 6px 0 16px 48px;
    }

        .procedure__steps > li::before {
            content: counter(procedure-step);
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border: 2px solid #1286a4;
            border-radius: 50%;
            background-color: #fff;
            color: #1286a4;
            font-weight: 700;
        }

        .procedure__steps > li:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 32px;
            bottom: 0;
            left: 15px;
            width: 2px;
            background-color: #d4e8ee;
        }

.procedure__hint {
    display: block;
    margin-top: 2px;
    color: #777;
}

.procedure__callout {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0 0 16px;
    padding: 12px 16px;
    border-left: 4px solid #1286a4;
    border-radius: 4px;
    background-color: #e7f3f6;
}

    .procedure__callout > .fa {
        color: #1286a4;
    }

.procedure__checklist {
    list-style: none;
    padding-left: 0;
}

    .procedure__checklist > li {
        position: relative;
        margin-bottom: 16px;
        padding-left: 28px;
    }

        .procedure__checklist > li::before {
            content: "\f00c";
            position: absolute;
            top: 1px;
            left: 0;
            font-family: FontAwesome;
            color: #1286a4;
        }

.procedure__note {
    margin: 8px 0 0;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #555;
    font-style: italic;
}

.procedure__warning {
    display: block;
    margin-top: 4px;
    color: #a94442;
}

.procedure code {
    background-color: #f5f5f5;
    color: #333;
}

.procedure__faq {
    margin: 0;
}

.procedure__faq-item {
    margin-bottom: 12px;
    padding: 12px 16px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
}

    .procedure__faq-item > dt {
        margin-bottom: 4px;
        color: #0d6379;
    }

    .procedure__faq-item > dd {
        margin: 0;
    }

@media (max-width: 767px) {
    .procedure__heading {
        font-size: 18px;
    }
}
