@import 'HappyMinimi.Client.llbblp15jq.bundle.scp.css';

/* /Components/Layout/FooterBar.razor.rz.scp.css */
/* ========================================
   FooterBar.razor 樣式（scoped）
   - 滿寬深藍底,3 列 grid:
     [品牌 + 聯絡資訊 + 社群] | [最新文章] | [住宿・觀光]
   - 底部獨立一列：版權 + 相關連結
   - 覆寫 app.css 裡舊版 .site-footer 的 flex 排版,
     改用 block + grid 實現新設計
   ======================================== */

/* ===== 覆寫 app.css 裡 .site-footer 的舊 flex 版型 ===== */
.site-footer[b-hp4ibejl3z] {
    display: block;
    background: var(--deep);
    color: #d7ecee;
    font-family: 'Chiron Hei HK WS', 'Noto Sans TC', sans-serif;
    padding: 4rem 0 0;
}

.site-footer h2[b-hp4ibejl3z] {
    margin: 0;
    color: #ffffff;
    font-size: inherit;
    font-weight: inherit;
}

.site-footer p[b-hp4ibejl3z] {
    margin: 0;
}

/* ===== 內容靠邊鋪滿(背景滿寬,內容亦跟到邊,只留少量 padding 防貼邊) ===== */
.site-footer__inner[b-hp4ibejl3z] {
    max-width: 100%;
    padding: 0 1.5rem;
}

/* ===== 3 列主體 =====
   品牌欄（容納 logo + 聯絡 + 社群）,
   最新文章欄次寬（標題可能很長,給多一點空間）,
   住宿觀光欄最窄。
   ─────────────────────────────────
   |  品牌+聯絡+社群  |  最新文章  |  住宿 |
   |      1.5fr       |   1.5fr    | 0.8fr |
   ───────────────────────────────── */
.site-footer__grid[b-hp4ibejl3z] {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 0.8fr;
    gap: 3rem 3rem;
    align-items: start;
}

@media (max-width: 992px) {
    .site-footer__grid[b-hp4ibejl3z] {
        grid-template-columns: 1.4fr 1fr;
        gap: 2.5rem;
    }

        /* 中等螢幕:第 1 欄(品牌)跨滿,第 2 / 3 欄並排 */
        .site-footer__grid > .site-footer__brand[b-hp4ibejl3z] {
            grid-column: 1 / -1;
        }
}

@media (max-width: 576px) {
    .site-footer__grid[b-hp4ibejl3z] {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
}

/* =================================================
   1. 品牌區（含聯絡資訊 + 社群）
   ================================================= */
.site-footer__brand[b-hp4ibejl3z] {
    /* 強制文字靠左：蓋掉 app.css 舊版 .site-footer 的 flex/center 影響 */
    text-align: left;
    align-self: stretch;
}

.site-footer__brand-head[b-hp4ibejl3z] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.site-footer__logo[b-hp4ibejl3z] {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c8aa0 0%, #1c5e74 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.site-footer__brand-title[b-hp4ibejl3z] {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.site-footer__brand-subtitle[b-hp4ibejl3z] {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    margin-top: 0.15rem;
}

/* 品牌區內的聯絡資訊列表 */
.site-footer__brand .site-footer__col[b-hp4ibejl3z] {
    margin-bottom: 1.25rem;
}

.site-footer__contact[b-hp4ibejl3z] {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .site-footer__contact li[b-hp4ibejl3z] {
        display: flex;
        align-items: flex-start;
        gap: 0.65rem;
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.9rem;
        line-height: 1.55;
        padding: 0.3rem 0;
        letter-spacing: 0.02em;
    }

    .site-footer__contact i[b-hp4ibejl3z] {
        color: #5cb6d6;
        font-size: 0.95rem;
        flex: 0 0 16px;
        margin-top: 0.2rem;
    }

    .site-footer__contact a[b-hp4ibejl3z] {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .site-footer__contact a:hover[b-hp4ibejl3z],
        .site-footer__contact a:focus-visible[b-hp4ibejl3z] {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

/* 社交 icon 列 */
.site-footer__socials[b-hp4ibejl3z] {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.site-footer__social[b-hp4ibejl3z] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s ease, filter 0.2s ease;
}

    .site-footer__social:hover[b-hp4ibejl3z] {
        transform: translateY(-2px);
        filter: brightness(1.08);
        text-decoration: none;
        color: #ffffff;
    }

.site-footer__social--line[b-hp4ibejl3z] {
    background: #00c300;
}

.site-footer__social--facebook[b-hp4ibejl3z] {
    background: #1877f2;
}

.site-footer__social--instagram[b-hp4ibejl3z] {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.site-footer__social--whatsapp[b-hp4ibejl3z] {
    background: #25d366;
}

/* =================================================
   2 / 3. 連結列(最新文章 / 住宿觀光)
   ================================================= */
.site-footer__col[b-hp4ibejl3z] {
    min-width: 0;
}

.site-footer__heading[b-hp4ibejl3z] {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.06em;
}

.site-footer__list[b-hp4ibejl3z] {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .site-footer__list li[b-hp4ibejl3z] {
        margin: 0;
    }

    .site-footer__list a[b-hp4ibejl3z] {
        display: inline-block;
        color: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        font-size: 0.9rem;
        line-height: 2.2;
        letter-spacing: 0.04em;
        transition: color 0.2s ease;
    }

        .site-footer__list a:hover[b-hp4ibejl3z],
        .site-footer__list a:focus-visible[b-hp4ibejl3z] {
            color: #ffffff;
            text-decoration: none;
        }

/* Blog 列表變體：標題可能很長，做單行截斷 */
.site-footer__list--blog a[b-hp4ibejl3z] {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    vertical-align: middle;
}

.site-footer__list-more[b-hp4ibejl3z] {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

    .site-footer__list-more a[b-hp4ibejl3z] {
        color: var(--reef, #069a9f) !important;
        font-weight: 600;
    }

        .site-footer__list-more a:hover[b-hp4ibejl3z],
        .site-footer__list-more a:focus-visible[b-hp4ibejl3z] {
            color: #ffffff !important;
        }

/* 空狀態 */
.site-footer__empty[b-hp4ibejl3z] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.8;
}

/* =================================================
   底部：版權 + 相關連結
   ================================================= */
.site-footer__bottom[b-hp4ibejl3z] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    max-width: 100%;
    margin: 3rem 0 0;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

    .site-footer__bottom a[b-hp4ibejl3z] {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .site-footer__bottom a:hover[b-hp4ibejl3z],
        .site-footer__bottom a:focus-visible[b-hp4ibejl3z] {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

.site-footer__links[b-hp4ibejl3z] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer__divider[b-hp4ibejl3z] {
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
}

/* ===== 響應式 ===== */
@media (max-width: 768px) {
    .site-footer[b-hp4ibejl3z] {
        padding: 3rem 0 0;
    }

    .site-footer__inner[b-hp4ibejl3z] {
        padding: 0 1.25rem;
    }

    .site-footer__bottom[b-hp4ibejl3z] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.25rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
main[b-cmau2ki4er] {
    min-height: 100vh;
}

#blazor-error-ui[b-cmau2ki4er] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-cmau2ki4er] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-t9ppwwdr9c],
.components-reconnect-repeated-attempt-visible[b-t9ppwwdr9c],
.components-reconnect-failed-visible[b-t9ppwwdr9c],
.components-pause-visible[b-t9ppwwdr9c],
.components-resume-failed-visible[b-t9ppwwdr9c],
.components-rejoining-animation[b-t9ppwwdr9c] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-t9ppwwdr9c],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-t9ppwwdr9c],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-t9ppwwdr9c],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-t9ppwwdr9c],
#components-reconnect-modal.components-reconnect-retrying[b-t9ppwwdr9c],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-t9ppwwdr9c],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-t9ppwwdr9c],
#components-reconnect-modal.components-reconnect-failed[b-t9ppwwdr9c],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-t9ppwwdr9c] {
    display: block;
}


#components-reconnect-modal[b-t9ppwwdr9c] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-t9ppwwdr9c 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-t9ppwwdr9c 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-t9ppwwdr9c 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-t9ppwwdr9c]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-t9ppwwdr9c 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-t9ppwwdr9c {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-t9ppwwdr9c {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-t9ppwwdr9c {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-t9ppwwdr9c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-t9ppwwdr9c] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-t9ppwwdr9c] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-t9ppwwdr9c] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-t9ppwwdr9c] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-t9ppwwdr9c] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-t9ppwwdr9c] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-t9ppwwdr9c 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-t9ppwwdr9c] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-t9ppwwdr9c {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/ActivitiesSection.razor.rz.scp.css */
/* ========================================
   ActivitiesSection.razor 樣式（新設計）
   - 4 列 grid 卡片(響應式: 平板 2 列 / 手機 1 列)
   - 不再橫向滾動
   ======================================== */

/* ===== Section 整體 ===== */
.activities-section[b-gfm53rusd8] {
    padding: 4rem 0 6rem;
    background-color: #fff;
    font-family: 'Chiron Hei HK WS', 'Noto Sans TC', sans-serif;
}

/* ===== 主標題 ===== */
.activities-title[b-gfm53rusd8] {
    text-align: center;
    color: var(--brand-bluegreen);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
}

/* ===== Card Container：4 列 grid，無橫向滾動 ===== */
.card-container[b-gfm53rusd8] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 0.5rem 0;
}

/* 平板：2 列 */
@media (max-width: 992px) {
    .card-container[b-gfm53rusd8] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

/* 手機：1 列 */
@media (max-width: 576px) {
    .card-container[b-gfm53rusd8] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ===== 響應式 ===== */
@media (max-width: 768px) {
    .activities-section[b-gfm53rusd8] {
        padding: 2.5rem 0 3rem;
    }

    .activities-title[b-gfm53rusd8] {
        margin-bottom: 1.75rem;
    }
}
/* /Components/Pages/ActivityCard.razor.rz.scp.css */
/* ========================================
   ActivityCard.razor 新設計樣式
   - 頂部藍色漸變 hero 區
   - 底部白色卡片體（標題 / 描述 / CTA）
   - 響應式: 桌面 4 列 → 平板 2 列 → 手機 1 列(由父層 grid 控制)
   ======================================== */

/* ===== 卡片外殼 ===== */
.activity-card[b-814u8soc6g] {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .activity-card:hover[b-814u8soc6g],
    .activity-card:focus-visible[b-814u8soc6g] {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(58, 106, 117, 0.22);
        text-decoration: none;
        color: inherit;
    }

    .activity-card:focus-visible[b-814u8soc6g] {
        outline: 3px solid var(--brand-bluegreen);
        outline-offset: 4px;
    }

/* ===== 頂部藍色漸變 hero 區 ===== */
.activity-card__hero[b-814u8soc6g] {
    position: relative;
    height: 200px;
    padding: 1.25rem 1.5rem;
    background:
        radial-gradient(ellipse at 65% 50%, #4a6b7c 0%, #516f80 35%, #6b8a9c 75%, #7c98a8 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* DIVING / FREEDIVING 等分類小藥丸 */
.activity-card__tag[b-814u8soc6g] {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #fff;
    color: #2c5a7c;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    line-height: 1;
}

/* 中文大標 */
.activity-card__hero-title[b-814u8soc6g] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0.5rem 0 0.35rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

/* 英文副標 */
.activity-card__hero-subtitle[b-814u8soc6g] {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.22em;
    line-height: 1;
}

/* ===== 底部白色卡片體 ===== */
.activity-card__body[b-814u8soc6g] {
    padding: 1.5rem 1.75rem 1.75rem;
    background-color: #fff;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.activity-card__title[b-814u8soc6g] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a3a4a;
    margin: 0 0 1rem;
    letter-spacing: 0.06em;
}

.activity-card__desc[b-814u8soc6g] {
    flex: 1 1 auto;
}

    .activity-card__desc p[b-814u8soc6g] {
        color: #6a7a8a;
        font-size: 0.9rem;
        line-height: 1.75;
        letter-spacing: 0.04em;
        margin: 0 0 0.15rem;
    }

/* 「了解課程 →」CTA */
.activity-card__cta[b-814u8soc6g] {
    display: inline-block;
    margin-top: 1.25rem;
    color: #2c5a7c;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
}

.activity-card:hover .activity-card__cta[b-814u8soc6g] {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== 響應式 ===== */
@media (max-width: 768px) {
    .activity-card__hero[b-814u8soc6g] {
        height: 180px;
    }

    .activity-card__hero-title[b-814u8soc6g] {
        font-size: 1.4rem;
    }

    .activity-card__body[b-814u8soc6g] {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .activity-card__title[b-814u8soc6g] {
        font-size: 1.1rem;
    }

    .activity-card__desc p[b-814u8soc6g] {
        font-size: 0.85rem;
        line-height: 1.7;
    }
}
/* /Components/Pages/Blog.razor.rz.scp.css */
/* ========================================
   Blog.razor 列表頁樣式
   - Banner
   - 主內容 + 側邊欄 2 欄
   - 分頁
   ======================================== */

.blog-page[b-qgxlp5f50n] {
    background: #ffffff;
    color: var(--ink, #173036);
    font-family: "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Banner ===== */
.blog-banner[b-qgxlp5f50n] {
    position: relative;
    width: 100%;
    min-height: 320px;
    background-image: url('https://images.unsplash.com/photo-1544551763-77ef2d0cfc6c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center 55%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-banner__overlay[b-qgxlp5f50n] {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 50, 58, 0.45) 0%, rgba(5, 50, 58, 0.7) 100%);
}

.blog-banner__content[b-qgxlp5f50n] {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 80px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.blog-banner__eyebrow[b-qgxlp5f50n] {
    display: inline-block;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.5em;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-left: 0.5em; /* 視覺修正 letter-spacing 偏移 */
    color: #f5b44c;
}

.blog-banner__title[b-qgxlp5f50n] {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.blog-banner__desc[b-qgxlp5f50n] {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    margin: 0;
    opacity: 0.95;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

/* ===== 內容容器 ===== */
.blog-container[b-qgxlp5f50n] {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 20px 5rem;
}

/* ===== 文章列表 ===== */
.blog-list[b-qgxlp5f50n] {
    /* BlogCard 各自處理卡片樣式,這裡只控間距 */
}

/* ===== 空狀態 ===== */
.blog-empty[b-qgxlp5f50n] {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--muted, #61777c);
}

.blog-empty i[b-qgxlp5f50n] {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--reef, #069a9f);
    opacity: 0.4;
}

.blog-empty p[b-qgxlp5f50n] {
    font-size: 1.05rem;
    margin: 0;
}

/* ===== 分頁 ===== */
.blog-pagination[b-qgxlp5f50n] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(9, 47, 54, 0.08);
}

.blog-pagination__btn[b-qgxlp5f50n] {
    background: #fff;
    color: var(--reef, #069a9f);
    border: 1.5px solid var(--reef, #069a9f);
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-pagination__btn:hover:not(:disabled)[b-qgxlp5f50n],
.blog-pagination__btn:focus-visible:not(:disabled)[b-qgxlp5f50n] {
    background: var(--reef, #069a9f);
    color: #fff;
    transform: translateY(-1px);
    outline: none;
}

.blog-pagination__btn:disabled[b-qgxlp5f50n] {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: var(--muted, #61777c);
    color: var(--muted, #61777c);
}

.blog-pagination__info[b-qgxlp5f50n] {
    color: var(--ink, #173036);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    min-width: 6rem;
    text-align: center;
}

/* ===== 響應式 ===== */
@media (max-width: 991.98px) {
    .blog-container[b-qgxlp5f50n] {
        padding: 2rem 16px 3rem;
    }

    .blog-banner[b-qgxlp5f50n] {
        min-height: 220px;
    }

    .blog-banner__content[b-qgxlp5f50n] {
        padding: 50px 16px;
    }
}
/* /Components/Pages/BlogCard.razor.rz.scp.css */
/* ========================================
   BlogCard 文章列表卡片
   - 橫向：左圖右文（md 以上），手機直向
   - 封面圖 16:9 比例
   - 標題 hover 變色
   ======================================== */

.blog-card[b-w0v8toj9k3] {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(9, 47, 54, 0.08);
}

.blog-card:last-child[b-w0v8toj9k3] {
    border-bottom: none;
}

@media (max-width: 720px) {
    .blog-card[b-w0v8toj9k3] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===== 封面圖 ===== */
.blog-card__media[b-w0v8toj9k3] {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: #f4fbfb;
}

.blog-card__media img[b-w0v8toj9k3] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card__media:hover img[b-w0v8toj9k3] {
    transform: scale(1.04);
}

.blog-card__media-fallback[b-w0v8toj9k3] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--reef, #069a9f);
    font-size: 2rem;
    background: linear-gradient(135deg, #e3f5f5 0%, #c8eaea 100%);
}

.blog-card__category[b-w0v8toj9k3] {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--reef, #069a9f);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

/* ===== 文字區 ===== */
.blog-card__body[b-w0v8toj9k3] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.blog-card__title[b-w0v8toj9k3] {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 0.5rem;
    color: var(--deep, #05323a);
    letter-spacing: 0.02em;
}

.blog-card__title a[b-w0v8toj9k3] {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}

.blog-card__title a:hover[b-w0v8toj9k3],
.blog-card__title a:focus-visible[b-w0v8toj9k3] {
    color: var(--reef, #069a9f);
    outline: none;
}

@media (max-width: 720px) {
    .blog-card__title[b-w0v8toj9k3] {
        font-size: 1.2rem;
    }
}

.blog-card__meta[b-w0v8toj9k3] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted, #61777c);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.blog-card__meta i[b-w0v8toj9k3] {
    margin-right: 0.3rem;
    opacity: 0.85;
}

.blog-card__meta-sep[b-w0v8toj9k3] {
    color: rgba(9, 47, 54, 0.25);
}

.blog-card__summary[b-w0v8toj9k3] {
    color: #3a4a52;
    font-size: 0.95rem;
    line-height: 1.85;
    margin: 0 0 0.85rem;
    letter-spacing: 0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__more[b-w0v8toj9k3] {
    margin-top: auto;
    align-self: flex-start;
    color: var(--reef, #069a9f);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 2px solid transparent;
    transition: border-color 0.18s ease, color 0.18s ease;
    padding-bottom: 2px;
}

.blog-card__more:hover[b-w0v8toj9k3],
.blog-card__more:focus-visible[b-w0v8toj9k3] {
    color: var(--reef-dark, #067277);
    border-bottom-color: var(--reef-dark, #067277);
    outline: none;
}
/* /Components/Pages/BlogCategoryPage.razor.rz.scp.css */
/* ========================================
   BlogCategory.razor 分類頁樣式
   - 與 BlogPost 共用麵包屑 .blog-breadcrumb
   - 分類頁專屬標題區塊
   ======================================== */

.blog-category-header[b-sfa0yol401] {
    background: linear-gradient(135deg, #05323a 0%, #067277 100%);
    color: #fff;
    padding: 3.5rem 0 3rem;
}

.blog-category-header__inner[b-sfa0yol401] {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-category-header__title[b-sfa0yol401] {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin: 0.5rem 0 0.6rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.blog-category-header__desc[b-sfa0yol401] {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 0.8rem;
    max-width: 720px;
}

.blog-category-header__count[b-sfa0yol401] {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 720px) {
    .blog-category-header[b-sfa0yol401] {
        padding: 2rem 0 1.8rem;
    }
}
/* /Components/Pages/BlogDetail.razor.rz.scp.css */
/* ========================================
   BlogPost.razor 詳情頁樣式
   - 麵包屑
   - 文章主視覺（標題、分類、日期、作者）
   - 封面圖
   - 文章內文排版（h2/h3/p/ul/ol/blockquote）
   - 底部導引
   ======================================== */

/* ===== 麵包屑 ===== */
.blog-breadcrumb[b-i2d3x9z8qj] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.blog-breadcrumb a[b-i2d3x9z8qj] {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.18s ease;
}

.blog-breadcrumb a:hover[b-i2d3x9z8qj],
.blog-breadcrumb a:focus-visible[b-i2d3x9z8qj] {
    color: #fff;
    text-decoration: underline;
    outline: none;
}

/* ===== 文章主視覺 ===== */
.blogpost-header[b-i2d3x9z8qj] {
    background: linear-gradient(135deg, #05323a 0%, #067277 100%);
    color: #fff;
    padding: 4rem 0 3rem;
}

.blogpost-header__inner[b-i2d3x9z8qj] {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.blogpost-header__category[b-i2d3x9z8qj] {
    display: inline-block;
    background: #f5b44c;
    color: #05323a;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}

.blogpost-header__category:hover[b-i2d3x9z8qj],
.blogpost-header__category:focus-visible[b-i2d3x9z8qj] {
    background: #f59e0b;
    color: #05323a;
    transform: translateY(-1px);
    outline: none;
}

.blogpost-header__title[b-i2d3x9z8qj] {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
    color: #fff;
}

.blogpost-header__meta[b-i2d3x9z8qj] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.blogpost-header__meta i[b-i2d3x9z8qj] {
    margin-right: 0.35rem;
    opacity: 0.9;
}

.blogpost-header__sep[b-i2d3x9z8qj] {
    opacity: 0.6;
}

/* ===== 封面圖 ===== */
.blogpost-cover[b-i2d3x9z8qj] {
    margin: 0;
    max-width: 1180px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.blogpost-cover img[b-i2d3x9z8qj] {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

/* ===== 內文排版 ===== */
.blogpost-content[b-i2d3x9z8qj] {
    font-size: 1.05rem;
    line-height: 2;
    color: #2a3a40;
    letter-spacing: 0.02em;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 16px rgba(9, 47, 54, 0.06);
    border: 1px solid rgba(9, 47, 54, 0.06);
}

.blogpost-content h2[b-i2d3x9z8qj] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep, #05323a);
    margin: 2.2rem 0 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--reef, #069a9f);
    letter-spacing: 0.03em;
}

.blogpost-content h2:first-child[b-i2d3x9z8qj] {
    margin-top: 0;
}

.blogpost-content h3[b-i2d3x9z8qj] {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep, #05323a);
    margin: 1.8rem 0 0.6rem;
    letter-spacing: 0.03em;
}

.blogpost-content p[b-i2d3x9z8qj] {
    margin: 0 0 1.1rem;
}

.blogpost-content strong[b-i2d3x9z8qj] {
    color: var(--deep, #05323a);
    font-weight: 700;
}

.blogpost-content a[b-i2d3x9z8qj] {
    color: var(--reef, #069a9f);
    text-decoration: underline;
    text-decoration-color: rgba(6, 154, 159, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.18s ease, color 0.18s ease;
}

.blogpost-content a:hover[b-i2d3x9z8qj],
.blogpost-content a:focus-visible[b-i2d3x9z8qj] {
    color: var(--reef-dark, #067277);
    text-decoration-color: var(--reef-dark, #067277);
    outline: none;
}

.blogpost-content ul[b-i2d3x9z8qj],
.blogpost-content ol[b-i2d3x9z8qj] {
    margin: 0 0 1.2rem;
    padding-left: 1.5rem;
}

.blogpost-content li[b-i2d3x9z8qj] {
    margin-bottom: 0.4rem;
}

.blogpost-content blockquote[b-i2d3x9z8qj] {
    border-left: 4px solid var(--reef, #069a9f);
    padding: 0.6rem 1.2rem;
    margin: 1.2rem 0;
    color: #4a5a60;
    background: #f4fbfb;
    border-radius: 0 8px 8px 0;
}

.blogpost-content img[b-i2d3x9z8qj] {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.blogpost-content code[b-i2d3x9z8qj] {
    background: #f4fbfb;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: "Consolas", "Monaco", monospace;
    font-size: 0.95em;
    color: var(--reef-dark, #067277);
}

/* ===== 底部導引 ===== */
.blogpost-footer[b-i2d3x9z8qj] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(9, 47, 54, 0.08);
}

.blogpost-footer__back[b-i2d3x9z8qj],
.blogpost-footer__category[b-i2d3x9z8qj] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--reef, #069a9f);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    padding: 0.5rem 0;
    transition: color 0.18s ease, transform 0.18s ease;
}

.blogpost-footer__back:hover[b-i2d3x9z8qj],
.blogpost-footer__back:focus-visible[b-i2d3x9z8qj],
.blogpost-footer__category:hover[b-i2d3x9z8qj],
.blogpost-footer__category:focus-visible[b-i2d3x9z8qj] {
    color: var(--reef-dark, #067277);
    transform: translateX(2px);
    outline: none;
}

.blogpost-footer__category[b-i2d3x9z8qj] {
    margin-left: auto;
}

/* ===== 回到列表（404 / 通用）===== */
.blog-back[b-i2d3x9z8qj] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--reef, #069a9f);
    text-decoration: none;
    font-weight: 600;
}

.blog-back:hover[b-i2d3x9z8qj],
.blog-back:focus-visible[b-i2d3x9z8qj] {
    color: var(--reef-dark, #067277);
    outline: none;
}

/* ===== 響應式 ===== */
@media (max-width: 720px) {
    .blogpost-header[b-i2d3x9z8qj] {
        padding: 2.5rem 0 2rem;
    }

    .blogpost-content[b-i2d3x9z8qj] {
        padding: 1.5rem 1rem;
        font-size: 1rem;
        line-height: 1.85;
    }

    .blogpost-footer[b-i2d3x9z8qj] {
        flex-direction: column;
        align-items: flex-start;
    }

    .blogpost-footer__category[b-i2d3x9z8qj] {
        margin-left: 0;
    }
}
/* /Components/Pages/BlogSidebar.razor.rz.scp.css */
/* ========================================
   BlogSidebar 右側欄
   - 標題用品牌藍綠色（呼應 atolldive / oceandiary 右側欄風格）
   - 分類 / 近期文章用清單
   - hover 與 active 狀態
   ======================================== */

.blog-sidebar[b-gjil4g9xl0] {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-sidebar__block[b-gjil4g9xl0] {
    /* 每個區塊,標題 + 內容 */
}

.blog-sidebar__title[b-gjil4g9xl0] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--reef, #069a9f);
    margin: 0 0 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--reef, #069a9f);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

/* ===== 分類清單 ===== */
.blog-sidebar__category-list[b-gjil4g9xl0] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar__category-list li[b-gjil4g9xl0] {
    margin: 0;
    border-bottom: 1px dashed rgba(9, 47, 54, 0.08);
}

.blog-sidebar__category-list li:last-child[b-gjil4g9xl0] {
    border-bottom: none;
}

.blog-sidebar__category-list a[b-gjil4g9xl0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.7rem 0.25rem;
    color: var(--ink, #173036);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.18s ease, padding-left 0.18s ease;
}

.blog-sidebar__category-list a:hover[b-gjil4g9xl0],
.blog-sidebar__category-list a:focus-visible[b-gjil4g9xl0] {
    color: var(--reef, #069a9f);
    padding-left: 0.5rem;
    outline: none;
}

.blog-sidebar__category-list a.is-active[b-gjil4g9xl0] {
    color: var(--reef, #069a9f);
    font-weight: 700;
}

.blog-sidebar__count[b-gjil4g9xl0] {
    color: var(--muted, #61777c);
    font-size: 0.85rem;
    font-weight: 400;
    flex-shrink: 0;
}

.blog-sidebar__category-list a:hover .blog-sidebar__count[b-gjil4g9xl0],
.blog-sidebar__category-list a.is-active .blog-sidebar__count[b-gjil4g9xl0] {
    color: var(--reef, #069a9f);
}

/* ===== 近期文章 ===== */
.blog-sidebar__recent-list[b-gjil4g9xl0] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar__recent-list li[b-gjil4g9xl0] {
    margin: 0;
    border-bottom: 1px dashed rgba(9, 47, 54, 0.08);
}

.blog-sidebar__recent-list li:last-child[b-gjil4g9xl0] {
    border-bottom: none;
}

.blog-sidebar__recent-list a[b-gjil4g9xl0] {
    display: block;
    padding: 0.7rem 0.25rem;
    color: var(--ink, #173036);
    font-size: 0.9rem;
    line-height: 1.55;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.18s ease, padding-left 0.18s ease;
    /* 標題太長時截斷,避免右側欄太擠 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-sidebar__recent-list a:hover[b-gjil4g9xl0],
.blog-sidebar__recent-list a:focus-visible[b-gjil4g9xl0] {
    color: var(--reef, #069a9f);
    padding-left: 0.5rem;
    outline: none;
}

.blog-sidebar__empty[b-gjil4g9xl0] {
    color: var(--muted, #61777c);
    font-size: 0.9rem;
    margin: 0;
    padding: 0.5rem 0;
}
/* /Components/Pages/ContactSection.razor.rz.scp.css */
/* ========================================
   ContactSection.razor 白底版樣式
   - 白底 section
   - 深色標題群(eyebrow 用品牌藍綠 / 大標深色 / 副標灰)
   - 卡片網格 2x2 置中(不撐滿寬度),手機 1 列
   ======================================== */

.contact-section[b-ntbgnqwcsw] {
    padding: 4.5rem 0 6rem;
    background-color: #ffffff;
    font-family: 'Chiron Hei HK WS', 'Noto Sans TC', sans-serif;
    color: var(--ink, #173036);
}

.contact-section .container[b-ntbgnqwcsw] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    text-align: center;
}

/* 標題群 */
.contact-eyebrow[b-ntbgnqwcsw] {
    display: inline-block;
    color: var(--brand-bluegreen, #3a6a75);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 0.85rem;
}

.contact-title[b-ntbgnqwcsw] {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--ink, #173036);
    letter-spacing: 0.06em;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.contact-subtitle[b-ntbgnqwcsw] {
    color: #6a7a8a;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 auto 2.75rem;
    max-width: 720px;
    letter-spacing: 0.04em;
}

/* 卡片網格：2x2 置中(不撐滿 container) */
.contact-grid[b-ntbgnqwcsw] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    max-width: 760px;
    margin: 0 auto;
}

/* 手機:1 列,容器縮窄 */
@media (max-width: 480px) {
    .contact-section[b-ntbgnqwcsw] {
        padding: 3rem 0 3.5rem;
    }

    .contact-grid[b-ntbgnqwcsw] {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .contact-title[b-ntbgnqwcsw] {
        font-size: 1.5rem;
    }
}
/* /Components/Pages/MediaSection.razor.rz.scp.css */
/* CSS for MediaSection component */
.oceandiary-section[b-n2bmmduouq] {
    padding: 4rem 0 6rem;
    background-color: #fff;
    text-align: center;
    font-family: 'Chiron Hei HK WS', 'Noto Sans TC', sans-serif;
    color: var(--brand-bluegreen);
}

/* 媒體區：影片 + 吊繩 + 鯨魚 */
.oceandiary-media[b-n2bmmduouq] {
    position: relative;
    max-width: 100%;
    margin: 0 auto 3rem;
}

.oceandiary-video-wrap[b-n2bmmduouq] {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(58, 106, 117, 0.15);
    aspect-ratio: 16 / 9;
    background-color: #d8d2c1;
}

.oceandiary-video[b-n2bmmduouq] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #d8d2c1;
}

.oceandiary-string[b-n2bmmduouq] {
    display: block;
    width: 1px;
    height: 36px;
    background-color: #b1c3c8;
    margin: 0 auto;
}

.oceandiary-whale[b-n2bmmduouq] {
    width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

    .oceandiary-whale:hover[b-n2bmmduouq] {
        transform: translateY(-3px) rotate(-2deg);
    }

/* 文案 */
.oceandiary-copy[b-n2bmmduouq] {
    font-size: 1.05rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
    color: #5a6a70;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

    .oceandiary-copy p[b-n2bmmduouq] {
        margin: 0.4rem 0;
    }

.oceandiary-copy__cta[b-n2bmmduouq] {
    color: var(--brand-bluegreen);
    font-weight: 500;
    margin-top: 1.5rem !important;
    font-size: 1.1rem;
}

/* CTA 按鈕 */
.oceandiary-actions[b-n2bmmduouq] {
    margin-top: 1.5rem;
}

.btn-ocean[b-n2bmmduouq] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2.2rem;
    background-color: var(--brand-bluegreen);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(58, 106, 117, 0.2);
}

    .btn-ocean:hover[b-n2bmmduouq],
    .btn-ocean:focus-visible[b-n2bmmduouq] {
        background-color: #2c5560;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(58, 106, 117, 0.35);
        text-decoration: none;
        outline: none;
    }

    .btn-ocean i[b-n2bmmduouq] {
        transition: transform 0.3s ease;
    }

    .btn-ocean:hover i[b-n2bmmduouq] {
        transform: translateX(4px);
    }

/* 響應式 */
@media (max-width: 768px) {
    .oceandiary-section[b-n2bmmduouq] {
        padding: 2.5rem 0 3rem;
    }

    .oceandiary-media[b-n2bmmduouq] {
        max-width: 92vw;
    }

    .oceandiary-video-wrap[b-n2bmmduouq] {
        border-radius: 18px;
    }

    .oceandiary-whale[b-n2bmmduouq] {
        width: 80px;
    }

    .oceandiary-copy[b-n2bmmduouq] {
        font-size: 0.95rem;
        line-height: 2;
    }

    .oceandiary-copy__cta[b-n2bmmduouq] {
        font-size: 1rem;
    }

    .btn-ocean[b-n2bmmduouq] {
        padding: 0.7rem 1.6rem;
        font-size: 0.95rem;
    }
}
/* /Components/Pages/RoomsSection.razor.rz.scp.css */
/* ========================================
   RoomsSection.razor 新設計樣式
   - 2 列 grid(左輪播 / 右文字+特性+CTA)
   - 自寫輪播：左右箭頭、底部圓點、底部 caption overlay
   ======================================== */

/* ===== Section 外殼 ===== */
.rooms-section[b-0nct59u0if] {
    padding: 4rem 0 6rem;
    background-color: #fff;
    font-family: 'Chiron Hei HK WS', 'Noto Sans TC', sans-serif;
    color: var(--brand-bluegreen);
}

/* 注意:.container 樣式由 Bootstrap 提供(自帶 max-width 響應式斷點
   540 / 720 / 960 / 1140 / 1320),不覆寫,確保與上面 ActivitiesSection 同寬。*/

/* ===== 2 列主體 ===== */
.rooms-grid[b-0nct59u0if] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .rooms-grid[b-0nct59u0if] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* =================================================
   左：輪播
   ================================================= */
.rooms-slider[b-0nct59u0if] {
    position: relative;
}

.rooms-slider__viewport[b-0nct59u0if] {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background-color: #eaeaea;
}

.rooms-slider__slide[b-0nct59u0if] {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.rooms-slider__slide.is-active[b-0nct59u0if] {
    opacity: 1;
    pointer-events: auto;
}

.rooms-slider__slide img[b-0nct59u0if] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 左右切換箭頭 */
.rooms-slider__nav[b-0nct59u0if] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #2c5a7c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.rooms-slider__nav:hover[b-0nct59u0if] {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.rooms-slider__nav--prev[b-0nct59u0if] {
    left: 0.75rem;
}

.rooms-slider__nav--next[b-0nct59u0if] {
    right: 0.75rem;
}

/* 底部 caption overlay */
.rooms-slider__caption[b-0nct59u0if] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1.5rem 1rem;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.rooms-slider__caption h3[b-0nct59u0if] {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.15rem;
    letter-spacing: 0.04em;
}

.rooms-slider__caption p[b-0nct59u0if] {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

/* 底部圓點指示器 */
.rooms-slider__dots[b-0nct59u0if] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0 0;
}

.rooms-slider__dot[b-0nct59u0if] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c5d2da;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rooms-slider__dot:hover[b-0nct59u0if] {
    background: #93a8b3;
}

.rooms-slider__dot.is-active[b-0nct59u0if] {
    background: var(--brand-bluegreen);
    transform: scale(1.25);
}

/* =================================================
   右：文字 / 特性 / CTA
   ================================================= */
.rooms-info__eyebrow[b-0nct59u0if] {
    display: inline-block;
    color: var(--brand-bluegreen);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 0.75rem;
}

.rooms-info__title[b-0nct59u0if] {
    color: #1a3a4a;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 1rem;
    letter-spacing: 0.04em;
}

.rooms-info__desc[b-0nct59u0if] {
    color: #4a5a6a;
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0 0 1.5rem;
    letter-spacing: 0.02em;
}

/* 特性 2x2 grid */
.rooms-features[b-0nct59u0if] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .rooms-features[b-0nct59u0if] {
        grid-template-columns: 1fr;
    }
}

.rooms-feature[b-0nct59u0if] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #eef3f5;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    transition: background 0.2s ease;
}

.rooms-feature:hover[b-0nct59u0if] {
    background: #e3ecef;
}

.rooms-feature__icon[b-0nct59u0if] {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--brand-bluegreen);
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(58, 106, 117, 0.12);
}

.rooms-feature__title[b-0nct59u0if] {
    color: #1a3a4a;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    letter-spacing: 0.04em;
}

.rooms-feature__desc[b-0nct59u0if] {
    color: #6a7a8a;
    font-size: 0.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* CTA 按鈕列 */
.rooms-cta[b-0nct59u0if] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.rooms-cta__primary[b-0nct59u0if],
.rooms-cta__secondary[b-0nct59u0if] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.rooms-cta__primary[b-0nct59u0if] {
    background: #e8634b;
    color: #fff;
    border: 1.5px solid #e8634b;
}

.rooms-cta__primary:hover[b-0nct59u0if],
.rooms-cta__primary:focus-visible[b-0nct59u0if] {
    background: #d8553e;
    border-color: #d8553e;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.rooms-cta__secondary[b-0nct59u0if] {
    background: #fff;
    color: #2c5a7c;
    border: 1.5px solid #c5d2da;
}

.rooms-cta__secondary:hover[b-0nct59u0if],
.rooms-cta__secondary:focus-visible[b-0nct59u0if] {
    border-color: var(--brand-bluegreen);
    color: var(--brand-bluegreen);
    text-decoration: none;
    transform: translateY(-1px);
}

/* ===== 響應式 ===== */
@media (max-width: 768px) {
    .rooms-section[b-0nct59u0if] {
        padding: 2.5rem 0 3rem;
    }

    .rooms-info__title[b-0nct59u0if] {
        font-size: 1.4rem;
    }
}
/* /Components/Pages/SocialCard.razor.rz.scp.css */
/* ========================================
   SocialCard.razor 白底版樣式
   - 白底卡片 + 淺灰圖案邊框
   - 深色文字（平台名深 / handle 灰）
   - 圖示仍維持品牌色方塊（沿用 DB IconBgColor）
   ======================================== */

.social-card[b-1rqrnc00ea] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: #ffffff;
    border: 1px solid #d6e0e5;
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink, #173036);
    box-shadow: 0 1px 3px rgba(9, 47, 54, 0.04);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .social-card:hover[b-1rqrnc00ea],
    .social-card:focus-visible[b-1rqrnc00ea] {
        border-color: var(--brand-bluegreen, #3a6a75);
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(58, 106, 117, 0.12);
        text-decoration: none;
        color: var(--ink, #173036);
    }

    .social-card:focus-visible[b-1rqrnc00ea] {
        outline: 3px solid rgba(58, 106, 117, 0.4);
        outline-offset: 3px;
    }

/* 左側品牌色 icon 方塊(維持原樣,沿用 DB IconBgColor / IconColor) */
.social-card__icon[b-1rqrnc00ea] {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    line-height: 1;
    color: #fff;
}

/* 中間文字 */
.social-card__body[b-1rqrnc00ea] {
    flex: 1 1 auto;
    min-width: 0;
}

.social-card__platform[b-1rqrnc00ea] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink, #173036);
    margin: 0 0 0.2rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.social-card__handle[b-1rqrnc00ea] {
    font-size: 0.85rem;
    color: #6a7a8a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* 右側箭頭 */
.social-card__arrow[b-1rqrnc00ea] {
    color: #93a8b3;
    font-size: 1.05rem;
    flex: 0 0 auto;
    transition: color 0.25s ease, transform 0.25s ease;
}

.social-card:hover .social-card__arrow[b-1rqrnc00ea] {
    color: var(--brand-bluegreen, #3a6a75);
    transform: translateX(4px);
}

/* ===== 響應式 ===== */
@media (max-width: 480px) {
    .social-card[b-1rqrnc00ea] {
        padding: 1rem 1.15rem;
    }

    .social-card__icon[b-1rqrnc00ea] {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 1.35rem;
    }
}
