.about-fullscreen-text {
    padding: 2rem 2rem;
    margin: 0 auto;
    /* 左右各留4vw邊界 */
    max-width: calc(100vw - 8vw);
    padding: 3vw 4vw;
    /* 內部邊界也用vw自適應 */
}

.about-title {
    font-size: 3vw;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.about-tagline {
    font-size: 1.7vw;
    margin-bottom: 1rem;
    text-align: center;
    font-style: italic;
}

.belief-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3vw;
    min-height: 3vw;
    /* 確保即使內容很少也有足夠高度 */
    gap: 2vw;
    /* Label和Body之間的間隔用vw控制 */
}

.belief-label {
    font-size: 2.5vw;
    min-width: 8vw;
    /* 統一字寬讓「協」「和」「春」段首對齊 */
    font-weight: 600;
    line-height: 1.5;
    white-space: pre-wrap;
    /* 保留標點與對齊 */
    font-feature-settings: "palt";
    /* 日文風格文字等寬處理 */
    text-align: left;


    /* 關鍵：在自己的容器內置中對齊 */
    display: flex;
    align-items: center;
    /* 垂直置中 */
    justify-content: center;
    /* 水平置中 */
    text-align: center;
    /* 文字本身也置中 */
}

.belief-body {
    flex: 1;
    font-size: 1.7vw;
    padding-left: 1rem;
    line-height: 2.2;
    text-indent: 2em;
    font-weight: normal;

    /* 關鍵：在自己的區域內實現理想的文字佈局 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 垂直置中 */
}

.about-closing {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    line-height: 0.35;
    font-weight: 500;
    text-align: center;
    white-space: pre-line;
}


/* === Mobile 響應式設定：768px 以下 === */
@media (max-width: 767px) {
    .belief-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .belief-label {
        font-size: 5vw;
        line-height: 1.4;
        margin-bottom: 0.3rem;
        text-align: left;
        min-width: unset;
        /* 移除等寬限制，避免過度留白 */
    }

    .belief-body {
        font-size: 3vw;
        padding-left: 0;
        text-indent: 2em;
        line-height: 1.8;

    }

    .about-title {
        font-size: 5vw;
        font-weight: bold;
        margin-bottom: 1rem;
        text-align: center;
    }

    .about-tagline {
        font-size: 3vw;
        margin-bottom: 1rem;
        text-align: center;
        font-style: italic;
    }

    .about-closing {
        font-size: 2.5vw;
        line-height: 0.35;
        font-weight: 500;
        text-align: center;
        white-space: pre-line;
    }

    .about-fullscreen-text {
        padding: 3vw;
    }

    .about-title,
    .about-tagline,
    .about-closing {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        line-height: 1;

    }
}