

/***
=============================================
    Cross Domain Section Style
    跨界賦能：標題 + 五個圖示卡片
=============================================
***/

/* 往上拉近，銜接 orbit-diagram 底部（margin-bottom: 140px）留下的空間，
   讓下面的 divider 看起來是直接接在圓形圖表底部弧形箭頭的延伸線之後 */
.cross-domain {
    margin-top: -160px;
    padding-bottom: 60px;
    text-align: center;
}

/* 顏色/虛線樣式跟 .orbit-diagram__arrow 一致（stroke:#e5e6e7），
   視覺上延續 SVG 裡從底部弧形箭頭往下延伸出來的那條線 */
.cross-domain__divider {
    width: 0;
    height: 140px;
    margin: 0 auto;
    border-left: 3px dotted #e5e6e7;
}

.cross-domain__title {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    color: #ffb81c;
    line-height: 1.4;
}

.cross-domain__title span {
    border-top: 3px dotted #e5e6e7; 
    padding: 5px 20px
}

.cross-domain__box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 30px;
    border: 1px solid #ffe1b0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
}

.cross-domain__item {
    display: flex;
    flex: 1 1 0;
    min-width: 110px;
    flex-direction: column;
    align-items: center;
}

.cross-domain__icon {
    width: 110px;
    height: 110px;
    margin-bottom: 14px;
    border-radius: 50%;
    border: 2px solid #ffb81c;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cross-domain__label {
    font-size: 15px;
    font-weight: 700;
    color: #1a2b3c;
    text-align: center;
}

@media (max-width: 767px) {
    /* 窄螢幕下 orbit-block 改回一般文件流（見 large-img-section.css），
       圓形圖表下方不再保留給側邊 block 的固定空間，負 margin 會造成疊圖，改回正常間距 */
    .cross-domain {
        margin-top: 20px;
    }

    .cross-domain__box {
        gap: 24px 16px;
        padding: 30px 16px;
    }

    .cross-domain__item {
        min-width: 90px;
        flex: 1 1 40%;
    }

    .cross-domain__icon {
        width: 88px;
        height: 88px;
    }

    .cross-domain__label {
        font-size: 13px;
    }
}
