/* --- 資訊頁專屬文字節奏設定 --- */
body {
    line-height: 1.8;
    letter-spacing: 0.08em;
}


/* --- 主要容器 --- */

.catsoak-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    /* 上下區塊的距離 */
}


/* --- 區塊佈局 (Flexbox) --- */

.catsoak-intro__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}


/* 下方區塊反向排列 (左圖右文) */


/* .catsoak-intro__block--bottom {
    flex-direction: row-reverse;
} */


/* --- 文字區塊 --- */

.catsoak-intro__content {
    flex: 1;
    max-width: 500px;
}


/* 確保右側文字區塊能正確對齊 */

.catsoak-intro__content--right {
    padding-left: 2rem;
}

.catsoak-intro__title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.catsoak-intro__subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.catsoak-intro__text-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* 段落之間的間距 */
}

.catsoak-intro__desc {
    font-size: 1rem;
    font-weight: 400;
}


/* --- 圖片與遮罩處理 --- */

.catsoak-intro__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.catsoak-intro__image {
    width: 100%;
    max-width: 550px;
    height: auto;
}


/* --- 響應式設計 (RWD) --- */

@media screen and (max-width: 860px) {
    .catsoak-intro {
        padding: 3rem 1.5rem;
        gap: 4rem;
    }
    /* 在手機版時，統一改為「上圖下文」的垂直排列 */
    .catsoak-intro__block,
    .catsoak-intro__block--bottom {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    .catsoak-intro__content {
        order: 2;
        /* 文字放下面 */
        padding-left: 0;
    }
    .catsoak-intro__image-wrapper {
        order: 1;
        /* 圖片放上面 */
    }
    .catsoak-intro__title,
    .catsoak-intro__subtitle {
        margin-bottom: 1.5rem;
    }
}