@charset "utf-8";

/* ESG New Design */
#ESG .esg_new {
    padding: 0;
    padding-bottom: 280px;
}

/* ABOUT Section */
#ESG .sec_about {
    padding: 120px 0 0;
}
#ESG .sec_about .about_title {
    margin-bottom: 80px;
}
#ESG .sec_about .en_tit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #000;
    margin-bottom: 40px;
}
#ESG .sec_about .about_desc {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
}
#ESG .sec_about .about_desc p {
    margin: 0;
}

/* Report Area */
#ESG .report_area {
    display: flex;
    gap: 72px;
    align-items: flex-start;
}
#ESG .report_list {
    flex: 1;
    max-width: 1000px;
}
#ESG .report_list_title {
    border-bottom: 2px solid #000;
    padding: 16px;
}
#ESG .report_list_title h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #000;
    margin: 0;
}
#ESG .report_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 8px;
}
#ESG .report_list ul li {
    border-bottom: 1px solid #d9d9d9;
}
#ESG .report_list ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    text-decoration: none;
    color: #000;
    transition: background 0.2s, color 0.2s;
}
#ESG .report_list ul li a span {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 18px;
}
#ESG .report_list ul li a svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}
#ESG .report_list ul li:hover {
    background: #000;
}
#ESG .report_list ul li:hover a {
    color: #fff;
}

/* Year Selector */
#ESG .year_selector {
    flex-shrink: 0;
    position: relative;
}
#ESG .year_btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border: 1px solid #d9d9d9;
    background: #fff;
    cursor: pointer;
}
#ESG .year_btn span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000;
}
#ESG .year_btn.open svg {
    transform: rotate(180deg);
}
#ESG .year_list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: 0;
    z-index: 5;
    display: none;
}
#ESG .year_selector.open .year_list {
    display: block;
}
#ESG .year_selector.open .year_btn svg {
    transform: rotate(180deg);
}
#ESG .year_list li button {
    display: block;
    width: 100%;
    padding: 12px 24px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #666;
}
#ESG .year_list li button:hover {
    color: #000;
    font-weight: 500;
}
#ESG .year_list li.active button {
    color: #000;
    font-weight: 700;
}

/* Category Sections */
#ESG .sec_category {
    padding: 160px 0 0;
    position: relative;
    background: linear-gradient(to bottom,
        #fff 0,
        #fff var(--bg-top, 79%),
        #f2f2f2 var(--bg-top, 79%),
        #f2f2f2 100%);
}
#ESG .sec_category .card_carousel_wrap {
    padding-bottom: 120px;
}

#ESG .sec_category > * {
    position: relative;
    z-index: 1;
}
#ESG .category_title {
    margin-bottom: 48px;
}
#ESG .category_title .title_row {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 24px;
}
#ESG .category_title .title_row h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 0.85; /* 글리프 높이에 가깝게 줄여서 line-box 하단 위치 맞춤 */
    color: #000;
    margin: 0;
}
#ESG .sdg_icons {
    display: flex;
    gap: 4px;
    align-items: center;
}
#ESG .sdg_icons img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}
#ESG .category_desc {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}
#ESG .category_desc p {
    margin: 0;
}

/* Card Carousel */
#ESG .card_carousel_wrap {
    position: relative;
    padding-left: max(24px, calc((100% - 1200px) / 2));
    overflow: hidden;
}
#ESG .esg_card_swiper {
    overflow: hidden;
}

/* Swiper Navigation */
#ESG .swiper_nav {
    position: absolute;
    top: var(--nav-top, 50%);
    left: max(24px, calc((100% - 1200px) / 2));
    transform: translateY(-50%);
    width: calc((100% - max(24px, calc((100% - 1200px) / 2))) * 3 / 3.1);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
#ESG .swiper_nav button {
    pointer-events: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    fill: #FFF;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.30));
    background: #fff;
    cursor: pointer;
    position: relative;
    margin: 0 -28px;
    border: 0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
}
#ESG .swiper_nav button svg{
    width: 8px;
    height: 14px;
}
#ESG .swiper_nav button::after {
    display: none;
}
#ESG .swiper_nav button.swiper-button-next svg {
    transform: rotate(180deg);
}

/* ESG Card */
#ESG .esg_card {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    aspect-ratio: 480 / 560;
}
#ESG .esg_card .card_img {
    aspect-ratio: 480 / 360;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
#ESG .esg_card .card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#ESG .esg_card .card_img.card_img_dark {
    background: #000;
}
#ESG .esg_card .card_img.card_img_dark > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#ESG .esg_card .card_img.card_img_stats {
    background: #000;
    position: relative;
}
#ESG .esg_card .card_img.card_img_stats > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* #ESG .esg_card .card_img.card_img_stats::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
} */
#ESG .esg_card .card_body {
    padding: 8.33% 8.33% 0 8.33%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
}
#ESG .esg_card .card_body.no-title{
    justify-content: center;
}
#ESG .esg_card .card_subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    line-height: 150%;
    margin-bottom: -16px;
}
#ESG .esg_card .card_title {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #fff;
    margin: 0;
}
#ESG .esg_card .card_title br{
    display: none;
}
#ESG .esg_card .card_desc {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}
#ESG .esg_card .card_desc p {
    margin: 0;
}

/* Stats Overlay */
#ESG .stats_overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 8.33%;
    width: 100%;
    height: 100%;
    justify-content: center;
}
#ESG .stat_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#ESG .stat_label {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    line-height: 100%;
}

#ESG .stat_value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #fff;
    white-space: nowrap;
}
#ESG .stat_value strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
}
#ESG .stat_value .stat_unit {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
}
#ESG .stat_value .stat_prefix {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
}
#ESG .stat_row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
#ESG .stat_divider {
    display: block;
    width: 1px;
    height: 32px;
    background: #fff;
}
#ESG .sec_culture .stats_overlay{
    gap: 28px;
    justify-content: start;
}
#ESG .sec_culture .stat_label{
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    line-height: 100%;
}
#ESG .sec_culture .stat_value strong{
    font-size: 40px;
}

/* Card Stats Badge (env-card5: 이미지 위에 통계 배지 얹힘) */
#ESG .card_stat_badge {
    position: absolute;
    right: 8.33%;
    bottom: 11.11%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
}
#ESG .card_stat_badge .stat_label {
    font-size: 14px;
    font-weight: 700;
}
#ESG .card_stat_badge .stat_value strong {
    font-size: 40px;
}

/* Card Stats Side (사용 안 함 - env-card6는 split 사용) */
#ESG .card_stats_side {
    position: absolute;
    right: 8.33%;
    top: 7.22%;
    width: 36.67%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
}
#ESG .card_stats_side .stat_value strong {
    font-size: 32px;
}

/* Card Image Split (env-card6: 좌측 이미지, 우측 통계) */
#ESG .esg_card .card_img.card_img_split {
    display: flex;
    background: #000;
}
#ESG .esg_card .card_img_split > .card_img_left {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
#ESG .esg_card .card_img_split > .card_img_left img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#ESG .esg_card .card_img_split > .card_img_right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8.33%;
    color: #fff;
    box-sizing: border-box;
}
#ESG .esg_card .card_img_split .stats_header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
}
#ESG .esg_card .card_img_split .stats_period {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
#ESG .esg_card .card_img_split .stats_header strong {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
#ESG .esg_card .card_img_split .stat_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
#ESG .esg_card .card_img_split .stat_item:last-child{
    margin-bottom: 0;
}
#ESG .esg_card .card_img_split .stat_item .stat_label{
    font-size: 13px;
    font-weight: 500;
    line-height: 100%;
}
#ESG .esg_card .card_img_split .stat_value strong {
    font-size: 32px;
}

/* Card Image Split Vertical (env-card5: 위 이미지, 아래 좌측 이미지 + 우측 텍스트) */
#ESG .esg_card .card_img.card_img_split_v {
    display: flex;
    flex-direction: column;
    background: #000;
}
#ESG .esg_card .card_img_split_v > .card_img_top {
    height: 55.55%;
    overflow: hidden;
    position: relative;
}
#ESG .esg_card .card_img_split_v > .card_img_top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#ESG .esg_card .card_img_split_v > .card_img_bottom {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px;
    box-sizing: border-box;
}
#ESG .esg_card .card_img_split_v .bottom_img {
    width: 50%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: #333;
}
#ESG .esg_card .card_img_split_v .bottom_img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#ESG .esg_card .card_img_split_v .bottom_text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
}
#ESG .esg_card.env-card5 .bottom_text .stat_label {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
}
#ESG .esg_card.env-card5 .stat_value strong {
    font-size: 32px;
}
#ESG .card_stats_side .stats_header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}
#ESG .card_stats_side .stats_period {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
#ESG .card_stats_side .stats_header strong {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

/* Title + Count (셰르파 카드) */
#ESG .esg_card .card_body .title_with_count {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    white-space: nowrap;
}
#ESG .esg_card .card_body .title_with_count .card_title {
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
    flex-shrink: 0;
}
#ESG .esg_card .card_body .title_with_count .stat_value {
    flex-shrink: 0;
}
#ESG .esg_card .card_body .title_with_count .stat_value strong {
    font-size: 40px;
    line-height: 1;
}
#ESG .esg_card .card_body .title_with_count .stat_value .stat_unit {
    font-size: 14px;
    line-height: 1.5;
}

/* 제품 섹션 카드: 타이틀(좌) + 카운트(우) 양끝 정렬 */
#ESG .esg_card .card_body .title_with_count_between {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    white-space: nowrap;
}
#ESG .esg_card .card_body .title_with_count_between .card_title_multi {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}
#ESG .esg_card .card_body .title_with_count_between .card_title_multi p {
    margin: 0;
}
#ESG .esg_card .card_body .title_with_count_between .stat_value {
    flex-shrink: 0;
}
#ESG .esg_card .card_body .title_with_count_between .stat_value strong {
    font-size: 40px;
    line-height: 1;
}
#ESG .esg_card .card_body .title_with_count_between .stat_value .stat_unit {
    font-size: 14px;
}

/* ISPO 36 AWARDS 인라인 텍스트 */
#ESG .esg_card .card_body .ispo_title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
}
#ESG .esg_card .card_body .ispo_title .ispo_label {
    font-size: 20px;
}
#ESG .esg_card .card_body .ispo_title .ispo_count {
    font-size: 40px;
}

/* stat_block: 라벨 + 숫자 세로 배치 */
#ESG .esg_card .card_body .stat_block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
}
#ESG .esg_card .card_body .stat_block .stat_label {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #fff;
}
#ESG .esg_card .card_body .stat_block .stat_value strong {
    font-size: 32px;
    line-height: 1;
}
#ESG .esg_card .card_body .stat_block .stat_value .stat_unit {
    font-size: 14px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    #ESG .sec_about .en_tit {
        font-size: 36px;
    }
    #ESG .sec_about .about_desc {
        font-size: 16px;
    }
    #ESG .report_area {
        display: block;
        position: relative;
    }
    #ESG .year_selector {
        position: absolute;
        top: 0;
        right: 8px;
        z-index: 2;
    }
    #ESG .report_list_title {
        padding: 8px 120px 8px 8px;
    }
    #ESG .sec_category {
        padding: 100px 0 60px;
    }
    #ESG .card_carousel_wrap {
        padding-left: 24px;
    }
    #ESG .swiper_nav {
        left: 24px;
        width: calc((100% - 24px) * 2 / 2.1);
    }
    #ESG .category_title .title_row h2 {
        font-size: 36px;
    }
    /* 카드 통계 폰트 축소 */
    #ESG .stat_value strong {
        font-size: 28px;
    }
    #ESG .stats_overlay {
        padding: 24px;
        gap: 32px;
    }
    #ESG .stat_row {
        gap: 16px;
    }
    #ESG .card_stat_badge {
        right: 24px;
        bottom: 24px;
    }
    #ESG .card_stat_badge .stat_value strong {
        font-size: 28px;
    }
    #ESG .card_stats_side {
        right: 24px;
        top: 20px;
    }
    #ESG .card_stats_side .stat_value strong {
        font-size: 22px;
    }
    #ESG .card_stats_side .stat_label,
    #ESG .card_stats_side .stat_value .stat_unit {
        font-size: 11px;
    }
}
@media screen and (max-width: 768px) {
    #ESG .esg_new{
        padding-bottom: 180px;
    }
    /* ABOUT 섹션 */
    #ESG .wrap_1200 {
        width: 100%;
    }
    #ESG .esg_banner h2{
        width: 90%;
        color: #FFF;
        font-family: Montserrat;
        font-size: 44px;
        font-style: normal;
        font-weight: 700;
        line-height: 105%; /* 46.2px */
        letter-spacing: -0.66px;
    }
    #ESG .sec_about {
        padding: 80px 20px 0;
    }
    #ESG .sec_about .about_title{
        margin-bottom: 80px;
    }
    #ESG .sec_about .en_tit {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 24px;
    }
    #ESG .sec_about .about_desc {
        font-size: 14px;
        line-height: 1.5;
    }
    #ESG .sec_about .about_desc p{
        font-family: "Noto Sans KR";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 24px */
        letter-spacing: -0.32px;
    }

    #ESG .sec_about .about_desc p br{
        display: none;
    }

    /* 리포트 다운로드 영역 */
    #ESG .report_list_title h3 {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 26px */
        letter-spacing: -0.4px;
    }
    #ESG .year_btn,
    #ESG .year_list li button {
        padding: 8px 16px;
        gap: 12px;
    }
    #ESG .year_btn span,
    #ESG .year_list li button{    
        font-size: 13px;
    }

 
    #ESG .report_list ul{
        margin-top: 8px;
    }
    #ESG .report_list ul li a {
        padding: 16px 8px;
    }
    #ESG .report_list ul li a span {
        font-size: 14px;
    }

    /* 카테고리 섹션 */
    #ESG .sec_category {
        padding: 100px 0 0;
    }
    #ESG .sec_category.sec_env{
        padding-top: 100px;
    }
   
    #ESG .category_title {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    #ESG .category_title .title_row {
        flex-wrap: wrap;
        gap: 16px;
    }
    #ESG .category_title .title_row h2 {
        font-size: 32px;
    }
    #ESG .sdg_icons {
        gap: 2px;
    }
    #ESG .sdg_icons img {
        width: 24px;
        height: 24px;
    }
    #ESG .category_desc br{
        display: none;
    }
    #ESG .category_desc p{
        font-size: 14px;
        line-height: 150%;
        letter-spacing: -0.28px;
    }

    /* 캐러셀 영역 */
    #ESG .card_carousel_wrap {
        padding-left: 20px;
    }
    #ESG .sec_category .card_carousel_wrap {
        padding-bottom: 80px;
    }
    #ESG .swiper_nav {
        display: none;
    }

    /* 카드 본체 (모바일에서는 슬라이드 폭에 맞춤, 비율은 데스크톱 동일) */
    #ESG .esg_card {
        max-width: none;
        width: 100%;
        aspect-ratio: 280 / 360;
    }
    #ESG .esg_card .card_img{
        aspect-ratio: 280 / 200;
    }
    #ESG .esg_card .card_body {
        padding: 24px;
        gap: 12px;
    }
    #ESG .esg_card .card_title {
        font-size: 18px;
    }
    #ESG .esg_card .card_title br{
        display: block;
    }
    #ESG .esg_card .card_subtitle {
        font-size: 14px;
        margin-bottom: -14px;
    }
    #ESG .esg_card .card_desc p{
        font-size: 12px;
        color: rgba(255,255,255,0.6);
        letter-spacing: -0.12px;
    }

    /* 카드 통계 폰트(모바일) */
    #ESG .stats_overlay {
        padding: 24px;
        gap: 24px;
    }
    #ESG .stat_item{
        gap: 8px;
    }
    #ESG .stat_label {
        font-size: 12px;
    }
    #ESG .stat_value strong {
        font-size: 32px;
    }
    #ESG .stat_value .stat_unit,
    #ESG .stat_value .stat_prefix {
        font-size: 10px;
    }
    #ESG .stat_row {
        gap: 16px;
    }
    #ESG .stat_divider {
        height: 24px;
    }

    #ESG .sec_culture .stats_overlay{
        gap: 16px;
    }
    #ESG .sec_culture .stat_label{
        font-size: 10px;
        line-height: 100%; /* 10px */
        letter-spacing: -0.1px;
    }
    #ESG .sec_culture .stat_value strong{
        font-size: 20px;
    }

    /* env-card5 (위 이미지, 아래 좌측이미지+우측텍스트) */
    #ESG .esg_card .card_img_split_v > .card_img_bottom {
        gap: 12px;
        padding: 12px;
    }
    #ESG .esg_card .card_img_split_v .bottom_img {
        width: 108px;
    }
    #ESG .esg_card.env-card5 .stat_value strong {
        font-size: 20px;
    }
    #ESG .esg_card.env-card5 .bottom_text{
        gap: 8px;
    }
    #ESG .esg_card.env-card5 .bottom_text .stat_label {
        font-size: 10px;
    }

    /* env-card6 (좌측 이미지, 우측 통계) */
    #ESG .esg_card .card_img_split > .card_img_right {
        padding: 16px;
    }
    #ESG .esg_card .card_img_split .stat_item{
        gap: 4px;
        margin-bottom: 12px;
    }
    #ESG .esg_card .card_img_split .stat_value strong {
        font-size: 20px;
    }
    #ESG .esg_card .card_img_split .stat_label {
        font-size: 10px;
    }
    #ESG .esg_card .card_img_split .stats_period {
        font-size: 8px;
    }
    #ESG .esg_card .card_img_split .stats_header{
        margin-bottom: 16px;
    }
    #ESG .esg_card .card_img_split .stats_header strong {
        font-size: 10px;
    }

    /* 셰르파 카드 (제목+숫자 가로) */
    #ESG .esg_card .card_body .title_with_count {
        gap: 12px;
    }
    #ESG .esg_card .card_body .title_with_count .stat_value strong {
        font-size: 32px;
    }
    #ESG .esg_card .card_body .title_with_count .card_title {
        font-size: 18px;
    }

    /* 제품 - 테스트 항목 카드 */
    #ESG .esg_card .card_body .title_with_count_between {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    #ESG .esg_card .card_body .title_with_count_between .card_title_multi {
        font-size: 12px;
    }
    #ESG .esg_card .card_body .title_with_count_between .card_title_multi br{
        display: none;
    }
    #ESG .esg_card .card_body .title_with_count_between .stat_value strong {
        font-size: 32px;
    }
    #ESG .esg_card .card_body .title_with_count_between .stat_value .stat_unit{
        font-size: 10px;
    }

    /* ISPO 36 AWARDS */
    #ESG .esg_card .card_body .ispo_title .ispo_label {
        font-size: 18px;
    }
    #ESG .esg_card .card_body .ispo_title .ispo_count {
        font-size: 32px;
    }

    /* stat_block */
    #ESG .esg_card .card_body .stat_block {
        gap: 8px;
    }
    #ESG .esg_card .card_body .stat_block .stat_label {
        font-size: 12px;
    }
    #ESG .esg_card .card_body .stat_block .stat_value strong {
        font-size: 32px;
    }
    #ESG .esg_card .card_body .stat_block .stat_value .stat_unit {
        font-size: 10px;
    }
}


