.hero {
    height: 90vh;
    background: linear-gradient(var(--companyLogo), var(--Highlights), var(--companyLogo));
    background-size: cover;
    background-position: center;

    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    height: 90vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1,
.hero-content img {
    grid-area: 1 / 1;
}
.hero-content img {
    max-height: 90vh;
    max-width: 100vw;
    width: 100%;
    height: 100%;
    /* filter: blur(1.5px); */
    /* object-fit: cover; */
    /* 裁切多餘部分，圖片不變形且完整填滿 div */
}

.hero-content h1 {
    border-radius: 8px;
    /* background-color: rgba(0, 0, 0, 0.4); */
    z-index: 1;
    font-size: 3rem;
}


.row-cross {
    display: flex;
    flex-direction: row;
}

/* 基礎設定 */
.careers-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.career-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* 圓環設定 */
.circle-box {
    width: fit-content;
    border: 0px solid #007bff;
    /* 4px 粗邊框形成圓環效果 */
    background-color: transparent;
    border-radius: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* 防止圓環在空間不足時被擠壓變形 */
    padding: 15px;
}

/* 圓環內的標題 */
.circle-title {
    font-size: 2rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 600;
}

/* 右側文字內容區 */
.content-box {
    flex: 1;
    padding: 0 clamp(60px, 3vw, 80px);
}

.content-word {
    font-size: 1.4rem;
    margin-bottom: clamp(10px, 1vh, 20px)
}

.frame-img {
    width: 100%;
    flex: 0 0 40%;
    margin-left: 8px;
}

.content-img {
    width: 100%;
    /* border: 2px solid #00ccff; */
}

/* 條列式文字樣式 */
.list-content {
    list-style-type: disc;
    /* 標準圓點清單 */
    padding-left: 20px;
    /* 給圓點保留縮排空間 */
    margin: 0;
}

.list-content li {
    font-size: 1.4rem;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 10px;
}

.list-content li:last-child {
    margin-bottom: 0;
}

@media(max-width: 768px) {
    .hero,
    .hero-content{
        height: 40vh;
    }
    .row-cross{
        flex-direction: column;
    }
    
    .careers-container{
        padding: 0;
    }
    .circle-title{
        font-size: 1.8rem;
    }
    .content-box{
        padding: 8px 0;
    }
}

@media screen and (min-width: 768px) {
    /* .career-row {

        flex-direction: row;
        align-items: center;
        gap: 40px;
        padding: 30px 40px;
    } 
    */

    .content-box {
        flex: 1;
        /* 讓文字區塊自動填滿右側剩餘的所有空間 */
    }
}