/* ============================================== */
/* 廟務系統（主頁）第一區塊 */
/* ============================================== */

/* 背景圖 -------------------- */
.temple_system_container_01{
    background-image: url(https://www.geneinfo.com.tw/uploads/root/service/images/temple_system/bg1_img.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /* height: 130vh; */
    height: clamp(33.688rem, -2.248rem + 58.02vw, 67.375rem);
    min-height: auto;
    position: relative;
    /* aspect-ratio: 24 / 13; */
    z-index: -1;
}

.temple_system_about{
    padding-top: clamp(4.375rem, -0.292rem + 7.53vw, 8.75rem); /* 70 140 */
    padding-left: clamp(3.75rem, -0.25rem + 6.46vw, 7.5rem); /* 60 120 */
}

.temple_system_about{
    width: 100%;
    max-width: 41.875rem; /* 670 */
}

/* 大標題 -------------------- */
h2.temple_system_about_title{
    color: #222;
    font-size: clamp(1.563rem, -0.104rem + 2.69vw, 3.125rem); /* 25 50 */
    font-weight: 700;
    line-height: 1;
    letter-spacing: clamp(0.313rem, -0.021rem + 0.54vw, 0.625rem); /* 5 10 */
    padding: 0;
    margin: 0;
    margin-bottom: clamp(1.875rem, -0.125rem + 3.23vw, 3.75rem); /* 30 60 */
}

/* 內文 -------------------- */
.temple_system_about_description{
    color: #333;
    font-size: clamp(1rem, 0.733rem + 0.43vw, 1.25rem); /* 16 20 */
    line-height: 2;
    position: relative;
    z-index: 1;

    text-shadow: 0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 30px #fff,
    0 0 40px #fff;
}



@media (max-width: 1100px) {
    .temple_system_container_01{
        aspect-ratio: unset;
        height: 90vh;
        padding: 0px 20px;
    }

    .temple_system_container_01::before{
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        opacity: 0.6;
    }
}

@media (max-width: 840px) {
    .temple_system_about {
        padding-left: unset;
    }
}

@media (max-width: 500px) {
    .temple_system_container_01{
        height: 36.25rem;
    }
}



/* ============================================== */
/* 廟務系統（主頁）第二區塊 */
/* ============================================== */

.temple_system_container_02{
    position: relative;
}

/* 背景圖 -------------------- */
.temple_system_container_02::before{
    content: "";
    position: absolute;
    inset: 0; /* 等同 top:0; right:0; bottom:0; left:0 */
    background: url('https://www.geneinfo.com.tw/uploads/root/service/images/temple_system/bg2_img.webp') center / cover no-repeat;
    aspect-ratio: 48 / 31;
    transform: translateY(-160px);
    z-index: -1;
}

.temple_system_container_02 .wrap{
    padding-top: clamp(2.813rem, -5.188rem + 12.92vw, 10.313rem); /* 45 165 */
    padding-bottom: clamp(3.594rem, -0.24rem + 6.19vw, 7.188rem); /* 57.5 115 */
}

/* 文字區塊 --------------------- */
.temple_system_core{
    font-size: clamp(1rem, 0.733rem + 0.43vw, 1.25rem); /* 16 20 */
    text-align: center;
    width: 100%;
    max-width: 65.625rem;
    margin: 0 auto;
    line-height: 2;
}

/* 大標題 ----------------------- */
.temple_system_core_title{
    color: #000;
    font-size: clamp(1.563rem, -0.104rem + 2.69vw, 3.125rem); /* 25 50 */
    font-weight: 700;
    line-height: 1;
    letter-spacing: clamp(0.313rem, -0.021rem + 0.54vw, 0.625rem); /* 5 10 */
    text-align: center;
    padding: 0;
    margin: 0;
    padding-bottom: clamp(1.875rem, -0.125rem + 3.23vw, 3.75rem);
}

/*卡片區塊- --------------------*/

.core_card_area{

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.938rem, -0.063rem + 1.61vw, 1.875rem);

    width: 100%;
    max-width: 98.125rem;
    margin: 0 auto;
    padding-top: 100px;
}

.core_card_list{
    background-color: #fff;
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 42px 0;
}

.card_list_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(1.875rem, -0.125rem + 3.23vw, 3.75rem);
}



/* 圖片區塊------------------- */
.core_card_img_area{
    width: clamp(4.688rem, -0.313rem + 8.07vw, 9.375rem);
    margin: 0 auto;
}

.core_card_img_area .core_card_img{
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
}

.core_card_img_area .core_card_img img{
    width:100%;
    height:auto;
    transition: all 0.3s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    float: none;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: all 0.3s ease-out;
}

.core_card_info{
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, -0.042rem + 1.08vw, 1.25rem);
    width: 90%;
    max-width: 19.375rem; /* 310 */
    margin: 0 auto;
}

.core_card_tit{
    font-size: clamp(1.125rem, -0.075rem + 1.94vw, 2.25rem); /*18 36*/
    font-weight: bold;
    color: #00427E;
}

.core_card_text{
    font-size: clamp(1rem, 0.733rem + 0.43vw, 1.25rem); /* 16 20 */
    line-height: 2;
    letter-spacing: 3px;
}


@media (max-width: 990px) {
    .core_card_area{
        
    }
}


@media (max-width: 840px) {
    .core_card_area{
        grid-template-columns: repeat(2, 1fr);
    }

    .temple_system_container_02::before {
        transform: translateY(-70px);
    }
}

@media (max-width: 540px) {

    .temple_system_container_02{}

    .core_card_area{
        grid-template-columns: repeat(1, 1fr);
    }

}

@media (max-width: 420px) {
    .temple_system_container_02 .wrap{
        padding-top: 0;
    }

}


/* ============================================== */
/* 廟務系統（主頁）第三區塊 */
/* ============================================== */

/* 外層 */
.temple_system_container_03{
    width: 100%;
    background-color: #000;
}

/* 內層 */
.temple_system_container_03 .temple_system_inner{
    display: flex;
    width: 100%;
    min-height: clamp(16.563rem, -1.105rem + 28.53vw, 33.125rem);
}

/* 左文字 */
.temple_system_container_03 .ts03_text{
    width: 45%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6.25rem; /* 100 */
    box-sizing: border-box;
}

.temple_system_container_03 .ts03_text_content{
    max-width: 46.875rem; /* 750 */
    line-height: 2;
    font-size: clamp(1rem, 0.733rem + 0.43vw, 1.25rem); /* 16 20 */
    font-weight: 300;
    letter-spacing: .3125rem; /* 5 */
}

/* 右圖片 */
.temple_system_container_03 .ts03_img{
    position: relative;
    width: 55%;
    background: url('https://www.geneinfo.com.tw/uploads/root/service/images/temple_system/temple_system_container_03bg.webp') center / cover no-repeat;
    overflow: hidden;
}

/* 遮罩 */
.temple_system_container_03 .ts03_img::after{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0) 100%
    );

    pointer-events: none;
}



@media (max-width: 1024px){
    .temple_system_container_03 .ts03_text{
        padding: 40px;
    }
}

@media (max-width: 768px){
    .temple_system_container_03 .temple_system_inner{
        flex-direction: column;
    }

    .temple_system_container_03 .ts03_text,
    .temple_system_container_03 .ts03_img{
        width: 100%;
    }

    .temple_system_container_03 .ts03_img{
        height: 250px;
    }

    .temple_system_container_03 .ts03_text{
        padding: 30px 20px;
        text-align: center;
    }

    .temple_system_container_03 .ts03_img::after{
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 100%
        );
    }
}


/* ============================================== */
/* 廟務系統（主頁）第四區塊 */
/* ============================================== */

/* 外層 */
.temple_system_container_04{
    width: 100%;
    padding: 9.375rem 0px; /* 150 0 */
    box-sizing: border-box;
}

/* 內層 */
.temple_system_container_04 .ts04_inner{
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    gap: clamp(1.25rem, -0.083rem + 2.15vw, 2.5rem); /* 20 40 */
    align-items: stretch;
}

/* 左圖 */
.temple_system_container_04 .ts04_media{
    width: 35%;
    min-width: clamp(31.25rem, 27.25rem + 6.46vw, 35rem); /* 500 560 */
    background: url('https://www.geneinfo.com.tw/uploads/root/service/images/temple_system/temple_system_container_04img.webp') center / cover no-repeat;
    height: auto;
}

/* 右側內容 */
.temple_system_container_04 .ts04_content{
    width: 70%;
}

/* 標題 */
.temple_system_container_04 .ts04_title{
    color: #000;
    font-size: clamp(1.563rem, -0.104rem + 2.69vw, 3.125rem); /* 25 50 */
    font-weight: 700;
    line-height: 1;
    letter-spacing: clamp(0.313rem, -0.021rem + 0.54vw, 0.625rem); /* 5 10 */
    padding: 0;
    margin: 0;
    padding-bottom: clamp(1.875rem, -0.125rem + 3.23vw, 3.75rem);
}

/* 卡片列表 */
.temple_system_container_04 .ts04_list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 單一項目 */
.temple_system_container_04 .ts04_item{
    background: #fff;
    border: 2px solid #C8C8C8;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 40px;
}

/* 標題 */
.temple_system_container_04 .ts04_item_title{
    font-weight: 700;
    font-size: clamp(1rem, -0.067rem + 1.72vw, 2rem);
    margin-bottom: 10px;
}

/* 內文 */
.temple_system_container_04 .ts04_item_text{
    font-size: clamp(1rem, 0.733rem + 0.43vw, 1.25rem); /* 16 20 */
    line-height: 2;
    letter-spacing: 5px;
    color: #444;
    
    min-height: 5rem; /* 80 */
    display: flex;
    align-items: center;
}




/* 平板 */
@media (max-width: 1024px){

    .temple_system_container_04 .ts04_inner{
        flex-direction: column;
    }

    /* 🔥 隱藏圖片（你指定的） */
    .temple_system_container_04 .ts04_media{
        display: none;
    }

    .temple_system_container_04 .ts04_content{
        width: 100%;
    }
}

/* 手機 */
@media (max-width: 768px){

    .temple_system_container_04{
        padding: 60px 16px;
    }

    .temple_system_container_04 .ts04_item{
        padding: 16px 18px;
    }

    .temple_system_container_04 .ts04_title{
        text-align: center;
    }
}


/* ============================================== */
/* 廟務系統（主頁）第五區塊 */
/* ============================================== */

/* 外層 */
.temple_system_container_05{
    position: relative;
    padding: 90px 20px;
    padding-bottom: clamp(5.938rem, -13.064rem + 30.68vw, 23.75rem); /* 380 */
    overflow: hidden;
}

/* 大背景 */
.temple_system_container_05::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://www.geneinfo.com.tw/uploads/root/service/images/temple_system/bg_img5.webp') left bottom no-repeat;
    opacity: 1;
    z-index: 0;
}

/* 內層 */
.temple_system_container_05 .ts05_inner{
    position: relative;
    z-index: 1;
    max-width: 80%;
    margin: 0 auto;
}

/* 標題區 */
.temple_system_container_05 .ts05_header{
    text-align: center;
    max-width: 66.875rem; /* 1070 */
    margin: 0 auto 60px;
}

.temple_system_container_05 .ts05_title{
    color: #000;
    font-size: clamp(1.563rem, -0.104rem + 2.69vw, 3.125rem); /* 25 50 */
    font-weight: 700;
    line-height: 1;
    letter-spacing: clamp(0.313rem, -0.021rem + 0.54vw, 0.625rem); /* 5 10 */
    padding: 0;
    margin: 0;
    padding-bottom: clamp(1.875rem, -0.125rem + 3.23vw, 3.75rem);
}

.temple_system_container_05 .ts05_desc{
    font-size: clamp(1rem, 0.733rem + 0.43vw, 1.25rem); /* 16 20 */
    text-align: center;
    width: 100%;
    margin: 0 auto;
    line-height: 2;
    letter-spacing: 5px;
}


/* 卡片外層區塊------------------------------------- */
.temple_system_container_05 .ts05_grid_area{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.938rem, -0.063rem + 1.61vw, 1.875rem);

    align-items: stretch;
}

/* 卡片 */
.temple_system_container_05 .ts05_card{
    padding: clamp(0.938rem, -0.063rem + 1.61vw, 1.875rem); /* 15 30 */
    position: relative;
    background: #143c44;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: auto;
}

/* 內框線（細框） */
.temple_system_container_05 .ts05_card_inner{
    position: relative;
    border: 1px solid #fff;
    padding: 85px 50px;
    display: flex;
    flex-direction: column;
    gap: clamp(0.938rem, -0.063rem + 1.61vw, 1.875rem); /* 15 30 */
    flex: 1;
}

/* 浮水印 */
.temple_system_container_05 .ts05_card::before{
    content: "";
    position: absolute;
    right: -20px;
    bottom: -40px;

    width: clamp(10.625rem, -0.709rem + 18.3vw, 21.25rem); /* 170 340 */
    aspect-ratio: 1 / 1;

    background: url('https://www.geneinfo.com.tw/uploads/root/service/images/temple_system/flower.webp') center / contain no-repeat;
    opacity: 0.3;

    pointer-events: none;
}

/* 標題 */
.temple_system_container_05 .ts05_card_title{
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.125rem, -0.075rem + 1.94vw, 2.25rem); /* 18 36 */
}

/* 文字 */
.temple_system_container_05 .ts05_card_text{
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 0.733rem + 0.43vw, 1.25rem); /* 16 20 */
    line-height: 2;
    letter-spacing: 5px;
    min-height: 7.5rem; /* 120 */
}


/* 平板 */
@media (max-width: 1024px){
    .temple_system_container_05 .ts05_grid_area{
        gap: 20px;
    }
}

/* 手機 */
@media (max-width: 768px){

    .temple_system_container_05{
        padding: 80px 16px;
    }

    .temple_system_container_05 .ts05_grid_area{
        grid-template-columns: 1fr;
    }

    .temple_system_container_05 .ts05_header{
        margin-bottom: 40px;
    }

    /* 浮水印縮小 */
    .temple_system_container_05 .ts05_card::before{
        width: 140px;
        right: -10px;
        bottom: -10px;
    }
}
@media (max-width: 540px){

    .temple_system_container_05 .ts05_inner {
        max-width: 90%;
    }

    .temple_system_container_05 .ts05_card_inner{
        padding: 35px 15px;
    }
}

/* =================================================== */
/* 蜂巢圖--------------------------------------------- */
/* =================================================== */
.honeycomb_area{
    width: 100%;
}

.honeycomb_area_title{
    color: #000;
    font-size: clamp(1.563rem, -0.104rem + 2.69vw, 3.125rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: clamp(0.313rem, -0.021rem + 0.54vw, 0.625rem);
    text-align: center;
    padding: 0;
    margin: 0;
    padding-bottom: clamp(1.875rem, -0.125rem + 3.23vw, 3.75rem);
}

.honeycomb_area .honeycomb_img_area{
    width: 100%;
}

.honeycomb_img{
    display: block;
    position: relative;
    /* aspect-ratio: 15 / 8; */
    padding-top: 53%;
}

.honeycomb_img img{
    width:100%;
    height:auto;
    transition: all 0.3s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    float: none;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: all 0.3s ease-out;
}

@media (max-width: 640px){
    .honeycomb_img{
        padding-top: 85%;
    }
}

@media (max-width: 450px){
    .honeycomb_img{
        padding-top: 100%;
    }
}