/* ============================================================
 * v6.2 Step 3 Route Map + Statement Cards
 * Class names prefixed t2i- to avoid collisions with page CSS.
 * ============================================================ */
.t2i-step3-map {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e7ff;
}
.t2i-step3-map svg { display: block; width: 100%; height: auto; }

.t2i-step3-stmt-block {
    margin-top: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1f2937;
}
.t2i-stmt-header {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
    letter-spacing: 0.2px;
}
.t2i-stmt-sub {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 14px;
}
.t2i-stmt-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.t2i-stmt-card {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.t2i-stmt-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.t2i-stmt-num {
    flex: 0 0 32px;
    height: 32px;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.t2i-stmt-body { flex: 1; min-width: 0; }
.t2i-stmt-route {
    font-size: 14px;
    color: #111827;
    margin-bottom: 6px;
    font-weight: 500;
}
.t2i-stmt-route strong { font-weight: 700; }
.t2i-stmt-route .t2i-arrow { color: #9ca3af; margin: 0 6px; }
.t2i-stmt-mode-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}
.t2i-stmt-mode-chip {
    display: inline-block;
    padding: 3px 10px;
    border: 1.5px solid;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    background: white;
}
.t2i-stmt-via { font-size: 12px; color: #4b5563; margin-bottom: 4px; }
.t2i-stmt-via .t2i-via-label { font-weight: 600; color: #6b7280; margin-right: 4px; }
.t2i-stmt-via .t2i-via-tag {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 4px;
    background: #f3f4f6;
    font-weight: 700;
    color: #374151;
    font-size: 11px;
    letter-spacing: 0.3px;
    margin: 0 2px;
}
.t2i-stmt-via .t2i-via-arrow { color: #9ca3af; margin: 0 2px; }
.t2i-stmt-reason {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.55;
    margin-top: 6px;
}
.t2i-stmt-reason::before {
    content: "Why this mode: ";
    color: #6b7280;
    font-weight: 600;
}
