/* Process V2 Block - aligned with test.html .process-section / .steps, tokens from css/src/main.css */

.wp-block-truckpoint-processv2 {
    padding: 58px 40px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.processv2-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.processv2-center {
    text-align: center;
    margin-bottom: 36px;
}

.processv2-center .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--brand);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-family: var(--font-head);
    background: none;
    padding: 0;
    margin-bottom: 10px;
}

.processv2-center .section-label:before,
.processv2-center .section-label:after {
    content: "";
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand));
}

.processv2-center .section-label:after {
    background: linear-gradient(90deg, var(--brand), transparent);
}

.section-title {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.8px;
    margin: 10px 0 8px;
}

.section-title .highlight {
    background: linear-gradient(90deg, var(--brand), var(--acc));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--grey);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
}

/* Default Style */
.prozess-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 36px auto 0;
}

.processv2-default .prozess-grid::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 16.67%;
    right: 16.67%;
    height: 3px;
    background: linear-gradient(90deg, var(--ink), var(--brand), var(--ink));
    z-index: 0;
}

.prozess-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
    font-family: var(--font-body);
}

.prozess-num {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), #7b3dff);
    color: #fff;
    font-weight: 800;
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 14px 30px rgba(47, 140, 255, .35);
    font-family: var(--font-head);
}

.prozess-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.prozess-text {
    font-size: 13.5px;
    color: var(--grey);
}

/* Compact Style */
.processv2-compact .prozess-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 600px;
}

.processv2-compact .prozess-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 20px;
    background: var(--bg);
    border-radius: 12px;
}

.processv2-compact .prozess-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 13px;
    margin: 0;
    flex-shrink: 0;
}

.processv2-compact .prozess-title {
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .wp-block-truckpoint-processv2 {
        padding: 48px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .prozess-grid {
        grid-template-columns: 1fr;
    }

    .processv2-default .prozess-grid::before {
        display: none;
    }
}
