/* Transparent Supply Chain — display-only timeline / flow / map-anchored. */

.lyra-bt-sc {
    max-width: 1080px;
    margin: 0 auto;
    padding: 36px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
}
.lyra-bt-sc *, .lyra-bt-sc *::before, .lyra-bt-sc *::after { box-sizing: border-box; }

.lyra-bt-sc__heading {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.lyra-bt-sc__subheading {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 16px;
    text-align: center;
}
.lyra-bt-sc__intro {
    margin: 0 auto 28px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    max-width: 720px;
    text-align: center;
}
.lyra-bt-sc__empty {
    color: #64748b;
    font-style: italic;
    text-align: center;
    padding: 32px 0;
}

/* Step number bubble (used by vertical + horizontal). */
.lyra-bt-sc__step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* bg color injected inline */
}

.lyra-bt-sc__step-location {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lyra-bt-sc__pin { font-size: 14px; }
.lyra-bt-sc__step-party {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}
.lyra-bt-sc__step-what {
    margin: 6px 0 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}
.lyra-bt-sc__step-photo-wrap {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
}
.lyra-bt-sc__step-photo {
    width: 100%;
    height: auto;
    display: block;
}

.lyra-bt-sc__cert-wrap {
    margin-top: 10px;
}
.lyra-bt-sc__cert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1.5px solid currentColor;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    /* color injected inline */
}
.lyra-bt-sc__cert-badge {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ─── Vertical timeline ────────────────────────────────────────────── */
.lyra-bt-sc--vertical_timeline .lyra-bt-sc__vertical {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}
.lyra-bt-sc__track {
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    border-radius: 1px;
    /* color injected inline */
}
.lyra-bt-sc__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.lyra-bt-sc--vertical_timeline .lyra-bt-sc__step {
    display: flex;
    gap: 16px;
    position: relative;
}
.lyra-bt-sc--vertical_timeline .lyra-bt-sc__step-body {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 18px;
}

/* ─── Horizontal flow ──────────────────────────────────────────────── */
.lyra-bt-sc--horizontal_flow .lyra-bt-sc__horizontal {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 4px 20px;
    align-items: stretch;
    scrollbar-width: thin;
}
.lyra-bt-sc__h-step {
    flex: 0 0 240px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lyra-bt-sc__h-step .lyra-bt-sc__step-number { margin-bottom: 4px; }
.lyra-bt-sc__arrow {
    align-self: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    /* color injected inline */
}

/* ─── Map-anchored ─────────────────────────────────────────────────── */
.lyra-bt-sc--map_anchored .lyra-bt-sc__map {
    position: relative;
    padding: 24px 12px 12px;
}
.lyra-bt-sc__map-line {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50px;
    height: 2px;
    border-radius: 1px;
    z-index: 0;
    /* color injected inline */
}
.lyra-bt-sc__map-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}
.lyra-bt-sc__map-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.lyra-bt-sc--map_anchored .lyra-bt-sc__pin {
    font-size: 28px;
    line-height: 1;
    background: #fff;
    border-radius: 50%;
    padding: 2px 4px;
}
.lyra-bt-sc__map-chip-body {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    width: 100%;
    text-align: left;
}

@media (max-width: 640px) {
    .lyra-bt-sc--vertical_timeline .lyra-bt-sc__step { gap: 12px; }
    .lyra-bt-sc__track { left: 16px; }
    .lyra-bt-sc--horizontal_flow .lyra-bt-sc__h-step { flex-basis: 200px; }
}
