/* ============================================================
   ESG 永續網站設計系統
   視覺移植自 ateam(ivf) 佈景，已轉換：BS5→BS4、FA7→FA5、
   theme.json 變數→:root（hospital 沒有 theme.json）
   ============================================================ */

:root {
    --wp--preset--color--at-primary: #41956A;
    --wp--preset--color--at-primary-2: #F3F7F9;
    --wp--preset--color--at-black: #373737;
    --wp--custom--color--at-background-grey: #f3f3f3;
    --wp--custom--color--at-grey: #cccccc;
    --wp--custom--color--at-text-white: #ffffff;
    --wp--custom--color--at-error-red: #eb6c67c3;
    --wp--custom--border-radius--img-radius: 25px;
    --wp--custom--border-radius--btn-radius: 15px;
    /* 章節導覽膠囊壓在 banner 邊界正中央，值為膠囊高度的一半 */
    --at-esg-nav-overlap: -32px;
}

/* ============================================================
   基礎
   ============================================================ */

html {
    scroll-behavior: smooth;
}

.at-esg-body {
    font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "微軟正黑體", "Heiti TC", sans-serif;
    letter-spacing: 0.05rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    color: var(--wp--preset--color--at-black);
    background: #FFF;
}

/* theme.json 的 styles.elements.link 移植，少了它連結會變 BS4 預設藍 */
.at-esg-body a {
    color: var(--wp--preset--color--at-primary);
    text-decoration: none;
}

.at-esg-body a:hover {
    text-decoration: none;
    color: var(--wp--preset--color--at-primary);
}

.at-esg-body img {
    max-width: 100%;
    height: auto;
}

/* GSAP 動畫元素初始隱藏，防止載入時閃現 */
.at-left,
.at-right,
.at-up,
.at-down,
.at-fade-in {
    opacity: 0;
}

/* BS4 沒有 gutter/gap API，自己補 */
.at-esg-g-4>[class*="col-"] {
    padding: 0 12px;
    margin-bottom: 24px;
}

.at-esg-gap-3 {
    gap: 1rem;
}

/* ============================================================
   Header
   ============================================================ */

.at-esg-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 100;
    background: #FFF;
}

.at-esg-header-container {
    max-width: 1400px;
}

.at-esg-top-bar {
    background: var(--wp--preset--color--at-primary);
}

.at-esg-top-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.at-esg-top-menu a {
    color: #FFF;
    font-size: 0.875rem;
}

.at-esg-top-menu a:hover {
    color: #FFF;
    text-decoration: underline;
}

.at-esg-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 16px;
}

.at-esg-logo-area {
    flex: 0 0 auto;
    max-width: 260px;
}

.at-esg-logo-area a {
    display: flex;
    flex-direction: column;
    color: var(--wp--preset--color--at-black);
}

.at-esg-logo-title {
    font-size: 1.375rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
}

.at-esg-logo-sub {
    font-size: 0.9375rem;
    color: var(--wp--preset--color--at-primary);
    font-weight: bold;
    letter-spacing: 0.2rem;
}

/* 桌機主選單，dropdown 用純 CSS hover，不吃 BS4 JS 也就不需要 Popper */
.at-esg-nav-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
}

.at-esg-nav-item {
    position: relative;
}

.at-esg-nav-item {
    display: flex;
}

.at-esg-nav-item>a {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 16px 9px;
    color: var(--wp--preset--color--at-black);
    font-weight: bold;
    position: relative;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: break-word;
}

.at-esg-nav-item>a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 8px;
    height: 2px;
    background: var(--wp--preset--color--at-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.at-esg-nav-item:hover>a::after,
.at-esg-nav-item>a:focus::after {
    transform: scaleX(1);
    transform-origin: left;
}

.at-esg-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #FFF;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 101;
}

.at-esg-nav-item:hover .at-esg-dropdown,
.at-esg-nav-item:focus-within .at-esg-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.at-esg-dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--wp--preset--color--at-black);
    font-size: 0.9375rem;
    white-space: normal;
}

.at-esg-dropdown a:hover {
    background: var(--wp--preset--color--at-primary-2);
    color: var(--wp--preset--color--at-primary);
}

/* 手機選單 */
.at-esg-menu-toggler {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--wp--preset--color--at-primary);
    padding: 8px 12px;
}

.at-esg-mobile-menu {
    border-top: 1px solid var(--wp--custom--color--at-grey);
    background: #FFF;
}

.at-esg-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 8px 20px 20px;
}

.at-esg-mobile-nav-list>li {
    border-bottom: 1px solid var(--wp--custom--color--at-background-grey);
}

.at-esg-mobile-nav-list a {
    display: block;
    padding: 12px 8px;
    color: var(--wp--preset--color--at-black);
    font-weight: bold;
}

.at-esg-mobile-nav-list ul {
    list-style: none;
    padding-left: 16px;
    margin: 0;
}

.at-esg-mobile-nav-list ul a {
    font-weight: normal;
    font-size: 0.9375rem;
    color: var(--wp--preset--color--at-primary);
}

/* ============================================================
   麵包屑（hospital style.css 不載入，必須自己有一份）
   ============================================================ */

.at-bread-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 16px 0;
    margin: 0;
    font-size: 0.9375rem;
}

.at-bread-crumb li {
    display: flex;
    align-items: center;
}

.at-bread-crumb li:not(:first-child)::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 10px;
    color: var(--wp--custom--color--at-grey);
}

.at-bread-crumb a {
    color: var(--wp--preset--color--at-black);
}

.at-bread-crumb a:hover {
    color: var(--wp--preset--color--at-primary);
}

.at-bread-crumb span {
    color: var(--wp--preset--color--at-primary);
    font-weight: bold;
}

/* ============================================================
   頁面 banner 與標題
   ============================================================ */

/* 底圖由樣板依章節帶入 inline background-image，各單元分開 */
.at-esg-page-banner {
    position: relative;
    background-color: var(--wp--preset--color--at-primary);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0 100px;
    color: #FFF;
}

/* 左濃右淡的綠色罩，讓標題不論換哪張圖都讀得到 */
.at-esg-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 79, 56, 0.82) 0%, rgba(30, 79, 56, 0.45) 45%, rgba(30, 79, 56, 0.12) 100%);
    pointer-events: none;
}

.at-esg-page-banner .container {
    position: relative;
    z-index: 1;
}

.at-esg-page-banner h2 {
    font-weight: 900;
    letter-spacing: 0.2rem;
    margin: 0;
    font-size: 2rem;
}

.at-esg-main-area {
    padding-bottom: 60px;
}

/* ============================================================
   章節子頁導覽（自 ateam .at-child-nav-area 移植）
   ============================================================ */

.at-child-nav-area {
    margin-top: var(--at-esg-nav-overlap);
    margin-bottom: 32px;
    position: relative;
}

.at-child-nav-area-wrapper {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #FFF;
    padding: 0 64px;
    border-radius: 64px;
    position: relative;
}

.at-child-nav-list-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: padding-left 0.8s ease;
}

.at-child-nav-list-area li {
    flex: 0 0 auto;
}

.at-child-nav-list-area::-webkit-scrollbar {
    display: none;
}

.at-child-nav-list a {
    display: block;
    text-align: center;
    padding: 20px 25px;
    color: var(--wp--preset--color--at-black);
    font-weight: bold;
    position: relative;
    overflow: visible;
    white-space: nowrap;
}

.at-child-nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--wp--preset--color--at-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.at-child-nav-list a:hover::after,
.at-child-nav-list a.at-current-page::after {
    transform: scaleX(1);
    transform-origin: left;
}

.at-nav-scroll-left,
.at-nav-scroll-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--wp--custom--color--at-background-grey);
    cursor: pointer;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease, color 0.3s ease;
    color: var(--wp--preset--color--at-black);
}

.at-nav-scroll-left.is-disabled,
.at-nav-scroll-right.is-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.at-nav-scroll-left:hover,
.at-nav-scroll-right:hover {
    background: var(--wp--preset--color--at-primary);
    color: #FFF;
}

.at-nav-scroll-left {
    left: 25px;
}

.at-nav-scroll-right {
    right: 25px;
}

/* 手機版子頁導覽 */
.at-mobile-sub-nav-list-wrapper {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #FFF;
}

.at-mobile-sub-nav-toggle {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #FFF;
    border: none;
    font-weight: bold;
    color: var(--wp--preset--color--at-black);
    position: relative;
    text-align: center;
}

.at-mobile-sub-nav-toggle::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    color: var(--wp--preset--color--at-primary);
}

/* 手機版膠囊較矮，重算置中的位移量 */
@media (max-width: 991px) {
    :root {
        --at-esg-nav-overlap: -26px;
    }
}

.at-child-nav-list-area-mobile {
    list-style: none;
    padding: 0 20px 14px;
    margin: 0;
}

.at-child-nav-list-area-mobile .at-child-nav-list a {
    padding: 10px 0;
    white-space: normal;
    text-align: left;
}

/* ============================================================
   章節內頁目錄（自 ateam .at-post-child-list 移植）
   ============================================================ */

.at-post-child-list-area {
    padding: 30px 0;
}

.at-post-child-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--wp--custom--color--at-background-grey);
    padding: 10px 15px;
    border-radius: 10px;
    list-style: none;
    margin: 0;
}

.at-post-child-list li {
    list-style: none;
}

.at-post-child-list li:not(:last-child) {
    border-bottom: 1px solid var(--wp--custom--color--at-grey);
}

.at-post-child-list li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 30px;
    border: none;
    transition: all 0.3s ease;
    color: var(--wp--preset--color--at-black);
    position: relative;
    font-size: 1.0625rem;
    font-weight: bold;
}

.at-post-child-list li a:hover {
    color: var(--wp--preset--color--at-primary);
}

/* 向下箭頭，hover 時往下滑出再從上方滑入 */
.at-post-child-list li a::before {
    content: "\f063";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--wp--preset--color--at-primary);
    position: absolute;
    left: 12px;
    font-size: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
}

.at-post-child-list li a:hover::before {
    animation: atEsgSlideDownFromTop 0.6s ease;
}

@keyframes atEsgSlideDownFromTop {
    0% {
        transform: translateY(-50%);
        opacity: 1;
    }

    40% {
        transform: translateY(80%);
        opacity: 0;
    }

    41% {
        transform: translateY(-120%);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%);
        opacity: 1;
    }
}

/* ============================================================
   內文區
   ============================================================ */

.at-esg-page-main-content {
    padding: 20px 0 40px;
    line-height: 1.9;
}

.at-esg-page-main-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--wp--preset--color--at-primary);
    letter-spacing: 0.15rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--wp--preset--color--at-primary);
}

.at-esg-page-main-content h3 {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--wp--preset--color--at-black);
    margin: 32px 0 16px;
    padding-left: 14px;
    border-left: 5px solid var(--wp--preset--color--at-primary);
}

.at-esg-page-main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.at-esg-page-main-content table th {
    background: var(--wp--preset--color--at-primary);
    color: #FFF;
    padding: 12px 16px;
    border: 1px solid var(--wp--custom--color--at-grey);
}

.at-esg-page-main-content table td {
    padding: 12px 16px;
    border: 1px solid var(--wp--custom--color--at-grey);
}

.at-esg-page-main-content table tr:nth-child(even) {
    background: var(--wp--preset--color--at-primary-2);
}

.at-esg-page-main-content img {
    border-radius: var(--wp--custom--border-radius--img-radius);
}

/* 更新資訊區 */
.at-update-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 16px 0;
    margin-top: 32px;
    border-top: 1px solid var(--wp--custom--color--at-grey);
    font-size: 0.875rem;
    color: #666;
}

/* ============================================================
   新聞列表（自 ateam .at-news-list 移植）
   ============================================================ */

.at-news-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.at-news-list li {
    list-style: none;
    border-bottom: 1px solid var(--wp--custom--color--at-grey);
}

.at-news-list-item a {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    padding: 15px 40px 15px 0;
    position: relative;
    transition: all 0.3s ease;
}

.at-news-list-item a::after {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--wp--preset--color--at-black);
    position: absolute;
    right: 15px;
    transition: all 0.3s ease;
}

.at-news-list-item-date {
    color: var(--wp--preset--color--at-black);
    font-size: 0.9375rem;
    white-space: nowrap;
}

.at-news-list-item-title {
    font-size: 1.0625rem;
    color: var(--wp--preset--color--at-black);
    margin: 0;
    font-weight: normal;
}

.at-news-list-item a:hover {
    background: var(--wp--preset--color--at-primary-2);
    padding-left: 15px;
}

.at-news-list-item a:hover .at-news-list-item-title,
.at-news-list-item a:hover .at-news-list-item-date,
.at-news-list-item a:hover::after {
    color: var(--wp--preset--color--at-primary);
}

@media (max-width: 800px) {
    .at-news-list-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .at-news-list-item a::after {
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* ============================================================
   分頁
   ============================================================ */

.at-pagination-wrapper {
    text-align: center;
    margin: 40px 0 20px;
}

.at-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding-left: 0;
    margin: 0 0 16px;
    flex-wrap: wrap;
}

.at-pagination li a,
.at-pagination li span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid var(--wp--custom--color--at-grey);
    border-radius: 5px;
    color: var(--wp--preset--color--at-black);
    transition: all 0.3s ease;
}

.at-pagination li a:hover,
.at-pagination li span.current {
    background: var(--wp--preset--color--at-primary);
    border-color: var(--wp--preset--color--at-primary);
    color: #FFF;
}

.at-page-pagi-big-area {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.at-page-pagi-area a {
    color: var(--wp--preset--color--at-black);
    font-size: 0.9375rem;
    padding: 6px 10px;
}

.at-page-pagi-area a:hover {
    color: var(--wp--preset--color--at-primary);
}

.at-page-total-posts {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 8px;
}

.at-page-total-posts span {
    color: var(--wp--preset--color--at-primary);
    font-weight: bold;
    padding: 0 4px;
}

/* 分類膠囊列 */
.at-esg-cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding-left: 0;
    margin: 0 0 24px;
}

.at-esg-cat-filter a {
    display: block;
    padding: 6px 18px;
    border: 1px solid var(--wp--preset--color--at-primary);
    border-radius: 20px;
    color: var(--wp--preset--color--at-primary);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.at-esg-cat-filter a:hover,
.at-esg-cat-filter a.at-current-cat {
    background: var(--wp--preset--color--at-primary);
    color: #FFF;
}

/* 每頁筆數表單 */
.at-pagi-fom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: #666;
}

.at-pagi-fom .custom-select {
    width: auto;
}

.at-esg-no-post {
    padding: 40px 0;
    text-align: center;
    color: #666;
}

.at-esg-news-meta {
    margin-top: 0;
    border-top: none;
    border-bottom: 1px solid var(--wp--custom--color--at-grey);
    margin-bottom: 24px;
}

/* ============================================================
   章節卡片（ESG 首頁）
   ============================================================ */

.at-esg-chapter-cards {
    padding: 40px 0;
}

.at-esg-chapter-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFF;
    border: 1px solid var(--wp--custom--color--at-grey);
    border-radius: var(--wp--custom--border-radius--btn-radius);
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.at-esg-chapter-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--wp--preset--color--at-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.at-esg-chapter-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.at-esg-chapter-card:hover::before {
    transform: scaleX(1);
}

.at-esg-chapter-card-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--wp--preset--color--at-black);
    margin-bottom: 16px;
}

.at-esg-chapter-card-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    flex-grow: 1;
}

.at-esg-chapter-card-list a {
    display: block;
    padding: 6px 0 6px 18px;
    color: var(--wp--preset--color--at-black);
    font-size: 0.9375rem;
    position: relative;
}

.at-esg-chapter-card-list a::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--wp--preset--color--at-primary);
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

.at-esg-chapter-card-list a:hover {
    color: var(--wp--preset--color--at-primary);
}

/* ============================================================
   ESG 首頁
   ============================================================ */

.at-esg-home-hero {
    background: linear-gradient(135deg, var(--wp--preset--color--at-primary-2) 0%, #e4efe9 100%);
    padding: 70px 0;
}

.at-esg-home-hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--wp--preset--color--at-primary);
    letter-spacing: 0.3rem;
    margin-bottom: 20px;
}

.at-esg-home-hero-text {
    font-size: 1.0625rem;
    line-height: 2;
    margin-bottom: 28px;
}

.at-esg-home-download a {
    display: inline-block;
    background: var(--wp--preset--color--at-primary);
    color: #FFF;
    padding: 14px 36px;
    border-radius: var(--wp--custom--border-radius--btn-radius);
    font-weight: bold;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(65, 149, 106, 0.35);
}

.at-esg-home-download a:hover {
    background: #2d6b4c;
    color: #FFF;
    transform: translateY(-2px);
}

.at-esg-home-report-img img {
    border-radius: var(--wp--custom--border-radius--img-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.at-esg-home-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--wp--preset--color--at-black);
    letter-spacing: 0.3rem;
    margin: 56px 0 32px;
    position: relative;
    padding-bottom: 14px;
}

.at-esg-home-section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: var(--wp--preset--color--at-primary);
}

/* E/S/G 績效卡 */
.at-esg-home-shine {
    background: var(--wp--custom--color--at-background-grey);
    padding: 10px 0 50px;
    margin-top: -1px;
}

.at-esg-metric-card {
    height: 100%;
    background: #FFF;
    border-radius: var(--wp--custom--border-radius--btn-radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.at-esg-metric-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.at-esg-metric-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    color: #FFF;
}

.at-esg-metric-e .at-esg-metric-head {
    background: var(--wp--preset--color--at-primary);
}

.at-esg-metric-s .at-esg-metric-head {
    background: #3d7ea6;
}

.at-esg-metric-g .at-esg-metric-head {
    background: #b98a2f;
}

.at-esg-metric-letter {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.at-esg-metric-name {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
}

.at-esg-metric-body {
    padding: 24px;
    text-align: center;
}

.at-esg-metric-label {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #666;
}

.at-esg-metric-number {
    font-size: 1.375rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.at-esg-metric-number .at-esg-statistics-num {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--wp--preset--color--at-primary);
    padding: 0 4px;
}

.at-esg-metric-s .at-esg-metric-number .at-esg-statistics-num {
    color: #3d7ea6;
}

.at-esg-metric-g .at-esg-metric-number .at-esg-statistics-num {
    color: #b98a2f;
}

.at-esg-metric-note {
    font-size: 0.9375rem;
    color: #666;
    margin: 0;
}

.at-esg-metric-note .at-esg-statistics-num {
    font-weight: bold;
    color: var(--wp--preset--color--at-black);
}

/* 院長的話 */
.at-esg-director {
    padding: 56px 0 20px;
}

.at-esg-director-img {
    border-radius: var(--wp--custom--border-radius--img-radius);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    max-width: 340px;
}

.at-esg-director-title-area {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.at-esg-director-hr {
    flex-grow: 1;
    border: none;
    border-top: 3px solid var(--wp--preset--color--at-primary);
    margin: 0;
    position: relative;
}

.at-esg-director-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--wp--preset--color--at-primary);
    letter-spacing: 0.3rem;
    white-space: nowrap;
}

.at-esg-director-content {
    line-height: 2;
    font-size: 1.0625rem;
}

.at-esg-director-content p {
    margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
    .at-esg-director {
        padding: 36px 0 10px;
    }

    .at-esg-director-img {
        margin-bottom: 24px;
    }

    .at-esg-director-title {
        font-size: 1.375rem;
    }
}

/* 首頁最新消息 */
.at-esg-home-news {
    padding-bottom: 20px;
}

.at-esg-home-more {
    text-align: center;
    margin-top: 24px;
}

.at-esg-home-more a {
    display: inline-block;
    padding: 10px 32px;
    border: 1px solid var(--wp--preset--color--at-primary);
    border-radius: 24px;
    color: var(--wp--preset--color--at-primary);
    font-weight: bold;
    transition: all 0.3s ease;
}

.at-esg-home-more a:hover {
    background: var(--wp--preset--color--at-primary);
    color: #FFF;
}

@media (max-width: 991px) {
    .at-esg-home-hero {
        padding: 44px 0;
    }

    .at-esg-home-hero-title {
        font-size: 1.625rem;
    }

    .at-esg-home-report-img {
        margin-top: 24px;
    }

    .at-esg-home-section-title {
        font-size: 1.375rem;
        margin: 40px 0 24px;
    }
}

/* ============================================================
   Footer
   ============================================================ */

.at-esg-footer {
    background: var(--wp--preset--color--at-black);
    color: #FFF;
    margin-top: 60px;
}

.at-esg-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 32px 0;
}

.at-esg-footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.at-esg-footer-title {
    font-weight: 900;
    font-size: 1.0625rem;
    margin-bottom: 6px;
    letter-spacing: 0.1rem;
}

.at-esg-footer-item {
    font-size: 0.875rem;
    color: #ddd;
}

.at-esg-footer-item i {
    margin-right: 6px;
    color: var(--wp--preset--color--at-primary);
}

.at-esg-footer-copy p {
    margin: 0;
    font-size: 0.8125rem;
    color: #aaa;
}

/* ============================================================
   回頂按鈕
   ============================================================ */

.at-go-top-area {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.at-go-top-area.is-visible {
    opacity: 1;
    visibility: visible;
}

.at-go-top-button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--wp--preset--color--at-primary);
    color: #FFF;
    font-size: 1.125rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.at-go-top-button:hover {
    background: #2d6b4c;
}

/* ============================================================
   響應式（主斷點 991px，沿用 ateam 慣例）
   ============================================================ */

@media (max-width: 991px) {
    .at-esg-logo-title {
        font-size: 1.125rem;
    }

    .at-esg-logo-sub {
        font-size: 0.8125rem;
    }

    .at-esg-page-banner {
        padding: 40px 0 70px;
    }

    .at-esg-page-banner h2 {
        font-size: 1.5rem;
    }

    .at-esg-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   編輯器內容的圖片對齊
   hospital 的規則在 style.css 且限定 p 底下，ESG 不載入那支要自己有
   ============================================================ */

.at-esg-page-main-content img,
.at-esg-director-content img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {

    .at-esg-page-main-content .alignleft,
    .at-esg-director-content .alignleft {
        float: left;
        max-width: 360px;
        margin: 6px 28px 20px 0;
    }

    .at-esg-page-main-content .alignright,
    .at-esg-director-content .alignright {
        float: right;
        max-width: 360px;
        margin: 6px 0 20px 28px;
    }
}

/* 手機不浮動，改置中獨佔一行 */
@media (max-width: 767px) {

    .at-esg-page-main-content .alignleft,
    .at-esg-page-main-content .alignright,
    .at-esg-page-main-content .alignnone,
    .at-esg-director-content .alignleft,
    .at-esg-director-content .alignright,
    .at-esg-director-content .alignnone {
        display: block;
        float: none;
        margin: 0 auto 20px auto;
    }
}

.at-esg-page-main-content .aligncenter,
.at-esg-director-content .aligncenter {
    display: block;
    margin: 20px auto;
}

/* 清除浮動，避免高圖片撐出容器壓到下一區塊 */
.at-esg-page-main-content::after,
.at-esg-director-content::after {
    content: "";
    display: table;
    clear: both;
}

/* ============================================================
   相簿 [gallery]
   at_gallery_line() 輸出 .at-album，樣式在 style.css，ESG 要自己有一份
   ============================================================ */

.at-album .row {
    align-items: flex-start;
}

.at-album .col-6 {
    display: flex;
    padding: 2px;
}

.at-album-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
}

.at-album-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.at-album-item img {
    display: block;
    width: 100%;
    height: auto;
}

.at-album-item span {
    display: block;
    margin-top: 8px;
    line-height: 1.6;
}

/* ============================================================
   離開本站警告視窗
   all.js 攔截外部連結後會 show 這兩個元素，樣式在主 style.css
   而 ESG 不載入那支，所以要自己有一份
   ============================================================ */

.at-go-external-notice {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    padding: 28px 32px;
    border-radius: var(--wp--custom--border-radius--btn-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    text-align: center;
    max-width: 90vw;
}

.at-go-external-notice p {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.0625rem;
}

.at-go-external-notice button {
    background: var(--wp--preset--color--at-primary);
    color: #FFF;
    padding: 8px 18px;
    margin: 4px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.at-go-external-notice button:hover {
    background: #2d6b4c;
}

.at-go-external-notice #cancel {
    background: #888;
}

.at-go-external-notice #cancel:hover {
    background: #666;
}

#modalOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* ============================================================
   英文版 header 微調
   英文標題比中文長很多，字級縮小並限制單項寬度讓它折成兩行
   ============================================================ */

html[lang="en"] .at-esg-logo-area {
    max-width: 220px;
}

html[lang="en"] .at-esg-logo-title {
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.02rem;
}

html[lang="en"] .at-esg-logo-sub {
    font-size: 0.8125rem;
    letter-spacing: 0.08rem;
}

html[lang="en"] .at-esg-nav-item>a {
    font-size: 0.8125rem;
    padding: 12px 8px;
    width: 132px;
    letter-spacing: 0;
    hyphens: none;
}

html[lang="en"] .at-esg-nav-item>a::after {
    left: 10px;
    right: 10px;
    bottom: 6px;
}

/* 最後兩個章節的下拉改向左展開，不然會撐出視窗產生橫向捲動 */
.at-esg-nav-item:nth-last-child(-n+2) .at-esg-dropdown {
    left: auto;
    right: 0;
}

/* ============================================================
   首頁改版（hunet 版型）
   ============================================================ */

/* hero 輪播 */
.at-esg-hm-hero {
    position: relative;
    /* 疊在綠色三角形之上，把三角形右半邊蓋掉 */
    z-index: 5;
    overflow: hidden;
    /* 左側留白＝綠色三角形露出來的寬度 */
    padding-left: 66px;
    /* 不填底色，左側留白才透得出下面的綠色三角形 */
    background: transparent;
}

/* 斷點要跟綠色三角形一致(991)，否則 768～991 之間留白後面沒東西，會出現一條白帶 */
@media (max-width: 991px) {
    .at-esg-hm-hero {
        padding-left: 0;
    }
}

.at-esg-hm-hero-slides {
    position: relative;
    width: 100%;
    height: 560px;
    /* 左上切圓角，跟左側綠色三角形收邊 */
    border-radius: 24px 0 0 0;
    overflow: hidden;
}

.at-esg-hm-hero-slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.at-esg-hm-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.at-esg-hm-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 桌機與手機圖檔切換 */
.at-esg-hm-hero-img-sp {
    display: none !important;
}

@media (max-width: 767px) {
    .at-esg-hm-hero-img-pc {
        display: none !important;
    }

    .at-esg-hm-hero-img-sp {
        display: block !important;
    }

    .at-esg-hm-hero-slides {
        height: 480px;
    }
}

.at-esg-hm-hero-text {
    position: absolute;
    right: 6%;
    bottom: 56px;
    color: #FFF;
    text-align: right;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    z-index: 2;
    pointer-events: none;
}

.at-esg-hm-hero-en {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    line-height: 1.1;
    margin: 0 0 6px;
    border-bottom: 3px solid #FFF;
    padding-bottom: 10px;
}

.at-esg-hm-hero-sub {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.35rem;
    margin: 0;
}

.at-esg-hm-hero-nav {
    position: absolute;
    right: 6%;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.at-esg-hm-hero-prev,
.at-esg-hm-hero-next {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--wp--preset--color--at-black);
    transition: all 0.3s ease;
}

.at-esg-hm-hero-prev:hover,
.at-esg-hm-hero-next:hover {
    background: var(--wp--preset--color--at-primary);
    color: #FFF;
}

.at-esg-hm-hero-dots {
    display: flex;
    gap: 8px;
}

.at-esg-hm-hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    transition: all 0.3s ease;
}

.at-esg-hm-hero-dots button.is-active {
    background: var(--wp--preset--color--at-primary);
    transform: scale(1.25);
}

@media (max-width: 767px) {
    .at-esg-hm-hero-en {
        font-size: 2.25rem;
    }

    .at-esg-hm-hero-sub {
        font-size: 1rem;
        letter-spacing: 0.2rem;
    }

    .at-esg-hm-hero-text {
        right: 5%;
        bottom: 48px;
    }
}

/* 最新消息 TOPICS 帶 */
.at-esg-hm-topics {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #FFF;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    padding: 26px 32px;
    margin-top: 36px;
}

.at-esg-hm-topics-head {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 28px;
    border-right: 1px solid var(--wp--custom--color--at-grey);
}

.at-esg-hm-topics-title {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.15rem;
}

.at-esg-hm-topics-en {
    color: var(--wp--preset--color--at-primary);
    font-size: 0.8125rem;
    font-weight: bold;
    letter-spacing: 0.15rem;
}

.at-esg-hm-topics-more {
    margin-top: 10px;
    font-size: 0.875rem;
    color: var(--wp--preset--color--at-black);
}

.at-esg-hm-topics-more:hover {
    color: var(--wp--preset--color--at-primary);
}

.at-esg-hm-topics-more i {
    margin-left: 4px;
    color: var(--wp--preset--color--at-primary);
}

.at-esg-hm-topics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.at-esg-hm-topics-list li:not(:last-child) {
    border-bottom: 1px dashed var(--wp--custom--color--at-grey);
}

.at-esg-hm-topics-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    color: var(--wp--preset--color--at-black);
    min-width: 0;
}

.at-esg-hm-topics-list a:hover .at-esg-hm-topics-item-title {
    color: var(--wp--preset--color--at-primary);
}

.at-esg-hm-topics-list time {
    flex: 0 0 auto;
    font-size: 0.9375rem;
    color: #666;
}

.at-esg-hm-badge {
    flex: 0 0 auto;
    font-size: 0.75rem;
    background: var(--wp--preset--color--at-primary);
    color: #FFF;
    border-radius: 12px;
    padding: 2px 12px;
    white-space: nowrap;
}

.at-esg-hm-badge-cat {
    background: #3d7ea6;
}

.at-esg-hm-topics-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

@media (max-width: 991px) {
    .at-esg-hm-topics {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .at-esg-hm-topics-head {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        border-right: none;
        border-bottom: 1px solid var(--wp--custom--color--at-grey);
        padding: 0 0 12px;
    }

    .at-esg-hm-topics-more {
        margin: 0 0 0 auto;
    }

    .at-esg-hm-topics-list a {
        flex-wrap: wrap;
        gap: 6px 10px;
    }

    .at-esg-hm-topics-item-title {
        flex-basis: 100%;
        white-space: normal;
    }
}

/* ABOUT US */
.at-esg-hm-about {
    padding: 72px 0 40px;
}

.at-esg-hm-heading {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    margin-bottom: 28px;
}

.at-esg-hm-heading span {
    color: var(--wp--preset--color--at-primary);
}

.at-esg-hm-heading small {
    display: block;
    font-size: 0.9375rem;
    color: var(--wp--preset--color--at-primary);
    font-weight: bold;
    letter-spacing: 0.2rem;
    margin-top: 6px;
}

.at-esg-hm-about-catch {
    font-size: 1.375rem;
    font-weight: 900;
    line-height: 2.1;
    margin-bottom: 20px;
}

.at-esg-hm-about-catch span {
    background: #FFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 4px 14px;
    display: inline-block;
    margin-bottom: 6px;
}

.at-esg-hm-about-catch em {
    font-style: normal;
    color: var(--wp--preset--color--at-primary);
}

.at-esg-hm-about-text {
    line-height: 2.1;
    margin-bottom: 28px;
}

.at-esg-hm-about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.at-esg-hm-about-buttons a {
    display: inline-block;
    border: 1px solid var(--wp--preset--color--at-black);
    border-radius: 28px;
    padding: 10px 28px;
    color: var(--wp--preset--color--at-black);
    font-weight: bold;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.at-esg-hm-about-buttons a:hover {
    background: var(--wp--preset--color--at-primary);
    border-color: var(--wp--preset--color--at-primary);
    color: #FFF;
}

.at-esg-hm-about-buttons a i {
    margin-left: 6px;
    color: var(--wp--preset--color--at-primary);
    transition: color 0.3s ease;
}

.at-esg-hm-about-buttons a:hover i {
    color: #FFF;
}

/* 圓形照片拼貼(單張合成圖) */
.at-esg-hm-about-circles {
    text-align: center;
}

.at-esg-hm-about-collage {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991px) {
    .at-esg-hm-about {
        padding: 48px 0 24px;
    }

    .at-esg-hm-heading {
        font-size: 1.75rem;
    }

    .at-esg-hm-about-catch {
        font-size: 1.0625rem;
    }

    .at-esg-hm-about-circles {
        margin-top: 28px;
    }

    .at-esg-hm-about-collage {
        max-width: 300px;
    }
}

/* OUR REPORT 帶狀 banner */
.at-esg-hm-report-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 96px 0;
    text-align: center;
    color: #FFF;
    margin-top: 36px;
}

.at-esg-hm-report-banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(45, 107, 76, 0.55);
}

.at-esg-hm-report-banner-text {
    position: relative;
    z-index: 1;
}

.at-esg-hm-report-en {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.35rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.at-esg-hm-report-sub {
    font-size: 1.0625rem;
    font-weight: bold;
    letter-spacing: 0.35rem;
    margin: 8px 0 0;
}

@media (max-width: 767px) {
    .at-esg-hm-report-banner {
        padding: 64px 0;
    }

    .at-esg-hm-report-en {
        font-size: 1.875rem;
    }
}

/* 章節卡片左右交錯 */
.at-esg-hm-chapters {
    background: var(--wp--preset--color--at-primary-2);
    padding: 64px 0 72px;
}

.at-esg-hm-chapter-row {
    display: flex;
    /* 圖與白卡等高 */
    align-items: stretch;
    /* 整列 88% 寬靠左貼邊，圖片切齊視窗左緣 */
    width: 88%;
    margin: 0 auto 56px 0;
}

.at-esg-hm-chapter-row:last-child {
    margin-bottom: 0;
}

.at-esg-hm-chapter-row.is-reverse {
    flex-direction: row-reverse;
    /* 交錯：整列改靠右貼邊，圖片切齊視窗右緣 */
    margin-left: auto;
    margin-right: 0;
}

.at-esg-hm-chapter-img {
    flex: 0 0 62%;
    max-width: 62%;
    /* 各列統一高度，不讓圖片各自的長寬比決定 */
    min-height: 420px;
    position: relative;
}

/* 絕對定位讓圖片不參與撐高，單純填滿容器並跟白卡切齊 */
.at-esg-hm-chapter-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* 一邊貼視窗、一邊接白卡，兩邊都不留圓角 */
    border-radius: 0;
}

.at-esg-hm-chapter-card {
    flex: 0 0 38%;
    max-width: 38%;
    background: #FFF;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.1);
    padding: 34px 36px;
    position: relative;
    z-index: 1;
    /* 內容在等高的卡片裡垂直置中 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 反向列：白卡的圓角改到左側 */
.at-esg-hm-chapter-row.is-reverse .at-esg-hm-chapter-card {
    border-radius: 12px 0 0 12px;
}

.at-esg-hm-chapter-label {
    display: inline-block;
    /* 卡片是 flex column，不指定會被拉成整條 */
    align-self: flex-start;
    color: var(--wp--preset--color--at-black);
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: 0.1rem;
    padding: 0;
    margin-bottom: 6px;
}

/* 章節英文名，接在中文標題下方 */
.at-esg-hm-chapter-en {
    align-self: flex-start;
    color: var(--wp--preset--color--at-primary);
    font-size: 0.8125rem;
    font-weight: bold;
    letter-spacing: 0.15rem;
    margin: 0 0 14px;
}

.at-esg-hm-chapter-desc {
    line-height: 1.9;
    margin-bottom: 18px;
}

.at-esg-hm-chapter-link {
    align-self: flex-start;
    color: var(--wp--preset--color--at-black);
    font-weight: bold;
    font-size: 0.9375rem;
}

.at-esg-hm-chapter-link:hover {
    color: var(--wp--preset--color--at-primary);
}

.at-esg-hm-chapter-link i {
    margin-left: 6px;
    color: var(--wp--preset--color--at-primary);
}

@media (max-width: 991px) {
    .at-esg-hm-chapters {
        padding: 44px 0 48px;
    }

    /* 手機不貼邊交錯，改成兩欄並排，左右留出邊距 */
    .at-esg-hm-chapters .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 20px;
    }

    .at-esg-hm-chapter-row,
    .at-esg-hm-chapter-row.is-reverse {
        flex-direction: column;
        width: auto;
        margin: 0;
    }

    .at-esg-hm-chapter-img {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        min-height: 0;
    }

    /* 卡片撐滿剩餘高度，同一排的底部才會切齊 */
    .at-esg-hm-chapter-card {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    .at-esg-hm-chapter-img img {
        position: static;
        height: 160px;
        min-height: 0;
        border-radius: 12px 12px 0 0;
    }

    .at-esg-hm-chapter-card,
    .at-esg-hm-chapter-row.is-reverse .at-esg-hm-chapter-card {
        margin: 0;
        border-radius: 0 0 12px 12px;
        /* 欄位變窄，內距與字級跟著收 */
        padding: 18px 18px 22px;
        justify-content: flex-start;
    }

    .at-esg-hm-chapter-label {
        font-size: 1rem;
        letter-spacing: 0.05rem;
    }

    .at-esg-hm-chapter-en {
        font-size: 0.75rem;
        letter-spacing: 0.06rem;
        margin-bottom: 10px;
    }

    .at-esg-hm-chapter-desc {
        font-size: 0.875rem;
        line-height: 1.75;
        margin-bottom: 14px;
    }
}

/* ============================================================
   Header 改版（hunet 式）：綠色 logo 方塊突出壓在 hero 上
   ============================================================ */

.at-esg-header {
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    /* 解掉堆疊環境，綠塊才沉得到 hero 下面、選單才浮得到 hero 上面 */
    z-index: auto;
}

.at-esg-logo-area {
    position: absolute;
    top: 0;
    left: 0;
    /* 不建立堆疊環境，色塊與文字才分得開層 */
    z-index: auto;
    max-width: none;
    width: 480px;
    /* 內頁只要 header 帶狀區，不然楔形會蓋到頁面標題 */
    height: 111px;
    background: transparent;
    /* 上內距讓 logo 圖在帶狀區裡垂直置中 */
    padding: 22px 30px 0;
    /* 只有文字要可點，整塊不擋 hero 的輪播操作 */
    pointer-events: none;
}

/* 三角形色塊本體：沉在 hero 圖之下，只露出左側與上方 */
.at-esg-logo-area::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    /* 左深右亮的綠色漸層 */
    background: linear-gradient(105deg, #2c7550 0%, var(--wp--preset--color--at-primary) 55%, #5cb185 100%);
    /* 內頁：切在 header 底部，等於首頁那個直角三角形的上半截 */
    clip-path: polygon(0 0, 100% 0, 83% 100%, 0 100%);
}

/* 首頁：直角三角形，直角在左上，斜邊由右上拉到左下，右半邊由 hero 圖蓋住 */
.at-esg-home .at-esg-logo-area {
    height: 660px;
}

.at-esg-home .at-esg-logo-area::before {
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* logo 文字浮在 hero 之上，不被輪播圖蓋掉 */
.at-esg-logo-area a {
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

/* 選單要浮在 hero 之上，下拉選單才不會被輪播圖蓋掉 */
.at-esg-main-nav,
.at-esg-menu-toggler,
.at-esg-mobile-menu {
    position: relative;
    z-index: 100;
}

/* SCROLL 提示只在首頁出現，內頁沒有向下捲的長楔形可以放 */
.at-esg-logo-area .at-esg-scroll-hint {
    display: none;
}

/* 直書 SCROLL 提示文字，貼在楔形左側 */
.at-esg-home .at-esg-logo-area .at-esg-scroll-hint {
    display: block;
    position: absolute;
    z-index: 100;
    left: 10px;
    bottom: 150px;
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.6875rem;
    letter-spacing: 0.2rem;
    font-weight: bold;
}

.at-esg-logo-area a {
    color: #FFF;
}

.at-esg-logo-title {
    color: #FFF;
    font-size: 1.25rem;
}

.at-esg-logo-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.875rem;
}

/* 白色橫條，選單靠右並讓出綠塊寬度 */
.at-esg-header-inner {
    justify-content: flex-end;
    /* 帶狀綠塊的高度，也要容得下 logo 兩行字 */
    min-height: 110px;
    /* logo 是絕對定位不佔位，這裡替它保留寬度，選單才不會鑽到它底下。
       容器會置中，寬螢幕時 logo 只吃掉容器左緣的一段，要扣掉留白才不會保留過頭 */
    --at-esg-gutter: max(15px, calc((100vw - 1400px) / 2));
    padding: 0 0 0 max(0px, calc(430px - var(--at-esg-gutter)));
}

html[lang="en"] .at-esg-header-inner {
    padding-left: max(0px, calc(270px - var(--at-esg-gutter)));
}

/* 視窗變窄時綠塊與選單一起縮，盡量讓選單維持單行 */
/* 視窗變窄時綠塊與選單一起縮，目標是主選單維持單列 */
@media (min-width: 992px) and (max-width: 1600px) {
    .at-esg-header-inner {
        padding-left: max(0px, calc(330px - var(--at-esg-gutter)));
    }

    html[lang="en"] .at-esg-header-inner {
        padding-left: max(0px, calc(220px - var(--at-esg-gutter)));
    }

    .at-esg-nav-item>a {
        font-size: 0.875rem;
        padding: 16px 8px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .at-esg-header-inner {
        padding-left: max(0px, calc(272px - var(--at-esg-gutter)));
    }

    .at-esg-nav-item>a {
        font-size: 0.8125rem;
        padding: 14px 6px;
    }
}

/* 選單尾端的官網連結與語言切換 */
.at-esg-nav-util>a {
    font-size: 0.875rem;
    color: #666;
}

.at-esg-nav-lang>a {
    font-weight: 900;
    letter-spacing: 0.05rem;
}

.at-esg-nav-lang>a span {
    margin: 0 6px;
    color: var(--wp--custom--color--at-grey);
    font-weight: normal;
}

/* 手機版綠塊還原成一般 logo 列 */
@media (max-width: 991px) {

    /* 要連 .at-esg-home 一起寫，否則首頁那條 (0,2,0) 的 height:660px
       特異性較高，會蓋掉這裡的重設，整個 header 被撐成 660px 高 */
    .at-esg-logo-area,
    .at-esg-home .at-esg-logo-area {
        position: static;
        border-radius: 0;
        box-shadow: none;
        padding: 10px 16px;
        flex: 1 1 auto;
        /* 手機不用三角形，尺寸還原成一般 logo 列 */
        width: auto;
        height: auto;
        pointer-events: auto;
    }

    .at-esg-logo-area::before,
    .at-esg-home .at-esg-logo-area::before {
        display: none;
    }

    /* SCROLL 提示只在桌機的長楔形上有意義 */
    .at-esg-logo-area .at-esg-scroll-hint,
    .at-esg-home .at-esg-logo-area .at-esg-scroll-hint {
        display: none;
    }

    .at-esg-logo-title {
        font-size: 1rem;
    }

    .at-esg-logo-sub {
        font-size: 0.75rem;
    }

    .at-esg-header-inner,
    html[lang="en"] .at-esg-header-inner {
        justify-content: space-between;
        background: linear-gradient(160deg, #55a97d 0%, var(--wp--preset--color--at-primary) 100%);
        /* 手機的 logo 回到流內佔位，不需要保留寬度 */
        padding-left: 0;
    }

    .at-esg-menu-toggler {
        color: #FFF;
    }
}

/* 英文版綠塊字級 */
html[lang="en"] .at-esg-logo-area {
    max-width: 300px;
}

html[lang="en"] .at-esg-logo-title {
    font-size: 0.9375rem;
    color: #FFF;
}

html[lang="en"] .at-esg-logo-sub {
    color: rgba(255, 255, 255, 0.92);
}

/* ============================================================
   背景裝飾：淡綠斜膠囊 + 葉子插圖
   ============================================================ */

.at-esg-hm-main {
    position: relative;
    overflow: hidden;
}

/* 斜向膠囊色帶 */
.at-esg-hm-about {
    position: relative;
}

.at-esg-hm-about::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -180px;
    width: 520px;
    height: 120px;
    border-radius: 999px;
    background: rgba(65, 149, 106, 0.1);
    transform: rotate(-24deg);
    pointer-events: none;
}

.at-esg-hm-about::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -220px;
    width: 460px;
    height: 96px;
    border-radius: 999px;
    background: rgba(65, 149, 106, 0.07);
    transform: rotate(-24deg);
    pointer-events: none;
}

.at-esg-hm-about .row {
    position: relative;
    z-index: 1;
}

/* 葉子插圖 */
.at-esg-hm-about-circles::after {
    content: "";
    position: absolute;
    width: 84px;
    height: 84px;
    right: 4%;
    bottom: -26px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M50 8C30 10 14 24 12 44c0 0 0 6 4 10 22 0 36-16 38-38 0-4-4-8-4-8z' fill='%2341956A' fill-opacity='.28'/%3E%3Cpath d='M14 52C30 48 44 34 48 16' stroke='%2341956A' stroke-opacity='.4' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transform: rotate(18deg);
    pointer-events: none;
}

.at-esg-hm-about-circles {
    position: relative;
}

.at-esg-hm-topics {
    position: relative;
}

.at-esg-hm-topics::after {
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    left: -22px;
    top: -28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M50 8C30 10 14 24 12 44c0 0 0 6 4 10 22 0 36-16 38-38 0-4-4-8-4-8z' fill='%2341956A' fill-opacity='.22'/%3E%3C/svg%3E") center / contain no-repeat;
    transform: rotate(-12deg);
    pointer-events: none;
}

/* 章節區的斜膠囊 */
.at-esg-hm-chapters {
    position: relative;
    overflow: hidden;
}

.at-esg-hm-chapters::before {
    content: "";
    position: absolute;
    top: 60px;
    left: -240px;
    width: 560px;
    height: 110px;
    border-radius: 999px;
    background: rgba(65, 149, 106, 0.09);
    transform: rotate(-24deg);
    pointer-events: none;
}

.at-esg-hm-chapters::after {
    content: "";
    position: absolute;
    bottom: 80px;
    right: -260px;
    width: 620px;
    height: 130px;
    border-radius: 999px;
    background: rgba(65, 149, 106, 0.12);
    transform: rotate(-24deg);
    pointer-events: none;
}

.at-esg-hm-chapters .container {
    position: relative;
    z-index: 1;
}

/* 章節列要貼到視窗邊緣，不受置中容器限制；只在桌機，手機是兩欄要留邊 */
@media (min-width: 992px) {
    .at-esg-hm-chapters .container {
        max-width: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 767px) {

    .at-esg-hm-about::before,
    .at-esg-hm-about::after,
    .at-esg-hm-chapters::before,
    .at-esg-hm-chapters::after {
        display: none;
    }

    .at-esg-hm-about-circles::after {
        width: 56px;
        height: 56px;
        bottom: -14px;
    }
}

/* 語言切換：中文與 EN 各自獨立連結 */
.at-esg-nav-lang {
    align-items: center;
    gap: 0;
}

.at-esg-nav-lang>a {
    font-weight: 900;
    letter-spacing: 0.05rem;
    padding-left: 8px;
    padding-right: 8px;
}

.at-esg-nav-lang>a.is-current {
    color: var(--wp--preset--color--at-primary);
}

.at-esg-nav-lang-sep {
    color: var(--wp--custom--color--at-grey);
    align-self: center;
}

/* 斜切色塊的手機版：還原成一般滿版列，不斜切 */
@media (max-width: 991px) {
    .at-esg-logo-area::before {
        clip-path: none;
    }

    .at-esg-logo-area {
        padding: 10px 16px;
    }
}

/* ============================================================
   首頁動態效果
   ============================================================ */

/* hero 緩慢推近，讓靜態大圖有呼吸感 */
.at-esg-hm-hero-slide img {
    transform: scale(1.06);
    transition: transform 7s ease-out;
}

.at-esg-hm-hero-slide.is-active img {
    transform: scale(1);
}

/* 換頁時標題重新滑入 */
.at-esg-hm-hero-en,
.at-esg-hm-hero-sub {
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.at-esg-hm-hero-sub {
    transition-delay: 0.12s;
}

.at-esg-hm-hero-text.is-swapping .at-esg-hm-hero-en,
.at-esg-hm-hero-text.is-swapping .at-esg-hm-hero-sub {
    opacity: 0;
    transform: translateY(16px);
    transition: none;
}

/* 目前這張的圓點拉成長條，內部進度條顯示距離自動換頁的時間 */
.at-esg-hm-hero-dots button {
    position: relative;
    overflow: hidden;
}

.at-esg-hm-hero-dots button.is-active {
    width: 34px;
    border-radius: 5px;
    transform: none;
    background: rgba(255, 255, 255, 0.5);
}

.at-esg-hm-hero-dots button.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--wp--preset--color--at-primary);
    transform-origin: left center;
    animation: atEsgDotProgress 5s linear forwards;
}

/* 滑入暫停自動播放時，進度條跟著停 */
.at-esg-hm-hero:hover .at-esg-hm-hero-dots button.is-active::after {
    animation-play-state: paused;
}

@keyframes atEsgDotProgress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* 章節圖預留上下餘裕給視差位移 */
.at-esg-hm-chapter-img {
    overflow: hidden;
}

.at-esg-hm-chapter-img img {
    top: -6%;
    bottom: auto;
    height: 112%;
}

/* 章節卡片 hover 浮起 */
.at-esg-hm-chapter-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.at-esg-hm-chapter-row:hover .at-esg-hm-chapter-card {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

/* 箭頭 hover 往右挪 */
.at-esg-hm-chapter-link i,
.at-esg-hm-topics-more i,
.at-esg-hm-about-buttons a i {
    transition: transform 0.3s ease;
}

.at-esg-hm-chapter-link:hover i,
.at-esg-hm-topics-more:hover i,
.at-esg-hm-about-buttons a:hover i {
    transform: translateX(5px);
}

/* 最新消息整列 hover */
.at-esg-hm-topics-list li a {
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.at-esg-hm-topics-list li a:hover {
    background: rgba(65, 149, 106, 0.06);
    padding-left: 10px;
}

/* 手機兩欄時卡片不做 hover 位移，避免點擊時跳動 */
@media (max-width: 991px) {
    .at-esg-hm-chapter-img img {
        top: auto;
        height: 160px;
    }

    .at-esg-hm-chapter-row:hover .at-esg-hm-chapter-card {
        transform: none;
        box-shadow: 0 8px 26px rgba(0, 0, 0, 0.1);
    }
}

/* 使用者要求減少動態時全部關掉 */
@media (prefers-reduced-motion: reduce) {

    .at-esg-hm-hero-slide img,
    .at-esg-hm-hero-slide.is-active img,
    .at-esg-hm-chapter-card,
    .at-esg-hm-chapter-link i,
    .at-esg-hm-topics-more i {
        transform: none !important;
        transition: none !important;
    }

    .at-esg-hm-hero-dots button.is-active::after {
        animation: none;
        transform: scaleX(1);
    }
}

/* ============================================================
   Hero 立體感：靜態的浮起陰影與暗角，hover 不做任何反應
   ============================================================ */

/* 圖面整塊浮起，離開頁面平面 */
.at-esg-hm-hero-slides {
    box-shadow: 0 30px 60px -22px rgba(14, 48, 32, 0.45),
                0 12px 26px -14px rgba(14, 48, 32, 0.32);
}

/* 邊緣暗角，讓平面看起來有厚度 */
.at-esg-hm-hero-slides::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(125% 95% at 50% 38%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.3) 100%);
}

@media (prefers-reduced-motion: reduce) {
    .at-esg-hm-hero-slides::after {
        display: none;
    }
}

/* ============================================================
   Logo 圖片（白字版，壓在綠色三角形上）
   ============================================================ */

.at-esg-logo-img {
    display: block;
    width: 340px;
    max-width: 100%;
    height: auto;
}

/* 英文版綠塊較窄，logo 跟著縮，避免壓到斜邊 */
html[lang="en"] .at-esg-logo-img {
    width: 220px;
}

/* 英文選單標籤長很多，字級與左右間距再收才排得下一列 */
html[lang="en"] .at-esg-nav-item>a {
    font-size: 0.8125rem;
    padding: 14px 7px;
    letter-spacing: 0;
}

@media (min-width: 992px) and (max-width: 1600px) {
    html[lang="en"] .at-esg-nav-item>a {
        font-size: 0.75rem;
        padding: 14px 5px;
    }
}

/* 英文標籤長，窄螢幕再收一級 */
@media (min-width: 992px) and (max-width: 1400px) {
    html[lang="en"] .at-esg-nav-item>a {
        font-size: 0.6875rem;
        padding: 12px 4px;
    }

    html[lang="en"] .at-esg-header-inner {
        padding-left: max(0px, calc(182px - var(--at-esg-gutter)));
    }
}

/* 響應式 logo 尺寸：必須放在基礎 logo 規則之後，
   否則 .at-esg-logo-img 的基礎寬度會把斷點裡的值蓋掉 */
@media (max-width: 1600px) {
    .at-esg-logo-area {
        width: 360px;
    }

    .at-esg-logo-img {
        width: 250px;
    }

    html[lang="en"] .at-esg-logo-area {
        max-width: 240px;
    }

    html[lang="en"] .at-esg-logo-img {
        width: 180px;
    }
}

@media (max-width: 1400px) {
    html[lang="en"] .at-esg-logo-area {
        max-width: 200px;
    }

    html[lang="en"] .at-esg-logo-img {
        width: 150px;
    }
}

@media (max-width: 1200px) {
    .at-esg-logo-area {
        width: 300px;
    }

    .at-esg-logo-img {
        width: 210px;
    }
}

/* 固定寬度也要隨螢幕縮，否則英文選單擠不進一列 */
@media (min-width: 992px) and (max-width: 1600px) {
    html[lang="en"] .at-esg-nav-item>a {
        width: 118px;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {
    html[lang="en"] .at-esg-nav-item>a {
        width: 104px;
    }
}

@media (max-width: 991px) {
    html[lang="en"] .at-esg-nav-item>a {
        width: auto;
    }
}

/* 英文選單的固定寬度只給章節項目用，工具項照文字長度就好。
   語言切換裡有兩個連結，被固定成 132px 會白白吃掉 260px。
   必須排在所有斷點之後，否則會被斷點的固定寬度蓋回去 */
html[lang="en"] .at-esg-nav-util>a,
html[lang="en"] .at-esg-nav-lang>a {
    width: auto;
}

/* 英文選單在 1200 以下再收一級，1100 以下就交給漢堡選單 */
@media (min-width: 992px) and (max-width: 1200px) {
    html[lang="en"] .at-esg-nav-item>a {
        width: 92px;
        padding: 12px 3px;
    }
}

html[lang="en"] .at-esg-nav-util>a,
html[lang="en"] .at-esg-nav-lang>a {
    width: auto;
}

/* 992～1140 是桌機選單的最窄帶，再收一級才排得下一列 */
@media (min-width: 992px) and (max-width: 1140px) {
    .at-esg-nav-item>a {
        font-size: 0.75rem;
        padding: 12px 4px;
        letter-spacing: 0;
    }

    .at-esg-header-inner {
        padding-left: max(0px, calc(240px - var(--at-esg-gutter)));
    }

    .at-esg-logo-area {
        width: 264px;
    }

    .at-esg-logo-img {
        width: 180px;
    }
}

/* 英文版最窄帶（992～1080）：標籤長，寬度再收才不會掉第二列 */
@media (min-width: 992px) and (max-width: 1080px) {
    html[lang="en"] .at-esg-nav-item>a {
        width: 78px;
        font-size: 0.625rem;
        padding: 10px 2px;
    }

    html[lang="en"] .at-esg-header-inner {
        padding-left: max(0px, calc(150px - var(--at-esg-gutter)));
    }

    html[lang="en"] .at-esg-logo-area {
        max-width: 170px;
    }

    html[lang="en"] .at-esg-logo-img {
        width: 125px;
    }
}

html[lang="en"] .at-esg-nav-util>a,
html[lang="en"] .at-esg-nav-lang>a {
    width: auto;
}

/* 手機版 logo：主題全域有 .at-esg-body img{max-width:100%}，特異性 (0,1,1)
   比單一 class 高，會把 logo 夾成父層寬度而形成循環壓縮。
   這裡用 (0,2,0) 以上的選擇器蓋過去，並放在所有斷點之後 */
@media (max-width: 991px) {

    .at-esg-logo-area,
    html[lang="en"] .at-esg-logo-area,
    .at-esg-home .at-esg-logo-area {
        width: auto;
        max-width: none;
    }

    .at-esg-logo-area .at-esg-logo-img,
    html[lang="en"] .at-esg-logo-area .at-esg-logo-img {
        width: 190px;
        max-width: none;
    }
}

/* ============================================================
   手機版 header：綠條滿版、logo 置中、漢堡固定右側
   放在所有斷點之後，避免被桌機的保留寬度規則蓋掉
   ============================================================ */
@media (max-width: 991px) {

    /* 綠底改掛在滿版的 header-main 上，容器有 15px padding 會露白邊 */
    .at-esg-header-main {
        background: linear-gradient(160deg, #55a97d 0%, var(--wp--preset--color--at-primary) 100%);
    }

    .at-esg-header-inner,
    html[lang="en"] .at-esg-header-inner {
        position: relative;
        justify-content: center;
        background: none;
        padding-left: 0;
        /* 桌機那個 110px 是為了容納三角形帶狀區，手機不需要 */
        min-height: 0;
    }

    .at-esg-logo-area,
    html[lang="en"] .at-esg-logo-area,
    .at-esg-home .at-esg-logo-area {
        padding: 9px 16px;
    }

    /* 不撐滿才置中得了，漢堡另外絕對定位到右邊 */
    .at-esg-logo-area,
    html[lang="en"] .at-esg-logo-area,
    .at-esg-home .at-esg-logo-area {
        flex: 0 0 auto;
    }

    .at-esg-menu-toggler {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
}

/* ============================================================
   手機版選單：第一層可收合
   ============================================================ */

.at-esg-mobile-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.at-esg-mobile-row>a {
    flex: 1 1 auto;
}

.at-esg-mobile-sub-toggle {
    flex: 0 0 auto;
    width: 52px;
    border: none;
    background: none;
    color: var(--wp--preset--color--at-primary);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.at-esg-mobile-sub-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
}

/* 子選單預設收起。用 max-height 才能做轉場，實際數值由 JS 量出來寫進 inline style，
   不用猜一個過大的固定值，否則收合會有一段看起來卡住的延遲 */
.at-esg-mobile-sub {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .at-esg-mobile-sub {
        transition: none;
    }

    .at-esg-mobile-sub-toggle {
        transition: none;
    }
}

/* 手機沒有左側綠色三角形要收邊，圓角拿掉 */
@media (max-width: 991px) {
    .at-esg-hm-hero-slides {
        border-radius: 0;
    }
}
