﻿/* 小標籤：仿截圖的橘色「品質政策」標題 */
.topic-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: #ff6a00;
}

    .topic-label::before {
        content: "";
        width: .6rem;
        height: 1.2rem;
        background: #ff6a00;
        border-radius: .2rem;
    }

/* 文章段落排版 */
.lead-para {
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--bs-body-color);
}

/* 形象圖卡 */
.quality-figure {
    border-radius: 1rem;
    overflow: hidden;
}

    .quality-figure img {
        object-fit: cover;
    }

/* 榮耀：直式時間軸 */
.timeline {
    position: relative;
    margin: 0;
    padding-left: 1.25rem;
    list-style: none;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: .35rem;
        top: .2rem;
        bottom: .2rem;
        width: 2px;
        background: var(--bs-border-color, #e5e7eb);
    }

    .timeline li {
        position: relative;
        margin: 0 0 1rem 0;
        padding-left: 1rem;
    }

        .timeline li::before {
            content: "";
            position: absolute;
            left: -.1rem;
            top: .35rem;
            width: .6rem;
            height: .6rem;
            border-radius: 50%;
            background: var(--bs-primary, #0d6efd);
            box-shadow: 0 0 0 4px rgba(13,110,253,.12);
        }

    .timeline .year {
        font-weight: 700;
        margin-right: .5rem;
        color: var(--bs-primary);
    }
