/* ============================================
   形狀藝術 SHAPE_ART - 全站樣式
   電腦版 1920 寬基準，自適應縮放
   (common + pages 合併)
   ============================================ */

/* MARK:字型 Inter (本地端 Variable Font) */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Variable-Italic.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* MARK:CSS 重置 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
    font-weight: 300;
    color: #242424;
    background-image: url('../images/body_bg.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

/* MARK:色彩變數 */
:root {
    --color-bg: #ededed;
    --color-bg-dark: #565656;
    --color-bg-darker: #373737;
    --color-text-dark: #242424;
    --color-text: #3e3f3f;
    --color-text-muted: #7b7b7b;
    --color-text-light: #949494;
    --color-text-lighter: #acacac;
    --color-line: #e1e1e1;
    --color-overlay: rgba(86, 86, 86, 0.4);

    --container-width: 1350px;
    --header-height: 108px;
    --footer-height: 308px;

    /* gs 共用配色變數 */
    --main: #3e3f3f;
    --white: #ffffff;
}

/* MARK:--container-width 隨 gs_container 斷點動態調整 */
@media (max-width: 1640px) {
    :root {
        --container-width: 1300px;
    }
}

@media (max-width: 1400px) {
    :root {
        --container-width: 1140px;
    }
}

@media (max-width: 1199px) {
    :root {
        --container-width: 960px;
    }
}

@media (max-width: 991px) {
    :root {
        --container-width: 720px;
    }
}

@media (max-width: 767px) {
    :root {
        --container-width: 540px;
    }
}

@media (max-width: 575px) {
    :root {
        --container-width: 100%;
    }
}

/* MARK:頂部導覽列 (Header)
   設計來源: Figma 14:394
   預設透明 (覆蓋於頁面內容/主視覺上)
   滾動後加 .is_scrolled → 毛玻璃底
   暗底主視覺時加 .is_dark → logo/menu 反白 */
.is_nav_open .site_header {
    opacity: 0;
}
.site_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 78px;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
#site_header_mobile {
    display: none;
}
/* 滾動後: 毛玻璃底 */
.site_header.is_scrolled {
    background: rgba(237, 237, 237, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
    .site_header.is_scrolled {
        background: #FFFFFF;
        backdrop-filter: unset;
        -webkit-backdrop-filter: unset;
    }
}

@media (max-width: 767px) {
    #site_header {
        display: none;
    }

    #site_header_mobile {
        display: flex;
    }
}
/* 暗底主視覺時 logo / menu 反白 (僅透明時生效) */
.site_header.is_dark .site_logo,
.site_header.is_dark .menu_toggle_btn {
    filter: brightness(0) invert(1);
}

/* 滾動後即使主視覺仍在暗底，玻璃底已淺色，恢復原色 */
.site_header.is_scrolled.is_dark .site_logo,
.site_header.is_scrolled.is_dark .menu_toggle_btn {
    filter: none;
}

/* 無 logo Header (作品瀏覽頁) - 只保留右側漢堡 */
.site_header.is_no_logo .site_logo,
.site_header.is_no_logo .site_logo_placeholder {
    visibility: hidden;
    pointer-events: none;
}

.site_logo {
    display: block;
    width: 144px;
    height: 44px;
    background-image: url('../images/logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

@media (max-width: 767px) {
    .site_logo {
        width: 94px;
        height: 28px;
    }
}

.site_logo span {
    /* 視覺隱藏，保留語意 */
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.menu_toggle_btn {
    width: 44px;
    height: 44px;
    background-image: url('../images/icon_menu.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: opacity 0.2s ease;
}

.menu_toggle_btn:hover {
    opacity: 0.7;
}

/* MARK:側拉式導覽選單 (Drawer) */
.nav_drawer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 220px;
}

.nav_drawer.is_open {
    opacity: 1;
    visibility: visible;
}

.nav_drawer_close {
    position: absolute;
    top: 32px;
    right: 40px;
    width: 44px;
    height: 44px;
    background-image: url('../images/icon_close.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.nav_drawer_inner {
    width: 451px;
    height: 502px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav_main {
    text-align: right;
    margin-bottom: 0;
}

.nav_main li {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0s, transform 0s;
}

/* 開啟後依序淡入滑入 */
.nav_drawer.is_open .nav_main li {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.nav_drawer.is_open .nav_main li:nth-child(1) {
    transition-delay: 0.08s;
}

.nav_drawer.is_open .nav_main li:nth-child(2) {
    transition-delay: 0.16s;
}

.nav_drawer.is_open .nav_main li:nth-child(3) {
    transition-delay: 0.24s;
}

.nav_drawer.is_open .nav_main li:nth-child(4) {
    transition-delay: 0.32s;
}

.nav_drawer.is_open .nav_main li:nth-child(5) {
    transition-delay: 0.40s;
}

.nav_drawer.is_open .nav_main li:nth-child(6) {
    transition-delay: 0.48s;
}

/* 底部搜尋 / 語言也依序進入 */
.nav_drawer_bottom {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0s, transform 0s;
}

.nav_drawer.is_open .nav_drawer_bottom {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition-delay: 0.56s;
}

.nav_main a {
    font-size: 18px;
    letter-spacing: 1.8px;
    color: #e5e5e5;
    transition: color 0.2s ease;
}

.nav_main a:hover,
.nav_main li.is_active a {
    color: #ffffff;
    font-weight: 400;
}

.nav_drawer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav_search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--color-text-muted);
    padding-bottom: 8px;
}

.nav_search_icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.6;
    color: #fff;
}

.nav_search input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 1.6px;
    outline: none;
}

.nav_search input::placeholder {
    color: var(--color-text-muted);
}

.nav_lang {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav_lang_item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 39px;
    color: var(--color-text-muted);
    font-size: 18px;
    letter-spacing: 1.8px;
    transition: all 0.5s;
}

.nav_lang_item:hover,
.nav_lang_item.is_active {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0;
}
@media(max-width: 767px) {
    .nav_drawer_bottom {
        flex-direction: column;
        align-items: flex-end;
        gap: 24px;
    }
    .nav_search input {
        width: 100%;
    }
    .nav_lang {
        order: -1;
    }
}
/* MARK:頁底 Footer
   設計來源: Figma 14:394 footer (66:547)
   全寬 1920px x 308px
   上方分隔線 - logo (x=337, y=109) - 聯絡資料 (x=454, y=118)
   社群圖示 (x=1454-1614, y=128) - 版權 (置中於 x=1425, 下方) */
.site_footer {
    position: relative;
    width: 100%;
    min-height: var(--footer-height);
    background-color: transparent;
    border-top: .5px solid var(--main);
    padding: 0;
}

.site_footer.is_dark {
    background-color: transparent;
    border-top-color: var(--white);
    color: #ffffff;
}

.site_footer.is_dark .footer_text,
.site_footer.is_dark .footer_copy {
    color: #ffffff;
}

.site_footer.is_dark .footer_logo {
    filter: brightness(0) invert(1);
}

.footer_inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    height: 100%;
    min-height: var(--footer-height);
    padding: 0px 15px;
    display: grid;
    grid-template-columns: 78px 1fr auto;
    column-gap: 80px;
    align-items: center;
}

/* 左欄: 品牌標誌 */
.footer_brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_logo {
    width: 78px;
    height: 87px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* 中欄: 聯絡資料 */
.footer_text {
    font-size: 13px;
    letter-spacing: 1.3px;
    color: var(--color-text-dark);
    line-height: 27px;
    padding-top: 18px;
}

.footer_text p {
    margin: 0;
}

/* 右欄: 社群 + 版權 */
.footer_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    min-width: 280px;
}

.footer_social {
    display: flex;
    gap: 4px;
    padding-top: 4px;
}

.site_footer.is_dark .footer_social img {
    filter: brightness(0) invert(1);
}

#footer_social_mobile {
    display: none;
}

@media (max-width: 1024px) {
    #footer_social_desk {
        display: none;
    }

    #footer_social_mobile {
        display: block;
    }
}

.footer_social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    transition: opacity 0.2s ease;
}

.footer_social a:hover {
    opacity: 0.55;
}

.footer_copy {
    font-size: 13px;
    letter-spacing: 1.3px;
    color: var(--color-text-dark);
    text-align: right;
    white-space: nowrap;
}

/* MARK:通用標題樣式 (帶左側豎線) */
.section_title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 3.6px;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 0;
}

.exhibition_section .section_title {
    margin-bottom: 36px;
}

.exhibition_section#video {
    margin-bottom: 300px;
}

@media (max-width: 991px) {
    .exhibition_section#video {
        margin-bottom: 150px;
    }
    .exhibition_section .section_title {
        margin-bottom: 32px;
        font-size: 24px;
    }
}

.section_title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 37px;
    background-color: var(--color-text);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .section_title::before {
        height: 28px;
    }
}

.section_title.is_white {
    color: #ffffff;
}

.section_title.is_white::before {
    background-color: #ffffff;
}

/* MARK:通用內容容器 (Bootstrap-like .container, ≥1200 才限寬) */
.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1230px;
    }
}

/* MARK:專案內容版寬 .gs_container — 各頁主要內容都套這個 */
.gs_container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 1350px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1640px) {
    .gs_container {
        width: 1300px;
    }
}

@media (max-width: 1400px) {
    .gs_container {
        width: 1140px;
    }
}

@media (max-width: 1199px) {
    .gs_container {
        width: 960px;
    }
}

@media (max-width: 991px) {
    .gs_container {
        width: 720px;
    }
}

@media (max-width: 767px) {
    .gs_container {
        width: 540px;
    }
}

@media (max-width: 575px) {
    .gs_container {
        width: 100%;
    }
}

/* MARK:輔助 class */
.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

.mt_80 {
    margin-top: 80px;
}

/* MARK:響應式 (Tablet 以下啟用簡化版) */
@media (max-width: 1366px) {
    .site_header {
        padding: 0 40px;
    }

    .nav_drawer {
        padding-right: 100px;
    }
}

@media (max-width: 1024px) {

    /* --container-width 已由上方 gs_container 斷點接管，這裡不再覆寫 */
    .site_header {
        padding: 0 24px;
        height: 80px;
    }

    .footer_inner {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 24px;
        padding: 48px 24px;
        text-align: center;
        justify-items: center;
    }

    .footer_text {
        padding-top: 0;
        text-align: center;
    }

    .footer_right {
        align-items: center;
        gap: 20px;
        min-width: 0;
    }

    .footer_copy {
        white-space: normal;
        text-align: center;
    }

    .nav_drawer {
        padding-right: 0;
        justify-content: center;
    }

    .nav_drawer_inner {
        width: auto;
        min-width: 280px;
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .site_header {
        height: 60px;
    }
    .nav_drawer {
        align-items: flex-start;
        padding-top: 120px;
    }

    .nav_drawer_close {
        top: 10px;
        right: 32px;
    }

    .nav_drawer_inner {
        height: auto;
        width: 100%;
    }
}

/* ============================================
   MARK:首頁 (Home) - 全螢幕輪播
   ============================================ */
.home_main {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    /* background-color: #605d5d; */
}

#home_main_mobile {
    display: none;
}

@media (max-width: 767px) {
    #home_main_desk {
        display: none;
    }

    #home_main_mobile {
        display: block;
    }
}

.home_slider {
    position: absolute;
    inset: 0;
}

#home_main_desk .slick-dots {
    width: auto;
    bottom: 10%;
    left: 15%;
    display: flex;
}

#home_main_desk .slick-dots li button:before {
    font-size: 50px;
    color: #FFFFFF;
}

#home_main_mobile .slick-dots {
    bottom: 10%;
}

#home_main_mobile .slick-dots li button:before {
    font-size: 50px;
    color: #FFFFFF;
}

.home_slider .slick-list,
.home_slider .slick-track {
    height: 100%;
}

.home_slide {
    height: 100vh;
    min-height: 720px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* 蓋過 slick.css 的 .slick-slide { height:100%; min-height:1px }，避免淡入模式下高度塌陷 */
.home_slider .slick-slide {
    height: 100vh;
    min-height: 720px;
}

.home_slide_bottom_img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: url('../images/home_slide_bottom_white_img.png') center center/cover no-repeat;
}
.home_slide.home_slide_dark .home_slide_bottom_img {
    background: url('../images/home_slide_bottom_dark_img.png') center center/cover no-repeat;
}
@media(max-width: 575px) {
    .home_slide_bottom_img {
        background: url('../images/home_slide_bottom_white_img_mobile.png') center center/cover no-repeat;
    }
    .home_slide.home_slide_dark .home_slide_bottom_img {
        background: url('../images/home_slide_bottom_dark_img_mobile.png') center center/cover no-repeat;
    }
}
/* 文字資訊區 */
.is_nav_open .home_caption {
    opacity: 0;
}
.home_caption {
    position: absolute;
    left: 50%;
    bottom: 14%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 935px;
    text-align: right;
    color: #242424;
    padding: 0 10px;
    z-index: 5;
}

.home_caption.is_white {
    color: #ffffff;
}

.home_caption_title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3.2px;
    margin-bottom: 24px;
    /* white-space: nowrap; */
}


.home_caption_dates {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    font-size: 16px;
    letter-spacing: 1.6px;
}

.home_caption_line {
    width: 264px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.7;
}
@media (max-width: 991px) {
    .home_caption {
        text-align: center;
        bottom: 10%;
    }
    .home_caption_dates {
        justify-content: center;
    }
}
@media (max-width: 575px) {
    .home_caption_dates {
        display: grid;
        grid-template-columns: 125px 1fr 125px;
        gap: 12px;
    }
    .home_caption_line {
        width: auto;
    }
}
/* 輪播控制點 */
.home_dots {
    position: absolute;
    left: 80px;
    bottom: 80px;
    display: flex;
    gap: 16px;
    z-index: 5;
}

.home_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(126, 126, 126, 0.5);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.is_nav_open .slick-dots {
    display: none !important;
}
.home_dot.is_active,
.home_dots .slick-dots li.slick-active .home_dot {
    background-color: #ffffff;
    transform: scale(1.4);
}

.home_dots .slick-dots {
    display: flex !important;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.home_dots .slick-dots li {
    line-height: 0;
}
@media(max-width: 991px) {
    #home_main_mobile .slick-dots {
        bottom: 4%;
    }
}
/* ============================================
   MARK:藝術家列表頁 (Artists)
   ============================================ */
.artists_page_top_block .page_title {
    font-size: 40px;
}
@media(max-width: 991px) {
    .artists_page_top_block .page_title {
        font-size: 32px;
    }
}
.artists_page {
    padding-top: calc(var(--header-height) + 100px);
    padding-bottom: 80px;
    min-height: 100vh;
    background-color: transparent;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.2), transparent 50%);
}

@media (max-width: 991px) {
    .artists_page {
        padding-top: calc(var(--header-height) + 80px);
    }
}

.artists_title_wrap {
    max-width: var(--container-width);
    margin: 0 auto 160px;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .artists_title_wrap {
        margin: 0 auto 60px;
    }
}

.artists_title {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--color-text);
}

.artists_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 200px;
    row-gap: 80px;
    padding-bottom: 90px;
}

.artist_card {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.artist_card:hover {
    transform: translateY(-4px);
}

.artist_card_image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 24px;
}

.artist_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.artist_card:hover .artist_card_image img {
    transform: scale(1.04);
}

.artist_card_image.is_dimmed::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(113, 113, 113, 0.2);
    pointer-events: none;
}

.artist_card_name {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2.4px;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.artist_card_meta {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.6px;
    color: var(--color-text-muted);
}
@media(max-width: 991px) {
    .artist_card_image {
        margin-bottom: 8px;
    }
}
/* HTML 文字編輯器內容::開始 */
.html_ekditor_content * {
    line-height: 1.5em;
}
.html_ekditor_content ul,
.html_ekditor_content ol {
    list-style: revert;
}
.html_ekditor_content {
    width: 100%;
    word-break: break-all;
}

.html_ekditor_content img {
    max-width: 100%;
    height: auto !important;
}

.html_ekditor_content iframe {
    max-width: 100%;
    height: auto !important;
    aspect-ratio: 16 / 9;
}

.html_ekditor_content p {
    z-index: 1;
}

.html_ekditor_content p {
    z-index: 1;
}

.html_ekditor_content ul,
.html_ekditor_content ol {
    padding-left: 2rem;
}

/* HTML 文字編輯器內容::結束 */

/* ============================================
   MARK:通用內頁版頭 / 頂層 (page_top_*, page_tabs, page_breadcrumb)
   - 多頁共用：about / exhibitions / news / videos / contact 等
   ============================================ */
.about_page,
.page_layout {
    position: relative;
    background-color: transparent;
    padding-top: var(--header-height);
    padding-bottom: 0;
    min-height: 100vh;
}

/* 頂部: 左標題 + 右子選單 */
.about_header_block,
.page_top_block {
    padding-top: 100px;
}

@media (max-width:767px) {

    .about_header_block,
    .page_top_block {
        padding-top: 0px;
    }
}

.about_header_inner,
.page_top_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.about_title,
.page_title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3.2px;
    color: var(--color-text);
    line-height: 1;
    margin: 0;
}

.about_tabs,
.page_tabs {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 1 auto;
    overflow: auto;
}

.about_tabs::-webkit-scrollbar,
.page_tabs::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.about_tabs::-webkit-scrollbar-track,
.page_tabs::-webkit-scrollbar-track {
    background: #ddd;
}

.about_tabs::-webkit-scrollbar-thumb,
.page_tabs::-webkit-scrollbar-thumb {
    background: var(--main);
}


.about_tab,
.page_tab {
    flex: 1 0 0;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    /* padding: 0 8px; */
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.6px;
    color: var(--color-text-muted);
    text-align: right;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.about_tab:hover,
.page_tab:hover {
    color: var(--color-text-dark);
}

.about_tab.is_active,
.page_tab.is_active {
    color: var(--color-text-dark);
}

/* 變體: 3 顆固定寬度 (展覽頁) */
.page_tabs_3 .page_tab {
    /* flex: 0 0 113px;
    width: 113px; */
}

/* 區塊指示 (麵包屑樣式) */
.about_breadcrumb_wrap,
.page_breadcrumb_wrap {
    margin-top: 65px;
}
@media(max-width: 991px) {
    .about_breadcrumb_wrap,
    .page_breadcrumb_wrap {
        margin-top: 32px;
    }
}
.about_breadcrumb,
.page_breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about_breadcrumb_bar,
.page_breadcrumb_bar {
    display: inline-block;
    width: 1px;
    height: 17.6px;
    background-color: var(--color-text-dark);
}

.about_breadcrumb_label,
.page_breadcrumb_label {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.6px;
    color: var(--color-text-dark);
}

/* HTML 編輯器內容 */
.page_body {
    margin-top: 40px;
    padding-bottom: 80px;
}

.about_body {
    margin-top: 40px;
    padding-bottom: 90px;
}

.about_body_content,
.page_body_content {
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 1.5px;
    color: var(--color-text-dark);
}

.about_body_content p,
.page_body_content p {
    margin: 0 0 28px;
}

.about_body_content p:last-child,
.page_body_content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   MARK:關於我們頁 (About - Figma 186:2783)
   ============================================ */

/* 全寬主視覺輪播 */
.about_banner_wrap {
    position: relative;
    width: 100%;
}

.about_banner_slider {
    width: 100%;
    background-color: #d9d9d9;
}

#about_banner_mobile {
    display: none;
}

@media (max-width: 767px) {
    #about_banner_desk {
        display: none;
    }

    #about_banner_mobile {
        display: block;
    }
}

.home_slider.slick-dotted.slick-slider,
.about_banner_slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.about_banner_slide_desk img {
    width: 100%;
    height: calc(100vw / 1920 * 750);
    object-fit: cover;
    object-position: center;
    display: block;
}

.about_banner_slide_mobile img {
    width: 100%;
    height: calc(100vw / 430 * 270);
    object-fit: cover;
    object-position: center;
    display: block;
}

/* slick 插入的 ul */
.about_banner_slider .slick-dots {
    top: -40px;
    bottom: auto;
}

.about_banner_slider .slick-dots li button:before {
    font-size: 50px;
}

/* RWD */
@media (max-width: 1199px) {
    .about_banner_slide img {
        height: 520px;
    }
}

@media (max-width: 991px) {

    .about_header_inner,
    .page_top_inner {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 24px;
    }

    .about_tabs,
    .page_tabs {
        width: 100%;
        gap: 28px;
    }

    .about_tab,
    .page_tab {
        flex: 0 0 auto;
        justify-content: flex-start;
        padding: 0;
    }

    .about_banner_slide img {
        height: 360px;
    }
}

@media (max-width: 640px) {

    .about_title,
    .page_title {

    }

    .about_banner_slide img {
        height: 240px;
    }

    .about_body_content,
    .page_body_content {
        font-size: 14px;
        line-height: 26px;
    }
}
@media(max-width: 405px) {
    .page_tabs {
        gap: 10px;
    }
}
/* ============================================
   MARK:作品瀏覽頁 (Work Browse - Figma 93:1838)
   - 左 1fr (資訊) | 右 1230px (作品大圖)
   - 圖區 767px 高，內含 max-width 589px 圖片
   ============================================ */
.work_browse_page {
    padding-top: var(--header-height);
    background-color: transparent;
    min-height: 100vh;
}

.work_browse_layout {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) 1230px;
    align-items: stretch;
    min-height: 767px;
}

/* 左側資訊區 */
.work_browse_info {
    padding: 159px 40px 80px 300px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 725px;
}

.work_browse_artist {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.work_browse_artist_name {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3.2px;
    color: var(--color-text);
    line-height: 1;
    margin: 0;
}

.work_browse_artist_meta {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.work_browse_detail {
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    color: var(--color-text-muted);
}

.work_browse_detail p {
    margin: 0;
}

.work_browse_back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.6px;
    align-self: flex-start;
    transition: color 0.2s ease;
    margin-top: 24px;
}

.work_browse_back:hover {
    color: var(--color-text-dark);
}

.work_browse_back_arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(-135deg);
    margin-top: -1px;
}

/* 右側大圖舞台 */
.work_browse_stage {
    position: relative;
    width: 100%;
    max-width: 1230px;
    height: 767px;
    background-color: transparent;
    overflow: hidden;
}

.work_browse_stage_inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
}

.work_browse_image {
    max-width: 589px;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* 左右切換箭頭 */
.work_browse_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease, background-color 0.2s ease;
    z-index: 2;
}

.work_browse_stage:hover .work_browse_nav {
    opacity: 1;
}

.work_browse_nav:hover {
    background-color: #ffffff;
}

.work_browse_nav_prev {
    left: 24px;
}

.work_browse_nav_next {
    right: 24px;
}

.work_browse_nav_icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid var(--color-text-dark);
    border-right: 1.5px solid var(--color-text-dark);
}

.work_browse_nav_prev .work_browse_nav_icon {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.work_browse_nav_next .work_browse_nav_icon {
    transform: rotate(45deg);
    margin-right: 3px;
}

/* RWD */
@media (max-width: 1440px) {
    .work_browse_layout {
        grid-template-columns: minmax(360px, 38%) 62%;
    }

    .work_browse_info {
        padding-left: 80px;
    }

    .work_browse_stage {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .work_browse_layout {
        grid-template-columns: 1fr;
    }

    .work_browse_info {
        padding: 40px 24px;
        order: 2;
        max-width: 100%;
    }

    .work_browse_stage {
        order: 1;
        height: 60vh;
        min-height: 360px;
        margin-top: 24px;
    }

    .work_browse_image {
        max-width: 90%;
    }
}

@media (max-width: 640px) {
    .work_browse_artist_name {
        font-size: 24px;
    }

    .work_browse_stage {
        height: 50vh;
    }
}

/* ============================================
   MARK:藝術家作品頁 (Works Listing - Figma 171:456)
   - 結構: hero + 標題列 (左標題/右回上一頁) + 3x3 作品格 + 分頁
   ============================================ */
.works_page {
    position: relative;
    background-color: transparent;
    padding-top: calc(var(--header-height) + 120px);
    padding-bottom: 197px;
}

.works_page .page_top_block {
    display: none;
    margin-bottom: 54px;
}

.works_page .artist_hero {
    gap: 118px;
}
@media(max-width: 991px) {
    .works_page {
        padding-top: calc(var(--header-height) + 0px);
    }
    .works_page .page_top_block {
        display: block;
    }
    .works_page .artist_hero {
        margin-bottom: 63px;
        gap: 24px;
    }
}

.works_listing {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* 標題列: 左 (標題+日期) | 右 (回上一頁) */
.works_listing_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding-top: 48px;
    margin-bottom: 80px;
}

.works_listing_title_group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.works_listing_title {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3.2px;
    color: var(--color-text);
    margin-bottom: 0;
    line-height: 1.3;
}

.works_listing_date {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 0.2px;
    margin-bottom: 0;
}

.works_listing_back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.6px;
    transition: color 0.2s ease;
    white-space: nowrap;
    margin-top: 15px;
}

.works_listing_back:hover {
    color: var(--color-text-dark);
}

.works_listing_back_arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 1px;
}


/* 作品大型 3x3 列表 (與 artist.html 內 .works_grid 共用基礎，這裡僅給「滿版多列」變體覆寫) */
.works_grid_full {
    grid-template-columns: repeat(3, minmax(0, 425px));
    justify-content: center;
    column-gap: 21px;
    row-gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .works_listing_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 48px;
        margin-bottom: 48px;
    }

    .works_listing_title {
        font-size: 24px;
    }

    .works_grid_full {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 991px) {
    .works_listing_title_group {
        gap: 16px;
    }
    .works_listing_header {
        padding-top: 0;
        margin-bottom: 32px;
    }
}
@media (max-width: 640px) {
    .works_grid_full {
        grid-template-columns: 1fr;
        margin-bottom: 0;
    }
}

/* ============================================
   MARK:藝術家內頁 (Artist Detail)
   ============================================ */
.artist_detail_main .page_top_block {
    display: none;
    margin-bottom: 54px;
}

.artist_detail_page {
    position: relative;
    background-color: transparent;
    padding-top: calc(var(--header-height) + 120px);
}
@media(max-width: 991px) {
    .artist_detail_main .page_top_block {
        display: block;
    }
    .artist_detail_page {
        padding-top: calc(var(--header-height) + 0px);
    }
}
/* 側邊章節導覽 */
.artist_side_nav {
    position: fixed;
    top: 50%;
    left: 78px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 50;
    opacity: 0;
    transform: all 0.5s;
}
.artist_side_nav.is_show {
    opacity: 1;
}
.artist_side_nav_item {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    color: var(--color-text-muted);
    font-size: 16px;
    letter-spacing: 1.6px;
    cursor: pointer;
    transition: color 0.2s ease;
}
.artist_side_nav_item:lang(en) {
    font-size: 14px;
}
.artist_side_nav_item:hover,
.artist_side_nav_item.is_active {
    color: var(--color-text-dark);
    font-weight: 400;
}
@media (max-width: 991px) {
    .artist_side_nav {
        opacity: 1;
    }
}
/* 藝術家基本資料 */
.artist_hero {
    max-width: var(--container-width);
    margin: 0 auto 80px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 516px 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 1400px) {
    .artist_hero {
        grid-template-columns: 400px 1fr;
    }
}

@media (max-width: 1199px) {
    .artist_hero {
        grid-template-columns: 300px 1fr;
    }
}

.artist_hero_image {
    width: 516px;
    height: 516px;
    overflow: hidden;
    background-color: #eaeaea;

}

@media (max-width: 1400px) {
    .artist_hero_image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1199px) {
    .artist_hero_image {
        width: 300px;
        height: 300px;
    }
}

.artist_hero_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist_hero_name {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3.2px;
    color: var(--color-text);
    margin-bottom: 16px;
}

.artist_hero_meta {
    font-size: 16px;
    letter-spacing: 1.6px;
    color: var(--color-text-light);
    margin-bottom: 56px;
}

.artist_hero_desc {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    color: var(--color-text-dark);
}

.artist_hero_desc p {
    margin-bottom: 18px;
}
@media(max-width: 991px) {
    .artist_hero_name {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .artist_hero_meta {
        margin-bottom: 12px;
    }
}
/* ============================================
   MARK:藝術評論內頁
   ============================================ */
.artist_reviews_section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 15px 0;
}


/* MARK:章節切換 Tab (Figma 27:685)
   - 全部 Tab 文字皆帶下底線 (text-decoration: underline)
   - 容器不帶 border-bottom
   - 七顆置中等距排列 */
.artist_tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 16px;
    max-width: var(--container-width);
    margin: 0 auto 260px;
    padding: 0 15px;
    top: var(--header-height);
    z-index: 99;
    transition: padding 0.3s ease;
}

@media (max-width: 1199px) {
    .artist_tabs {
        margin: 0 auto 100px;
    }
}

@media (max-width: 1024px) {
    .artist_tabs {
        column-gap: 24px;
        row-gap: 12px;
        padding: 0px 16px;
    }

    /* sticky 狀態：白底透過 ::before 延伸至全視窗寬 */
    .artist_tabs.is_sticky {
        position: sticky;
        top: 80px;
        padding-top: 12px;
        padding-bottom: 12px;
        max-width:100%;
        width: 100vw;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
}
@media (max-width: 991px) {
    .artist_tabs {
        justify-content: center;
        column-gap: 78px;
    }
    .artist_tabs:lang(en) {
        column-gap: 40px;
    }
}
@media (max-width: 767px) {
    .artist_tabs.is_sticky {
        top: 60px;
        column-gap: 12px;
    }
}

@media (max-width: 575px) {
    .artist_tabs {
        column-gap: 65px;
    }
    .artist_tabs:lang(en) {
        column-gap: 12px;
    }
    .artist_tabs.is_sticky .artist_tab {
        font-size: 14px;
    }
    .artist_tabs.is_sticky .artist_tab:lang(en) {
        font-size: 12px;
    }
}
@media (max-width: 399px) {
    .artist_tabs {
        column-gap: 55px;
    }
    .artist_tabs.is_sticky {
        column-gap: 5px;
    }
}


.artist_tab {
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1.8px;
    color: #3e3f3f;
    text-decoration: underline;
    text-decoration-color: #3e3f3f;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    white-space: nowrap;
    transition: color 0.2s ease, font-weight 0.2s ease;
}
.artist_tab:lang(en) {
    font-size: 16px;
}
.artist_tab:hover {
    color: var(--color-text-dark);
}

.artist_tab.is_active {
    font-weight: 400;
    color: var(--color-text-dark);
    text-decoration-color: var(--color-text-dark);
    text-decoration-thickness: 1.5px;
}

/* 區段共用容器 */
.artist_section {
    max-width: var(--container-width);
    margin: 0 auto 225px;
    padding: 0 15px;
}

@media (max-width: 1199px) {
    .artist_section {
        margin: 0 auto 145px;
    }
}

#reviews {
    margin: 0 auto 60px;
}
@media(max-width: 991px) {
    #reviews {
        margin: 0 auto 20px;
    }
}
.artist_section_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
@media(max-width: 991px) {
    .artist_section_header {
        margin-bottom: 24px;
    }
}
.artist_section_arrows {
    display: flex;
    gap: 8px;
}

.artist_arrow_btn {
    width: 62px;
    height: 62px;
    border: 1px solid #605d5d;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #605d5d;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.artist_arrow_btn:hover {
    background-color: #605d5d;
    color: #ffffff;
}

.artist_arrow_btn.is_dark {
    border-color: #ffffff;
    color: #ffffff;
}

.artist_arrow_btn.is_dark:hover {
    background-color: #ffffff;
    color: var(--color-text-dark);
}

/* MARK:介紹區塊 (長文 + 側邊照片, Figma 27:1001)
   左側 790px 文字 + 右側 480x690 照片 */
.intro_wrap {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 50px;
    align-items: start;
}

@media (max-width: 1400px) {
    .intro_wrap {
        grid-template-columns: 1fr 400px;
    }
}

@media (max-width: 1199px) {
    .intro_wrap {
        grid-template-columns: 1fr 300px;
    }
}

.intro_text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    color: var(--color-text-dark);
    text-align: justify;
    max-width: 790px;
    max-height: 690px;
    overflow-y: auto;
}

@media (max-width: 1400px) {
    .intro_text {
        max-height: 575px;
    }
}

@media (max-width: 1199px) {
    .intro_text {
        max-height: 430px;
    }
}

@media (max-width: 1024px) {
    .intro_text {
        max-width: unset;
        max-height: unset;
        overflow-y: unset;
    }
}

.intro_text::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.intro_text::-webkit-scrollbar-track {
    background: #ddd;
}

.intro_text::-webkit-scrollbar-thumb {
    background: var(--main);
}

.intro_text p {
    margin-bottom: 18px;
}

.intro_text p:last-child {
    margin-bottom: 0;
}

.intro_image {
    width: 100%;
    aspect-ratio: 480 / 690;
    overflow: hidden;
}

.intro_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MARK:展覽卡片 (Figma 197:3329)
   430x241 圖 + 標題 + 日期，整體高度 ~340px */

.exhibition_card {
    cursor: pointer;
}

.exhibition_card_image {
    width: 100%;
    aspect-ratio: 430 / 242;
    overflow: hidden;
    background-color: #cccccc;
    margin-bottom: 20px;
}

.exhibition_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.exhibition_card:hover .exhibition_card_image img {
    transform: scale(1.04);
}

.exhibition_card_title {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    line-height: 28px;
    margin-bottom: 12px;
}

.exhibition_card_date {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-muted);
}
@media(max-width: 991px) {
    .exhibition_card_image {
        margin-bottom: 12px;
    }
    .exhibition_card_title {
        font-size: 18px;
    }
    .exhibition_card_date {
        font-size: 14px;
    }
}
/* MARK:作品卡片 (Figma 197:3433)
   接近正方形大圖 (425x340) + 置中標題，無日期 */
.works_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 21px;
    justify-items: center;
}

.work_card {
    width: 100%;
    max-width: 425px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 10px;
    margin-bottom: 60px;
}

.work_card_image {
    width: 100%;
    aspect-ratio: 425 / 340;
    overflow: hidden;
}

.work_card_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.work_card:hover .work_card_image img {
    transform: scale(1.04);
}

.work_card_title {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.6px;
    color: var(--color-text-dark);
    line-height: 33px;
    text-align: center;
}
@media(max-width: 991px) {
    .work_card {
        margin-bottom: 0;
        gap: 8px;
    }
}

/* MARK:作品燈箱 (Figma 93:1838) — 淺色背景，左側資訊 + 右側全高圖片 */
.work_lightbox {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.work_lightbox.is_open {
    opacity: 1;
    visibility: visible;
}

/* X 關閉按鈕 — 深色 icon，右上角 */
.work_lightbox_close {
    position: absolute;
    top: 32px;
    right: 40px;
    width: 44px;
    height: 44px;
    background-image: url('../images/icon_close.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: brightness(0) invert(1) brightness(0.141);
    transition: filter 0.2s;
    z-index: 10;
}

.work_lightbox_close:hover {
    filter: brightness(0);
}

/* 主體：左右兩欄 */
.work_lightbox_body {
    display: flex;
    height: 100%;
}

/* 左側資訊欄 */
.work_lightbox_info {
    flex-shrink: 0;
    width: 690px;
    padding-left: 300px;
    padding-top: 267px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.work_lightbox_artist {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.work_lightbox_name_row {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.work_lightbox_name {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3.2px;
    color: var(--color-text);
}

.work_lightbox_meta {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text);
}

.work_lightbox_desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
    color: var(--color-text-muted);
}

/* 左下：切換導覽 */
.work_lightbox_nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.work_lightbox_prev,
.work_lightbox_next {
    font-size: 24px;
    color: var(--color-text-muted);
    line-height: 1;
    transition: color 0.2s;
}

.work_lightbox_prev:hover,
.work_lightbox_next:hover {
    color: var(--color-text-dark);
}

.work_lightbox_count {
    font-size: 14px;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

/* 右側圖片欄 — 四邊留距離與左側 info 相同 */
.work_lightbox_image_wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: var(--header-height) 300px var(--header-height) 0;
    overflow: hidden;
}

/* clip wrapper — 剛好包住圖片，overflow:hidden 防止放大時溢出 */
.work_lightbox_img_clip {
    overflow: hidden;
    width: fit-content;
    height: fit-content;
    max-width: 100%;
    max-height: 100%;
    line-height: 0;
}

.work_lightbox_img {
    max-width: 100%;
    height: calc(100vh - var(--header-height) * 2);
    object-fit: contain;
    transition: transform 0.08s ease;
    display: block;
    cursor: zoom-in;
}

/* 燈箱 RWD — 對應 gs_container 斷點縮減左欄 */
@media (max-width: 1400px) {
    .work_lightbox_info {
        width: 560px;
        padding-left: 180px;
    }

    .work_lightbox_image_wrap {
        padding-right: 180px;
    }
}

@media (max-width: 1199px) {
    .work_lightbox_info {
        width: 440px;
        padding-left: 80px;
    }

    .work_lightbox_image_wrap {
        padding-right: 80px;
    }
}

@media (max-width: 991px) {
    .work_lightbox_info {
        width: 360px;
        padding-left: 40px;
    }

    .work_lightbox_image_wrap {
        padding-right: 40px;
    }

    .work_lightbox_close {
        right: 24px;
    }
}

/* 燈箱 RWD — 手機版直向排列 */
@media (max-width: 767px) {
    .work_lightbox_body {
        flex-direction: column;
        overflow-y: auto;
    }

    .work_lightbox_info {
        width: 100%;
        padding: 89px 24px 32px 27px;
        flex-shrink: 0;
    }

    .work_lightbox_image_wrap {
        flex: none;
        width: 100%;
        padding: 0 27px 60px;
        justify-content: center;
        align-items: flex-start;
    }

    .work_lightbox_img_clip {
        width: 100%;
        max-width: 100%;
    }

    .work_lightbox_img {
        width: 100%;
        max-height: none;
        cursor: default;
        height: auto;
    }

    .work_lightbox_close {
        top: 16px;
        right: 24px;
    }
}

/* 簡歷時間表 */
#resume .artist_section_header {
    margin-bottom: 43px;
}
@media(max-width: 991px) {
    #resume .artist_section_header {
        margin-bottom: 32px;
    }
}
.resume_list {
    font-size: 16px;
    letter-spacing: 1.6px;
    color: var(--color-text-dark);
}

.resume_list p {
    line-height: 40px;
}

.resume_list .resume_year {
    font-weight: 400;
    margin-right: 12px;
}

/* 藝術評論列表 */
#reviews .artist_section_header {
    margin-bottom: 43px;
}
@media(max-width: 991px) {
    #reviews .artist_section_header {
        margin-bottom: 32px;
    }
}
.review_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review_item {
    position: relative;
    padding: 0 100px 52px 0;
    margin-bottom: 34px;
    border-bottom: 1px solid #B9B9B9;
    min-height: 178px;
    transition: all 0.5s;
}
.review_item:hover {
    opacity: 0.7;
}
.review_title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2.4px;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.review_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

}
.review_excerpt {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-dark);
    max-width: 1075px;
    height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /*x 值代表要在第幾行的時候將後面的文字隱藏並出現 ...*/
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    /* 注意這層的高度要固定 */
}

.review_author {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2.6px;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

@media(max-width: 991px) {
    .review_item {
        padding: 0 0 25px;
        margin-bottom: 36px;
        min-height: auto;
    }
    .review_item:last-child {
        margin-bottom: 0;
    }
    .review_content {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
}

/* MARK:分頁器 (gs_pagination, 視覺對齊 Figma 171:575)
   - 中央對齊
   - 頁碼字級 16px Inter Medium / 色 #242424
   - 當前頁: 44x44 圓形 (#e1e1e1) 灰底
   - 箭頭: 上下相對的細長 chevron (用 CSS 邊框做) */
.gs_pagination {
    width: 100%;
    padding: 10px 0;
    clear: both;
    background: none;
    box-shadow: none;
    margin: 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 29px;
}

.gs_pagination a.other_page {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    color: #242424;
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    display: inline-block;
    margin: 0 -10px;
}

.gs_pagination strong {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    color: #242424;
    background-color: #e1e1e1;
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    display: inline-block;
    margin: 0 -10px;
}

.gs_pagination a.other_page:hover {
    background-color: #e1e1e1;
    color: #242424;
}

/* 左右箭頭 (細長 chevron) */
.gs_pagination_icon {
    width: 20px;
    height: 20px;
    color: #242424;
    transition: opacity 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gs_pagination_icon::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
}

/* 左箭頭 (第一個 .gs_pagination_icon) */
.gs_pagination>.gs_pagination_icon:first-child::before {
    transform: rotate(-135deg);
}

/* 右箭頭 (最後一個 .gs_pagination_icon) */
.gs_pagination>.gs_pagination_icon:last-child::before {
    transform: rotate(45deg);
}

/* 隱藏 fau icon font (改用 CSS chevron) */
.gs_pagination_icon i {
    display: none;
}

.gs_pagination_icon:hover {
    opacity: 0.5;
}

@media (max-width: 991px) {
    .gs_pagination {
        gap: 24px;
    }

    .gs_pagination strong,
    .gs_pagination a.other_page {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .gs_pagination {
        margin-top: 24px;
    }

    .gs_pagination strong,
    .gs_pagination a.other_page {
        width: 34px;
        height: 34px;
        line-height: 34px;
    }
}

/* 底部大區塊：媒體報導 + 影音 + Footer 共用背景 */
.artist_bottom_block {
    background-image: url('../images/artist_bottom_bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* 新聞 - 暗底 */
.news_section {
    background-color: transparent;
    padding: 220px 0 225px;
    margin: 0;
    width: 100%;
}
@media(max-width: 991px) {
    .news_section {
        padding: 120px 0 145px;
    }
}
.news_section .artist_section_header,
.news_section .news_grid_container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}
.news_section .artist_section_header {
    margin-bottom: 60px;
}
@media(max-width: 991px) {
    .news_section .artist_section_header {
        margin-bottom: 24px;
    }
}
.news_section .news_grid {
    margin: 0 -8px;
}
.news_card_image {
    width: 100%;
    aspect-ratio: 430 / 242;
    overflow: hidden;
    margin-bottom: 16px;
}

.news_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news_card:hover .news_card_image img {
    transform: scale(1.04);
}

.news_card_tag {
    font-size: 16px;
    color: var(--color-text-lighter);
    margin-bottom: 16px;
}

.news_card_title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 28px;
    margin-bottom: 30px;
}

.news_card_date {
    font-size: 16px;
    color: var(--color-text-lighter);
    margin-bottom: 0;
}
@media(max-width: 767px) {
    .news_card_image {
        margin-bottom: 12px;
    }
    .news_card_tag {
        margin-bottom: 12px;
    }
    .news_card_title {
        margin-bottom: 12px;
    }
    .news_card_date {
        color: #fff;
    }
}
/* 影音區塊 */
.video_section {
    background-color: transparent;
    padding: 0px 0 192px;
    color: #ffffff;
}
@media(max-width: 991px) {
    .video_section {
        padding: 0px 0 209px;
    }
}
.video_section .artist_section_header {
    max-width: var(--container-width);
    margin: 0 auto 38px;
    padding: 0 15px;
}
@media(max-width: 991px) {
    .video_section .artist_section_header {
        margin: 0 auto 24px;
    }
}
.video_section .artist_section_arrows {
    display: none;
}

.video_player_wrap {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}
.video_player_wrap .slick-dotted.slick-slider {
    margin-bottom: 0;
}
.video_player_slider {
    padding-bottom: 15px;
}
.video_player_slider .slick-dots {
    bottom: 0px;
    text-align: end;
}

.video_player_slider .slick-dots li {
    width: 12px;
    height: 12px;
    border: 2px solid #FFFFFF;
    margin: 0 8px;
    border-radius: 50%;
}
.video_player_slider .slick-dots li:last-child {
    margin: 0 0 0 8px;
}
.video_player_slider .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}

.video_player_slider .slick-dots li button:before {
    content: '';
    font-size: 20px;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    transition: all .3s;
}

.video_player {
    position: relative;
    width: 100%;
    aspect-ratio: 1320 / 743;
    overflow: hidden;
    background-color: #1a1a1a;
    cursor: pointer;
}

.video_player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video_player iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video_play_btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.video_player:hover .video_play_btn {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%) scale(1.05);
}

.video_caption {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 25px 0 0;
    color: #ffffff;
    display: block;
}
.video_caption:hover {
    color: #fff;
}
.video_caption_title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2.4px;
    line-height: 28px;
}

.video_caption_meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 16px;
}

.video_progress {
    width: 132px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.25);
    position: relative;
    border-radius: 2px;
}

.video_progress::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background-color: #ffffff;
    border-radius: 2px;
}
@media(max-width: 991px) {
    .video_section .artist_section_arrows {
        display: flex;
    }
    .video_caption {
        padding-top: 12px;
    }
    .video_caption_title {
        margin-bottom: 12px;
    }
}
/* 影音輪播點 (Figma 27:305 — active: #D9D9D9 填色 r=5, inactive: white stroke r=4.5) */
.video_dots .slick-dots {
    display: flex !important;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.video_dots .slick-dots li {
    line-height: 0;
}

.video_dots .slick-dots li span {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video_dots .slick-dots li.slick-active span {
    width: 10px;
    height: 10px;
    background-color: #d9d9d9;
    border: none;
}

/* 展覽/媒體報導 slick 輪播 slides 間距 */
.exhibition_grid.slick-initialized .exhibition_card,
.news_grid.slick-initialized .news_card,
.works_slider.slick-initialized .work_card {
    padding: 0 8px;
}

/* 作品輪播 — 用獨立 slider div，標準負邊距 gap 技法 (gap=23px → 各邊 11.5px) */
.works_slider .slick-slide .work_card {
    max-width: none;
    width: 100%;
}

.works_slider .work_card {
    max-width: unset;
}

/* ============================================
   MARK:響應式調整
   ============================================ */
@media (max-width: 1600px) {
    .artist_side_nav {
        left: 24px;
    }
}
@media (max-width: 1399px) {
    .review_excerpt {
        max-width: 900px;
    }
}

@media (max-width: 1366px) {
    .artist_side_nav {
        left: 24px;
    }

    .artists_grid {
        gap: 60px 40px;
    }
}
@media (max-width: 1199px) {
    .review_excerpt {
        max-width: 750px;
    }
}
@media (max-width: 1024px) {
    .home_caption_title {
        font-size: 24px;
        white-space: normal;
    }

    .home_dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 32px;
    }

    .artist_side_nav {
        display: none;
    }

    .artist_hero {
        grid-template-columns: 200px 1fr;
        gap: 32px;
    }

    .artist_hero_image {
        width: 200px;
        height: 200px;
    }


    .artist_tab {
        font-size: 16px;
        letter-spacing: 1.4px;
    }

    .artist_tab:lang(en) {
        font-size: 14px;
    }


    .artists_grid,
    .works_grid,
    .news_grid {
        grid-template-columns: 1fr 1fr;
    }

    .intro_wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .exhibition_grid {
        grid-template-columns: 1fr 1fr;
    }

    .review_item {
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    .review_excerpt {
        height: auto;
        margin-bottom: 0;
    }
    .artist_hero_image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
    }

    .artist_hero {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 66px;
    }
}
@media  (max-width: 767px) {
    .artist_tab:lang(en) {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
}
@media (max-width: 399px) {
    
    .home_caption_title {
        font-size: 18px;
    }
}
@media (max-width: 640px) {

    .artists_grid,
    .works_grid,
    .exhibition_grid,
    .news_grid {
        grid-template-columns: 1fr;
    }

    .artists_title {
        font-size: 28px;
    }

    .section_title {
        font-size: 24px;
    }

    .exhibition_card_image {
        margin-bottom: 24px;
    }

    .works_grid {
        gap: 10px 23px;
    }
}

/* ============================================
   MARK:Back to Top 回頂按鈕 (Figma 141:832)
   ============================================ */
.back_to_top {
    position: fixed;
    right: 50px;
    bottom: 200px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    /* border: 1px solid #3e3f3f;
    color: #3e3f3f; */
    color: #fff;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 11px 12px 6px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
    z-index: 60;
    mix-blend-mode: difference;
}

.back_to_top.is_visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back_to_top:hover {
    background-color: #3e3f3f;
    color: #ffffff;
}

/* artist.html 深色版 */
.back_to_top.is_dark {
    background-color: rgba(55, 55, 55, 0.9);
    border-color: #ffffff;
    color: #ffffff;
}

.back_to_top.is_dark:hover {
    background-color: #ffffff;
    color: var(--color-text-dark);
}
.back_to_top svg {
    font-size: 20px;
    /* stroke: var(--color-text); */
    stroke: currentColor;
}
.back_to_top:hover svg {
    stroke: #ffffff;
}
.back_to_top_icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(-45deg);
    margin-top: 4px;
}

.back_to_top_label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .back_to_top {
        right: 16px;
        bottom: 16px;
    }
}

/* ============================================
   MARK:展覽列表 (Exhibitions - Figma 99:609)
   橫向 2 列：左文字 (標題 + 日期 + 簡介) + 右大圖 (762x472)
   ============================================ */
.exhibition_wrap {
    padding: 75px 0 315px;
}
@media(max-width: 991px) {
    .exhibition_wrap {
        padding: 58px 0 223px;
    }
}
.exhibition_list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.exhibition_row {
    display: grid;
    grid-template-columns: 530px 1fr;
    gap: 29px;
    align-items: center;
}

.exhibition_row_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 530px;
}

@media (max-width: 1199px) {
    .exhibition_row_info {
        max-width: 100%;
    }
}
@media(max-width: 991px) {
    .exhibition_list {
        gap: 58px;
    }
}
@media (max-width: 767px) {
    .exhibition_row {
        gap: 16px;
    }
    .exhibition_row_info {
        gap: 16px;
    }
}
.exhibition_row_title {
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    color: var(--color-text-dark);
    margin: 0;
    overflow: hidden; 
    text-overflow:ellipsis;
}

.exhibition_row_date {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-muted);
    margin: 0;
}

.exhibition_row_excerpt {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 1.5px;
    color: var(--color-text-dark);
    margin-top: 24px;
    height: 300px;
    overflow: auto;
}

@media (max-width: 1400px) {
    .exhibition_row_excerpt {
        height: 195px;
    }
}

@media (max-width: 1199px) {
    .exhibition_row_excerpt {
        height: 85px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /*x 值代表要在第幾行的時候將後面的文字隱藏並出現 ...*/
        -webkit-box-orient: vertical;
        white-space: normal;
        overflow: hidden;
        /* 注意這層的高度要固定 */
    }
}
@media (max-width: 991px) {
    .exhibition_row_title {
        font-size: 20px;
    }
    .exhibition_row_excerpt {
        height: auto;
    }
}
@media (max-width: 767px) {
    .exhibition_row_excerpt {
        margin: 0;
    }
}
.exhibition_row_excerpt::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.exhibition_row_excerpt::-webkit-scrollbar-track {
    background: #ddd;
}

.exhibition_row_excerpt::-webkit-scrollbar-thumb {
    background: var(--main);
}

.exhibition_row_image {
    width: 100%;
    aspect-ratio: 762 / 472;
    overflow: hidden;
    background-color: #d0d0d0;
}

.exhibition_row_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.exhibition_row:hover .exhibition_row_image img {
    transform: scale(1.03);
}


@media (max-width: 1199px) {

    .exhibition_row,
    .exhibition_row:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .exhibition_row:nth-child(even) .exhibition_row_info {
        order: 0;
    }
}

/* ============================================
   MARK:展覽內頁 (Exhibition Detail - Figma 118:180)
   - 全寬 hero banner + 進度條
   - 標題列 (大標 + 日期 + 回上一頁 + FB 直播 btn)
   - 多段內容 (展覽資訊/論述/藝術家/展出作品/影音)
   ============================================ */
.exhibition_page {
    position: relative;
    min-height: 100vh;
}

.exhibition_hero {
    position: relative;
    width: 100%;
    height: calc(100vw / 1920 * 1073);
    max-height: 100vh;
    overflow: hidden;
    background-color: #565656;
}

.exhibition_hero_slider,
.exhibition_hero_slider .slick-list,
.exhibition_hero_slider .slick-track {
    height: 100%;
}

.exhibition_hero_slide {
    height: 100%;
}

.exhibition_hero_slide img,
.exhibition_hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 進度條 (5 段) */
.exhibition_hero_slider .slick-dots {
    bottom: 45px;
    text-align: end;
    padding-right: 350px;
}

@media (max-width: 1199px) {
    .exhibition_hero_slider .slick-dots {
        bottom: 10px;
        text-align: center;
        padding: 0;
    }
}

.exhibition_hero_slider .slick-dots li {
    width: 108px;
    height: 4px;
}

.exhibition_hero_slider .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}

.exhibition_hero_slider .slick-dots li button:before {
    content: '';
    font-size: 20px;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    transition: all .3s;
}
@media (max-width: 767px) {
    .exhibition_hero_slider .slick-dots li {
        width: 40px;
        height: 4px;
    }

}
/* 標題列 */
.exhibition_meta {
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: flex-end; */
    padding: 60px 0 80px;
}

@media (max-width: 767px) {
    .exhibition_meta {
        padding: 0 0 10px;
    }
}

.exhibition_meta_left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 767px) {
    .exhibition_meta_left {
        gap: 24px;
    }
    .exhibition_meta_left:lang(en) {
        flex-direction: column;
        align-items: flex-start;
    }
}

.exhibition_meta_title {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 3.6px;
    color: var(--color-text-dark);
    margin-bottom: 32px;
}

.exhibition_meta_date {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.fb_live_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 203px;
    height: 50px;
    padding: 10px 12px;
    border: 1px solid #bfbfbf;
    background-color: transparent;
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.fb_live_btn:lang(en) {
        width: 255px;
    }
.fb_live_btn:hover {
    background-color: var(--color-text-dark);
    color: #ffffff;
    border-color: var(--color-text-dark);
}

/* 內頁區塊容器 */
.exhibition_section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.exhibition_section_text {
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 1.5px;
    color: var(--color-text-dark);
}

.exhibition_section_text p {
    margin: 0 0 28px;
}

.exhibition_video_title_mobile {
    display: none;
}
@media(max-width: 991px) {
    .exhibition_section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media(max-width: 767px) {
    .exhibition_video_title_pc {
        display: none;
    }
    .exhibition_video_title_mobile {
        display: flex;
    }
}
/* 展覽影音 - 左圖右文 */
.exhibition_video_layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: start;
    margin-top: 36px;
}
.exhibition_video_block {
    position: relative;
    width: 100%;
    aspect-ratio: 872 / 490;
    overflow: hidden;
    background-color: #1a1a1a;
    cursor: pointer;
}

.exhibition_video_block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.exhibition_video_block iframe {
    width: 100%;
    height: 100%;
}

.exhibition_video_block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
}

.exhibition_video_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    z-index: 1;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.exhibition_video_block:hover .exhibition_video_play {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.06);
}

.exhibition_video_info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.exhibition_video_title {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 40px;
    margin: 0;
}

.exhibition_video_date {
    font-size: 16px;
    color: var(--color-text);
    margin: 0;
}

.exhibition_video_more_link {
    margin-top: auto;
    text-align: right;
}

.exhibition_video_more {
    font-size: 16px;
    color: var(--color-text-muted);
    letter-spacing: 1.6px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s ease;
}

.exhibition_video_more:hover {
    color: var(--color-text-dark);
}

.exhibition_video_more::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
}

/* 藝術家卡片 (內嵌於展覽內頁) */
.exhibition_artist_card_slick .slick-dots li button:before {
    font-size: 50px;
}

.exhibition_artist_card {
    display: grid;
    grid-template-columns: 428px 1fr;
    gap: 42px;
    align-items: center;
}

.exhibition_artist_image {
    width: 428px;
    height: 340px;
    overflow: hidden;
    background-color: #d0d0d0;
}

.exhibition_artist_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.exhibition_artist_card:hover .exhibition_artist_image img {
    transform: scale(1.04);
}

.exhibition_artist_info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.exhibition_artist_name {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3.2px;
    color: var(--color-text);
    margin: 0;
}

@media (max-width: 767px) {
    .exhibition_artist_name {
        font-weight: 400;
        font-size: 20px;
    }
}

.exhibition_artist_meta {
    font-size: 16px;
    color: var(--color-text-light);
    letter-spacing: 1.6px;
    margin: 0;
}

.exhibition_artist_bio {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    max-height: 216px;
    color: var(--color-text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 9;
    /*x 值代表要在第幾行的時候將後面的文字隱藏並出現 ...*/
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    /* 注意這層的高度要固定 */
}

.exhibition_artist_bio p {
    margin: 0 0 18px;
}

@media (max-width: 1024px) {
    .exhibition_meta_title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .exhibition_artist_card {
        grid-template-columns: 350px 1fr;
    }

    .exhibition_artist_image {
        width: 350px;
        height: 278px;
    }

    .exhibition_artist_bio {
        -webkit-line-clamp: 7;
        max-height: 168px;
    }

    .exhibition_video_layout {
        grid-template-columns: 1fr;
    }

    .exhibition_video_info {
        height: auto;
    }

    .exhibition_video_more {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .exhibition_artist_card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .exhibition_artist_image {
        width: 100%;
        height: auto;
        aspect-ratio: 428 / 340;
        order: 1;
    }
}

.work_card_slick .slick-dots li button:before {
    font-size: 50px;
}

/* ============================================
   MARK:最新消息 / 影音列表 - 共用卡片格 (Figma 122:964 / 125:1287)
   ============================================ */
.news_list_wrap,
.video_list_wrap,
.artists_list_wrap {
    padding: 80px 0 146px;
}
.news_list_wrap {
    padding: 78px 0 146px;
}
@media(max-width: 991px) {
    .news_list_wrap,
    .video_list_wrap,
    .artists_list_wrap {
        padding: 58px 0 171px;
    }
    .video_list_wrap {
        padding: 55px 0 171px;
    }
}
.news_list_grid,
.video_list_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 45px;
    row-gap: 80px;
    padding-bottom: 90px;
}

.news_card_v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}

.news_card_v2_image {
    width: 100%;
    aspect-ratio: 410 / 282;
    overflow: hidden;
    background-color: #d0d0d0;
}

.news_card_v2_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news_card_v2:hover .news_card_v2_image img {
    transform: scale(1.04);
}

.news_card_v2_title {
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    height: 64px;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /*x 值代表要在第幾行的時候將後面的文字隱藏並出現 ...*/
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    /* 注意這層的高度要固定 */
}

.news_card_v2_tag {
    font-size: 16px;
    color: var(--color-text);
    letter-spacing: 1.6px;
    margin: 0;
}

.news_card_v2_date {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0;
}
@media(max-width: 767px) {
    .news_card_v2 {
        gap: 8px;
    }
    .news_card_v2_title {
        font-size: 18px;
    }
    .news_card_v2_date {
        font-size: 14px;
    }
}
/* 影音卡片: 圖中央有播放按鈕 */
.video_card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    position: relative;
}

.video_card_image {
    position: relative;
    width: 100%;
    aspect-ratio: 410 / 282;
    overflow: hidden;
    background-color: #1a1a1a;
}

.video_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.2s ease;
}
.video_card_image iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.video_card:hover .video_card_image img {
    transform: scale(1.04);
    opacity: 0.8;
}

.video_card_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
}

.video_card:hover .video_card_play {
    background-color: rgba(255, 255, 255, 0.3);
}

.video_card_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video_card_title {
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    color: var(--color-text-dark);
    margin: 0;
}

.video_card_date {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 991px) {

    .news_list_grid,
    .video_list_grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 60px;
    }
    .video_card {
        gap: 8px;
    }
    .video_card_content {
        gap: 8px;
    }
}

@media (max-width: 640px) {

    .news_list_grid,
    .video_list_grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MARK:新聞內頁 (News Detail - Figma 125:1637)
   ============================================ */
.news_detail_page {
    padding: 129px 0 285px;
}
@media(max-width: 991px) {
    .news_detail_page {
        padding: 55px 0 194px;
    }
}
.news_detail_header {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 73px;
}
@media(max-width: 991px) {
    .news_detail_header {
        gap: 16px;
        margin-bottom: 32px;
    }
}
.news_detail_title {
    font-size: 36px;
    font-weight: 300;
    line-height: 45px;
    color: var(--color-text-dark);
    margin: 0;
}

.news_detail_date {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0;
}

.news_detail_body {
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 1.5px;
    color: var(--color-text-dark);
}

.news_detail_body p {
    margin: 0 0 28px;
}

.news_detail_footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 73px;
}

.news_detail_back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 16px;
    letter-spacing: 1.6px;
    transition: color 0.2s ease;
}

@media (max-width: 1024px) {
    .news_detail_back {
        justify-content: flex-end;
    }
}
@media (max-width: 767px) {
    .news_detail_title {
        font-size: 24px;
    }
    .news_detail_back:lang(en) {
        margin-left: auto;
    }
}
.news_detail_back:hover {
    color: var(--color-text-dark);
}

.news_detail_back::before {
    content: '';
    width: 8px;
    height: 8px;
    border-bottom: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
}

/* ============================================
   MARK:影音內頁 (Video Detail - Figma 131:42)
   - 左 784x433 播放器 + 右 455 寬資訊
   ============================================ */
.video_detail_page {
    padding: 80px 0 180px;
}
@media(max-width: 991px) {
    .video_detail_page {
        padding: 55px 0 254px;
    }
}
.video_detail_grid {
    display: grid;
    grid-template-columns: 784fr 455fr;
    gap: 77px;
    align-items: flex-start;
}

.video_detail_player {
    position: relative;
    width: 100%;
    aspect-ratio: 784 / 433;
    overflow: hidden;
    background-color: #1a1a1a;
    cursor: pointer;
}

.video_detail_player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.video_detail_player iframe {
    width: 100%;
    height: 100%;
}

.video_detail_player:hover img {
    opacity: 0.7;
}

.video_detail_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: background-color 0.2s ease;
}

.video_detail_player:hover .video_detail_play {
    background-color: rgba(255, 255, 255, 0.35);
}

.video_detail_info {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding-top: 4px;
    width: 100%;
}

.video_detail_header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.video_detail_header_mobile {
    display: none;
}
.video_detail_title {
    font-size: 32px;
    font-weight: 300;
    line-height: 32px;
    color: var(--color-text-dark);
    margin: 0;
}

.video_detail_date {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0;
}

.video_detail_body {
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 1.5px;
    color: var(--color-text-dark);
}

.video_detail_body p {
    margin: 0 0 28px;
}

.video_detail_back_wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .video_detail_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .video_detail_header {
        display: none;
    }

    .video_detail_header_mobile {
        display: flex;
        gap: 16px;
        margin-bottom: 10px;
    } 

    .video_detail_title {
        font-size: 24px;
    }
}

/* ============================================
   MARK:聯絡我們 (Contact - Figma 131:350)
   - 左 HTML 內容 + 右 聯絡表單 + 下方圖片
   ============================================ */
.contact_page {
    padding: 0 15px 80px;
}

@media (max-width: 640px) {
    .contact_page.container_full {
        width: 100%;
        padding: 0 0 130px;
    }
}

.contact_grid {
    display: grid;
    grid-template-columns: 1fr 587px;
    gap: 200px;
    padding-top: 80px;
}

.contact_text {
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 1.5px;
    color: var(--color-text-dark);
}

.contact_text p {
    margin: 0 0 28px;
}

.contact_form_wrap {
    width: 100%;
    max-width: 587px;
}

.contact_form_title {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: var(--color-text-muted);
    margin: 0 0 30px;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact_field {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 16px;
}

.contact_field_label {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.6px;
    color: #000000;
}

.contact_field_input {
    width: 100%;
    height: 38px;
    border: 0;
    border-bottom: 1px solid #d0d0d0;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 1.4px;
    color: var(--color-text-dark);
    padding: 6px 10px 6px 0;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact_field_input::placeholder {
    color: var(--color-text-muted);
}

.contact_field_input:focus {
    border-bottom-color: var(--color-text-dark);
}

.contact_field_textarea {
    align-items: flex-start;
}

.contact_field_textarea .contact_field_input {
    height: 242px;
    resize: vertical;
    padding: 6px 10px 6px 0;
    border: 0;
    border-bottom: 1px solid #d0d0d0;
}

.contact_form_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.contact_captcha {
    width: 280px;
    height: 71px;
    background-color: #e8e8e8;
    background-image: repeating-linear-gradient(45deg, #d0d0d0 0 2px, transparent 2px 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 14px;
    letter-spacing: 2px;
    user-select: none;
}

.contact_submit_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 203px;
    height: 50px;
    padding: 10px 12px;
    border: 1px solid #bfbfbf;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.contact_submit_btn svg {
    width: 20px;
    stroke: var(--color-text-muted);
}
.contact_submit_btn:hover {
    background-color: var(--color-text-dark);
    color: #ffffff;
    border-color: var(--color-text-dark);
}
.contact_submit_btn:hover svg {
    stroke: #fff;
}
/* 下方圖片 */
.contact_banner {
    width: 100%;
    aspect-ratio: 1318 / 528;
    overflow: hidden;
    background-color: #d0d0d0;
}

@media (max-width: 640px) {
    .contact_banner {
        height: 400px;
    }
}

.contact_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact_banner iframe {
    width: 100%;
    height: 100%;
}
@media (max-width: 1499px) {
    .contact_grid {
        gap: 80px;
    }
}
@media (max-width: 1199px) {
    .contact_grid {
        grid-template-columns: 1fr;
        gap: 64px;
        padding-top: 51px;
    }

    .contact_form_wrap {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .contact_submit_btn {
        width: 175px;
    }
}

@media (max-width: 640px) {
    .contact_field {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact_form_bottom {
        flex-direction: column;
        align-items: end;
    }
}

/* ============================================
   MARK: 訂閱電子報
   ============================================ */

.subscribe_newsletter_page {
    padding: 0 15px 80px;
}

.subscribe_newsletter_grid {
    display: grid;
    grid-template-columns: 1fr 587px;
    gap: 80px;
    padding-top: 77px;
}

@media (max-width: 1399px) {

    .subscribe_newsletter_grid {
        grid-template-columns: 1fr 400px;
    }

}

@media (max-width: 991px) {

    .subscribe_newsletter_page {
        padding: 0 15px 174px;
    }
    .subscribe_newsletter_grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 51px;
    }

}



.subscribe_newsletter_form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.subscribe_newsletter_field {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 16px;
}

.subscribe_newsletter_field_label {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.6px;
    color: #000000;
}

.subscribe_newsletter_field_input {
    width: 100%;
    height: 38px;
    border: 0;
    border-bottom: 1px solid #d0d0d0;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 1.4px;
    color: var(--color-text-dark);
    padding: 6px 10px 6px 0;
    outline: none;
    transition: border-color 0.2s ease;
}

.subscribe_newsletter_field_input::placeholder {
    color: var(--color-text-muted);
}

.subscribe_newsletter_field_input:focus {
    border-bottom-color: var(--color-text-dark);
}
@media(max-width: 991px) {
    .subscribe_newsletter_form {
        gap: 24px;
    }
    .subscribe_newsletter_field {
        display: block;
    }
}
.subscribe_newsletter_form_bottom {
    margin: 50px 0 20px;
}

.subscribe_newsletter_submit_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 180px;
    height: 50px;
    padding: 10px 12px;
    border: 1px solid #bfbfbf;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.subscribe_newsletter_submit_btn svg {
    width: 20px;
    stroke: var(--color-text-muted);
}
.subscribe_newsletter_submit_btn:hover {
    background-color: var(--color-text-dark);
    color: #ffffff;
    border-color: var(--color-text-dark);
}
.subscribe_newsletter_submit_btn:hover svg {
    stroke: #fff;
}

.subscribe_newsletter_content {
    color: var(--color-text-muted);
    font-size: 12px;
}

@media(max-width: 991px) {
    .subscribe_newsletter_form_bottom {
        margin: 50px 0 25px;
    }
}
/* ============================================
   MARK:搜尋頁面
   ============================================ */

.search_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.search_text {
    color: var(--color-text-muted);
}
.search_block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #7b7b7b;
    padding-bottom: 8px;
}

.search_icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.6;
    color: var(--main);
}

.search input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 1.6px;
    outline: none;
}

.search input::placeholder {
    color: var(--color-text-muted);
}

.search_btn {
    flex-shrink: 0;
    width: 95px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #7b7b7b;
    font-size: 16px;
    border: 1px solid #BFBFBF;
    cursor: pointer;
    transition: all 0.5s;
}
.search_btn:hover {
    opacity: 0.7;
}
@media(max-width: 991px) {
    .search_wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .search_block {
        width: 100%;
    }
    .search {
        width: calc(100% - 107px);
    }
}
.search_list_null_block {
    color: var(--color-text-muted);
}
.search_list_null_title {
    font-size: 20px;
}

.search_list_wrap {
    padding: 40px 0 80px;
}

.search_list_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 48px;
    row-gap: 80px;
    padding-bottom: 90px;
}

.search_card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    position: relative;
}

.search_card_image {
    position: relative;
    width: 100%;
    aspect-ratio: 410 / 282;
    overflow: hidden;
    background-color: #1a1a1a;
}

.search_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.2s ease;
}

.search_card:hover .search_card_image img {
    transform: scale(1.04);
    opacity: 0.8;
}

.search_card_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
}

.search_card:hover .search_card_play {
    background-color: rgba(255, 255, 255, 0.3);
}

.search_card_source_type {
    color: var(--color-text-muted);
}
.search_card_title {
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    color: var(--color-text-dark);
    margin: 0;
}

.search_card_date {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .search_list_wrap {
        padding: 65px 0 80px;
    }
    .search_list_grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 48px;
    }
    .search_card {
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .search_list_grid {
        grid-template-columns: 1fr;
    }
}