/* ===== skipnav 숨김 보정 ===== */
#skip a:hover,
#skip a:active,
#skip a:visited {
    top: -9999px !important;
}
#skip a:focus {
    top: 0 !important;
}

/* ===== 팝업 ===== */
.popup {
    display: block;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    position: relative;
    background-color: #fff;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 17px;
    font-weight: bold;
    margin: 0.3rem 0rem;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.popup-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 47rem;
}

.btn-wrap {
    text-align: center;
    margin-top: 0.5rem;
}

.btn-large {
    display: inline-block;
    padding: 5px 20px;
    margin: 5px;
    font-size: 16px;
    color: white;
    background-color: orange;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
}

.btn-orange {
    background-color: orange;
}

.btn-orange:hover {
    background-color: darkorange;
}

/* ===== 한글 헤드라인 폰트 ===== */
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&display=swap');


/* ===== Agrosuper 사이트 폰트 ===== */
@font-face {
    font-family: "Draft text";
    src: url("/static/common/font/DraftB-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Draft text";
    src: url("/static/common/font/DraftB-RegularIta.woff2") format("woff2");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Draft text";
    src: url("/static/common/font/DraftB-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Draft";
    src: url("/static/common/font/DraftNaturalHiResH-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Draft";
    src: url("/static/common/font/DraftNaturalH-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Draft";
    src: url("/static/common/font/DraftNaturalH-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

.fonty {
    font-family: "Draft", "Draft text", sans-serif;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.fonty2 {
    font-family: "Handelson", "Draft text", sans-serif;
    font-weight: 400 !important;
}

h1 .fonty2, .h1 .fonty2 {
    font-size: 120%;
    line-height: .35;
    position: relative;
    z-index: 2;
    letter-spacing: 0.01em;
}

.text-color4 {
    color: #e87622;
}

.d-md-block {
    display: block;
}

.flip_holder {
    line-height: 1;
}

.flip_holderr {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    margin: 0 auto;
}

.fs-3 {
    font-size: 72px !important;
}

@media (min-width: 768px) {
    .fs-md-2 {
        font-size: 100px !important;
    }
}

@media (min-width: 1201px) {
    .fs-xl-1 {
        font-size: 105.7897000097px !important;
    }
}

/* ===== 마블 히어로 섹션 ===== */
.marble-hero {
    background: transparent;
    padding: 15px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.marble-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.marble-item {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.marble-img-wrap {
    position: relative;
    width: 100%;
}

.marble-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease, transform 0.5s ease;
    border-radius: 5px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.marble-img-wrap .img-default {
    display: block;
}

.marble-img-wrap .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    object-fit: cover;
}

.marble-item:hover .img-default {
    opacity: 0;
    transform: scale(1.05);
}

.marble-item:hover .img-hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ===== 히어로 타이틀 ===== */
.marble-hero-title h1 {
    margin: 0;
    padding: 0;
    overflow: visible;
}

@media (max-width: 767px) {
    .marble-hero-title h1 {
        font-size: 11vw !important;
    }
}

.marble-hero-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 0;
    line-height: 1;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.marble-hero-title .hero-line1 {
    font-family: "Draft", sans-serif;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1;
    display: block;
    color: #002c82;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
}


.marble-hero-title .hero-line2 {
    font-family: "Handelson", "Draft text", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: block;
    position: relative;
    z-index: 2;
    color: #e87622;
    /* margin: -0.04em 0 0.1em; */
    -webkit-font-smoothing: antialiased;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    overflow: visible;
}


.marble-hero-title .hero-line3 {
    font-family: "Draft", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    color: #002c82;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}


/* ===== 히어로 서브타이틀 ===== */
.hero-subtitle {
    color: #002c82;
    font-family: 'NotoSansKR', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    letter-spacing: 0.01em;
    opacity: 0.9;
    white-space: nowrap;
    padding-bottom: 20px;
    padding-top: 0;
}

/* ===== smudge(붓터치) 버튼 ===== */
.smudge-btn-wrap {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.smudge-btn {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 18px 50px;
}

.marble-hero .smudge-btn .smudge-bg {
    visibility: hidden;
}

.marble-hero .smudge-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    z-index: 0;
    -webkit-mask-image: url('/static/images/new-img/smear-1-color3.png');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('/static/images/new-img/smear-1-color3.png');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    background-color: #002c82;
    transition: background-color 0.3s ease;
}

.marble-hero .smudge-btn:hover::before {
    background-color: #e87722;
}

.marble-hero .smudge-btn:hover .smudge-text {
    color: #fff;
}

.smudge-btn .smudge-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    object-fit: fill;
    z-index: 0;
}

.smudge-btn .smudge-text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: 'NotoSansKR', sans-serif;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ===== brand-contact-list 버튼 ===== */
.brand-contact-list-wrap .smudge-btn {
    padding: 7px 20px 9px;
    margin: 0 12px;
}

.brand-contact-list-wrap .smudge-btn .smudge-bg {
    visibility: hidden;
}

.brand-contact-list-wrap .smudge-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    z-index: 0;
    background-color: #ffffff;
    -webkit-mask-image: url('/static/images/new-img/smear-1-color3.png');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('/static/images/new-img/smear-1-color3.png');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

.brand-contact-list-wrap .smudge-btn:hover::before {
    background-color: #e87722;
}

.brand-contact-list-wrap .smudge-btn:hover .smudge-text {
    color: #fff;
}

.brand-contact-list-wrap .smudge-btn .smudge-text {
    font-size: 14.4px;
    color: #002c82;
    transition: color 0.3s ease;
}

.brand-contact-list-wrap .btn-wrap {
    height: auto;
}

/* ===== visual-section01 배경 ===== */
.visual-section01 {
    background: #fff !important;
}

/* ===== visual-section04 배경/이미지 제거 ===== */
.visual-section04 {
    padding-bottom: 0;
    background: transparent !important;
    background-image: none !important;
}

.visual-section04 .visual-desc {
    float: none !important;
    width: auto !important;
    text-align: center;
}

.visual-section04 .visual-desc p {
    color: inherit !important;
}

.visual-section04 .s04-heading {
    font-size: clamp(24px, 5vw, 60px);
    display: block;
    line-height: 1.15;
    position: relative;
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 900;
    color: #002f86;
    text-align: center;
}

.visual-section04 .s04-title {
    font-size: clamp(24px, 5vw, 60px);
    display: block;
    margin-top: 5px;
    color: #e87622;
}

.visual-section04 .s04-subtitle {
    font-family: 'NotoSansKR', sans-serif;
    font-size: 70px;
    font-weight: 700;
    font-style: italic;
    margin-top: 5px;
    display: block;
    letter-spacing: 0.05em;
    color: #e87622;
}

.visual-section04 .s04-illust {
    padding: 40px 0 0;
    text-align: center;
}

.visual-section04 .s04-illust img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.s04-illust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.s04-pig-img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.s04-super-quad {
    display: flex;
    align-items: center;
    gap: 0;
}

.s04-quote-open {
    font-family: 'NotoSansKR', sans-serif;
    font-style: italic;
    font-size: clamp(24px, 5vw, 60px);
    color: #e87622;
    line-height: 1;
    font-weight: 700;
    align-self: flex-start;
    margin-right: 2px;
    margin-top: -5px;
}

.s04-quote-close {
    font-family: 'NotoSansKR', sans-serif;
    font-style: italic;
    font-size: clamp(24px, 5vw, 60px);
    color: #e87622;
    line-height: 1;
    font-weight: 700;
    align-self: flex-end;
    margin-left: 2px;
    margin-bottom: -5px;
}

.s04-quad-text {
    font-family: 'NotoSansKR', sans-serif;
    font-style: italic;
    font-size: clamp(24px, 5vw, 60px);
    font-weight: 700;
    color: #002f86;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
}

/* 중대형 화면 (1024px ~ 1199px) */

@media (min-width: 769px) and (max-width: 1024px) {
    .s04-pig-img {
        max-width: 250px;
    }

    .visual-section03 .thumb-list ul li .thumb {
        width: 100px !important;
        height: 100px !important;
        padding: 0 !important;
    }

    .visual-section04 .s04-illust img {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .s04-pig-img {
        max-width: 180px;
    }
}

/* ===== visual-section 버튼 ===== */
.visual-section01 .smudge-btn {
    margin-left: 10px;
    margin-top: 10px;
}

.visual-section02 {
    background: #fff !important;
}

.visual-section02 .visual-desc,
.visual-section04 .visual-desc {
    margin-top: 45px;
    text-align: center;
}

.visual-section02 .smudge-btn {
    margin-left: 30px;
}

.visual-section02 .smudge-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    z-index: 0;
    background-color: #002c82 !important;
    -webkit-mask-image: url('/static/images/new-img/smear-1-color3.png');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('/static/images/new-img/smear-1-color3.png');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

.visual-section02 .smudge-btn:hover::before {
    background-color: #e87722 !important;
}

/* 이미지 */
.visual-section02 .visual-thumb {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.visual-section02 .visual-thumb-staggered .thumb-stagger-right {
    margin-top: 30px;
    margin-bottom: -30px;
}

/* 체크리스트 2열 가운데 정렬 */
.visual-section02 .list-check {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
    margin: 50px auto 0;
    padding: 0;
    list-style: none;
    gap: 12px;
}

.visual-section02 .list-check li {
    width: calc(50% - 6px);
    box-sizing: border-box;
    text-align: left;
    margin-bottom: 0;
    padding: 12px 15px 12px 35px;
    border: 1.5px solid #bbb;
    border-radius: 8px;
    background: transparent;
    font-family: 'NotoSansKR', sans-serif;
}

.visual-section02 .list-check li {
    position: relative;
}

.visual-section02 .list-check li::before {
    display: block;
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 14px;
    background-image: url(../img/bul/bul-list-check.png) !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    filter: brightness(0) saturate(100%) invert(12%) sepia(63%) saturate(4741%) hue-rotate(213deg) brightness(88%) contrast(107%);
}


/* ===== visual-section03 ===== */
.visual-section03 {
    background-image: none !important;
    height: auto !important;
    overflow: visible !important;
}

.section03-top-banner {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 60px;
    line-height: 1;
}

.section03-top-banner .s03-line {
    display: block;
    line-height: 1;
    font-size: clamp(26px, 5vw, 60px);
    position: relative;
    color: #fff;
}

.section03-top-banner .s03-title {
    display: block;
    line-height: 1;
    position: relative;
    margin-top: 15px;
    font-size: clamp(26px, 5vw, 60px);
    font-weight: 900;
    color: #e87622;
    font-family: 'NotoSansKR', sans-serif;
}

.s03-sub-desc {
    color: #fff;
    font-family: 'NotoSansKR', sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
    margin: 40px auto 0;
    max-width: 700px;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .s03-sub-desc {
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .s03-sub-desc {
        margin: 25px auto 0;
        max-width: 90%;
        line-height: 1.7;
    }
}

.visual-section03 .video-thumb {
    display: none;
}

.visual-section03 .thumb-list ul li span {
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 500;
}

.visual-section03 .thumb-list ul {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: flex-start;
    overflow: visible !important;
}

.visual-section03 .thumb-list ul li {
    float: none !important;
    width: calc(100% / 6) !important;
    margin: 0 !important;
}

.visual-section03 .thumb-list ul li .thumb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.visual-section03 .thumb-list ul li .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.visual-section03 .thumb-list {
    position: relative;
}

.visual-section03 .icon-group-line {
    position: absolute !important;
    left: -16px !important;
    right: -16px !important;
    height: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    z-index: -1;
    pointer-events: none;
}

.visual-section03 .icon-group-line svg {
    width: 100%;
    height: 40px;
}

.visual-section03 .icon-group-line .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.visual-section03 .aos-animate .icon-group-line .path {
    animation: dashHorizontal 2s linear forwards;
}

@keyframes dashHorizontal {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

/* ===== video-box (기존, 미사용) ===== */

/* ===== video-stack ===== */
.video-stack-wrap {
    position: relative;
    width: 100%;
    margin: 3.5rem auto 0;
    overflow: visible;
}

.visual-section03 ul.video-stack {
    display: flex !important;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    overflow: visible !important;
    height: auto;
}

.visual-section03 ul.video-stack::after {
    display: none;
}

.visual-section03 ul.video-stack li.video-stack-item,
.visual-section03 ul.video-stack li.video-stack-item:nth-child(1),
.visual-section03 ul.video-stack li.video-stack-item:nth-child(2),
.visual-section03 ul.video-stack li.video-stack-item:nth-child(3),
.visual-section03 ul.video-stack li.video-stack-item:nth-child(4),
.visual-section03 ul.video-stack li.video-stack-item:nth-child(5),
.visual-section03 ul.video-stack li.video-stack-item:nth-child(6) {
    display: block;
    width: calc(33.333% - 2rem - 50px);
    margin: 1rem;
    float: none;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: visible !important;
    transition: transform 0.3s ease-in-out;
}

.visual-section03 ul.video-stack li.video-stack-item:hover {
    transform: scale(1.15);
    z-index: 200;
}

.video-stack-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-section03 ul li span.video-stack-num {
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 900;
    font-size: 72px;
    line-height: 1;
    text-align: center;
    margin-top: 0;
    color: #e87622;
}

.visual-section03 ul li span.video-stack-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.video-stack-holder {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 8px;
}

.video-stack-holder video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 모바일: 스크롤 스택 모드 */
@media (max-width: 768px) {
    .video-stack {
        display: block !important;
        position: relative !important;
        height: 70vh !important;
    }
    .video-stack-item {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: none !important;
        margin: 0 !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
        border-radius: 12px !important;
    }
    .video-stack-item:hover {
        transform: translate(-50%, -50%) !important;
    }
    .visual-section03 ul li span.video-stack-num {
        font-size: 64px;
    }
    .visual-section03 ul li span.video-stack-label {
        font-size: 24px;
    }
    .s03-sub-desc {
        margin: -100px auto 0;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .video-stack {
        height: 60vh !important;
    }
    .visual-section03 ul li span.video-stack-num {
        font-size: 56px;
    }
    .visual-section03 ul li span.video-stack-label {
        font-size: 22px;
    }
    .visual-section03 .thumb-list ul li .thumb {
        width: 60px !important;
        height: 60px !important;
        padding: 0 !important;
    }
    .visual-section04 .s04-illust img {
        max-width: 240px;
    }

}

/* video-stack 클릭 확장 (PC, 769px 이상) */
@media (min-width: 769px) {
    .video-stack-wrap.expanded .video-stack {
        position: relative;
    }
    .video-stack-wrap.expanded .video-stack-item:not(.active) {
        visibility: hidden;
        pointer-events: none;
        transition: visibility 0.4s ease;
    }
    .video-stack-wrap.expanded .video-stack-item.active {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        z-index: 100;
        border-radius: 12px;
        transform: none !important;
        transition: all 0.4s ease;
    }
    .video-stack-wrap.expanded .video-stack-item.active:hover {
        transform: none !important;
    }
    .video-stack-wrap.expanded .video-stack-item.active video {
        object-fit: cover;
    }
    .video-stack-close {
        display: none;
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 200;
        background: rgba(0, 0, 0, 0.55);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        font-size: 18px;
        line-height: 38px;
        text-align: center;
        cursor: pointer;
        transition: background 0.2s;
    }
    .video-stack-close:hover {
        background: rgba(0, 0, 0, 0.8);
    }
    .video-stack-wrap.expanded .video-stack-item.active .video-stack-close {
        display: block;
    }

    /* 확장 시 설명 텍스트와 버튼 페이드 아웃 */
    .video-stack-wrap.expanded ~ p.s03-sub-desc,
    .video-stack-wrap.expanded ~ .btn-wrap {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    /* 확장 시 숫자/영문 숨김 */
    .video-stack-wrap.expanded .video-stack-item.active .video-stack-title {
        display: none;
    }
}

.visual-section03 .btn-wrap {
    width: 100%;
    text-align: center;
}

.visual-section03 .smudge-btn {
    padding: 18px 50px 18px 45px;
}

.visual-section03 .smudge-btn .smudge-text {
    color: #002c82;
    transition: color 0.3s ease;
}

.visual-section03 .smudge-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    z-index: 0;
    background-color: #ffffff !important;
    -webkit-mask-image: url('/static/images/new-img/smear-1-color3.png');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('/static/images/new-img/smear-1-color3.png');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

.visual-section03 .smudge-btn:hover::before {
    background-color: #e87722 !important;
}

.visual-section04 .smudge-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    z-index: 0;
    background-color: #002c82 !important;
    -webkit-mask-image: url('/static/images/new-img/smear-1-color3.png');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('/static/images/new-img/smear-1-color3.png');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

.visual-section04 .smudge-btn:hover::before {
    background-color: #e87722 !important;
}

/* ===== visual-thumb staggered ===== */
.visual-thumb-staggered {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
}

.visual-thumb-staggered .thumb-stagger-left,
.visual-thumb-staggered .thumb-stagger-right {
    width: 50%;
    overflow: hidden;
    height: 300px;
}

.visual-thumb-staggered .thumb-stagger-left {
    border-radius: 5px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.visual-thumb-staggered .thumb-stagger-right {
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: -30px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.visual-thumb-staggered .thumb-stagger-left img,
.visual-thumb-staggered .thumb-stagger-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== visual-section 공통 smudge 버튼 ===== */
.visual-section01 .smudge-btn .smudge-bg,
.visual-section02 .smudge-btn .smudge-bg,
.visual-section03 .smudge-btn .smudge-bg,
.visual-section04 .smudge-btn .smudge-bg,
.visual-section05 .smudge-btn .smudge-bg,
.visual-section06 .smudge-btn .smudge-bg {
    visibility: hidden;
}

.visual-section01 .smudge-btn::before,
.visual-section05 .smudge-btn::before,
.visual-section06 .smudge-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    z-index: 0;
    background-color: #002c82;
    -webkit-mask-image: url('/static/images/new-img/smear-1-color3.png');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('/static/images/new-img/smear-1-color3.png');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

.visual-section01 .smudge-btn:hover::before,
.visual-section05 .smudge-btn:hover::before,
.visual-section06 .smudge-btn:hover::before {
    background-color: #e87722;
}

.visual-section01 .smudge-btn:hover .smudge-text,
.visual-section02 .smudge-btn:hover .smudge-text,
.visual-section04 .smudge-btn:hover .smudge-text,
.visual-section05 .smudge-btn:hover .smudge-text,
.visual-section06 .smudge-btn:hover .smudge-text {
    color: #fff;
}

.visual-section03 .smudge-btn:hover .smudge-text {
    color: #fff;
}

/* PC에서 점선 우측 영역 안쪽으로 */
@media (min-width: 1025px) {
    .visual-section03 .icon-group-line {
        right: 0 !important;
    }
}

/* ===== PC 통일 간격 시스템 ===== */

/* 1) 섹션 inner 상하 패딩 통일: 80px */
.visual-section02 .visual-section-inner {
    padding: 80px 0 0 !important;
}
.visual-section03 .visual-section-inner {
    padding: 80px 0 !important;
}
.visual-section04 .visual-section-inner {
    padding: 80px 0 !important;
}
.visual-section05 .visual-section-inner {
    padding: 80px 0 !important;
}
.visual-section06 {
    padding: 80px 0 !important;
}
.brand-contact-list .brand-contact-list-wrap {
    padding-top: 0px !important;
    padding-bottom: 0 !important;
}
.marble-hero {
    padding: 40px 20px 80px !important;
}

/* 2) 타이틀 → 본문 간격 통일: 40px */
.visual-section02 .visual-desc,
.visual-section04 .visual-desc {
    margin-top: 0 !important;
    margin-bottom: 40px;
}
.section03-top-banner {
    margin: 0 0 80px !important;
}
.visual-section04 .visual-desc {
    margin-top: 0 !important;
    margin-bottom: 0;
    float: none !important;
    width: 100% !important;
    text-align: center;
}
.visual-section05 .s05-title-wrap {
    margin-bottom: 40px;
}
.visual-section06 .newsevent-header {
    margin-bottom: 40px;
}

/* 3) 본문 → 버튼 간격 통일: 40px */
.visual-section02 .btn-wrap {
    margin-top: 40px !important;
}
.visual-section03 .btn-wrap {
    margin-top: 40px !important;
}
.visual-section04 .btn-wrap {
    margin-top: 80px !important;
}
.visual-section05 .btn-wrap {
    margin-top: 40px !important;
}
.smudge-btn-wrap {
    margin-top: 40px !important;
}

/* 4) 본문 텍스트 간격 통일 */
.visual-section02 .visual-thumb {
    margin-top: 40px;
}
.visual-section02 .list-check {
    margin-top: 40px;
}

/* ===== 모바일 반응형 ===== */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
    }

    .btn-orange {
        background-color: orange;
        max-width: 10rem;
    }

    .marble-hero {
        padding: 50px 15px 80px;
    }

    .marble-hero-inner {
        padding: 0 10px;
    }

    .marble-item {
        max-width: 100%;
    }

    .marble-img-wrap img {
        border-radius: 3px;
        box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    }

    .marble-hero-title {
        margin-bottom: 0;
    }

    /* 기존 타이틀 반응형 처리는 위의 세분화된 처리로 대체됨 */

    .logo-bar {
        padding: 15px 20px;
    }

    .logo-bar .logo-left img {
        height: 36px;
    }

    .logo-bar .logo-right img {
        height: 60px;
    }

    .smudge-btn-wrap {
        margin-top: 30px;
    }

    .visual-thumb-staggered {
        gap: 0;
    }

    .visual-thumb-staggered .thumb-stagger-left,
    .visual-thumb-staggered .thumb-stagger-right {
        height: 200px;
    }

    .visual-thumb-staggered .thumb-stagger-left {
        border-radius: 5px;
        box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    }

    .visual-thumb-staggered .thumb-stagger-right {
        border-radius: 5px;
        box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
        margin-top: 0;
        margin-bottom: 0;
    }

    .smudge-btn {
        padding: 10px 28px;
    }

    .smudge-btn .smudge-bg {
        width: 116%;
        height: 116%;
    }

    .smudge-btn .smudge-text {
        font-size: 14px;
    }


    .visual-section02 .smudge-btn {
        margin-left: 0;
        margin-top: 0;
    }

    .visual-section02 .visual-desc,
    .visual-section04 .visual-desc {
        margin-top: 0 !important;
        margin-bottom: 0;
        text-align: center;
    }

    .visual-section02 .visual-desc strong,
    .visual-section04 .visual-desc strong,
    .visual-section05 .s05-title-wrap strong,
    .visual-section06 .newsevent-header-left strong {
        font-size: 24px !important;
        line-height: 1.15;
    }

    .s02-line1 {
        max-width: 90%;
        margin: 0 auto;
    }

    .sw02-title {
        max-width: 90%;
        margin: 0 auto;
    }

    .visual-section02 .visual-thumb {
        max-width: 85%;
        margin: 35px auto 0;
    }

    .visual-section02 .visual-thumb-staggered .thumb-stagger-right {
        margin-top: 20px;
        margin-bottom: -20px;
    }

    .visual-thumb-staggered .thumb-stagger-left,
    .visual-thumb-staggered .thumb-stagger-right {
        height: 150px;
    }

    .visual-section02 .list-check {
        max-width: 90%;
        margin-top: 30px;
        gap: 10px;
    }

    .visual-section02 .list-check li {
        width: calc(50% - 5px);
        font-size: 13px;
        margin-bottom: 0;
        padding: 10px 10px 10px 28px;
    }

    .visual-section02 .list-check li::before {
        left: 10px;
        width: 16px;
        height: 14px;
    }

    .visual-section02 .btn-wrap {
        margin-top: 30px !important;
        padding-bottom: 0 !important;
    }

    .section03-top-banner {
        margin: 0 0 50px;
        font-size: 14px;
    }

    .visual-section03 .video-box {
        margin: 4rem 0 2rem;
    }

    .visual-section03 .thumb-list ul {
        flex-wrap: wrap !important;
        gap: 25px 0;
        position: relative;
    }

    .visual-section03 .thumb-list ul li {
        width: calc(100% / 3) !important;
        position: relative;
    }

    /* 2행 역순 배치: 1 2 3 / 6 5 4 */
    .visual-section03 .thumb-list ul li:nth-child(4) { order: 6; }
    .visual-section03 .thumb-list ul li:nth-child(5) { order: 5; }
    .visual-section03 .thumb-list ul li:nth-child(6) { order: 4; }

    /* 기존 SVG 점선 숨김 */
    .visual-section03 .icon-group-line {
        display: none !important;
    }

    /* 모바일 thumb 크기 축소 */
    .visual-section03 .thumb-list ul li .thumb {
        width: 80px !important;
        height: 80px !important;
        padding: 0 !important;
    }

    /* 1행 가로 점선 (1→2, 2→3) */
    .visual-section03 .thumb-list ul li:nth-child(1)::after,
    .visual-section03 .thumb-list ul li:nth-child(2)::after {
        content: '';
        position: absolute;
        top: calc(50% - 12px);
        right: -8%;
        width: 16%;
        border-top: 3px dashed rgba(255, 255, 255, 0.8);
        z-index: 1;
    }

    /* 2행 가로 점선 (4→5, 5→6) = 시각적으로 우→좌 */
    .visual-section03 .thumb-list ul li:nth-child(4)::after,
    .visual-section03 .thumb-list ul li:nth-child(5)::after {
        content: '';
        position: absolute;
        top: calc(50% - 12px);
        left: -8%;
        width: 16%;
        border-top: 3px dashed rgba(255, 255, 255, 0.8);
        z-index: 1;
    }

    /* 3→4 세로 연결 점선 */
    .visual-section03 .thumb-list ul li:nth-child(3)::before {
        content: '';
        position: absolute;
        bottom: -28px;
        left: 50%;
        height: 28px;
        border-left: 3px dashed rgba(255, 255, 255, 0.8);
        z-index: 1;
    }

    .visual-section03 .thumb-list ul li .thumb {
        position: relative;
    }

    .visual-section03 {
        height: auto !important;
    }

    .visual-section04 {
        padding-bottom: 0;
    }

    .visual-section04 .visual-desc div .s04-title {
        margin-top: 10px;
    }

    .visual-section05 .smudge-btn {
        margin-left: 0;
    }

    .newsevent-col .btn-wrap {
        margin-top: 20px;
    }

    .newsevent-col .smudge-btn {
        padding: 10px 28px;
    }

    .newsevent-header-left h2 .accent {
        font-size: 22px;
    }

    /* ===== 모바일 통일 디자인 시스템 ===== */

    /* 1) 섹션 내부 패딩 통일: 45px 상하, 20px 좌우 */
    .visual-section .visual-section-inner {
        padding: 45px 20px 40px 20px !important;
    }
    .visual-section06 {
        padding: 45px 0 !important;
    }
    .brand-contact-list .brand-contact-list-wrap {
        padding: 0px 20px 0 !important;
    }
    .marble-hero {
        padding: 45px 15px 45px !important;
    }

    /* 2) 타이틀 폰트 통일: 메인 24px / 강조 30px / Pretendard */
    .visual-section02 .visual-desc strong,
    .visual-section04 .visual-desc strong,
    .visual-section05 .s05-title-wrap strong,
    .visual-section06 .newsevent-header-left strong {
        font-size: 24px !important;
    }
    .visual-section04 .visual-desc div .s04-title {
        margin-top: 8px;
    }
    .visual-section05 .s02-title {
        font-size: 28px !important;
    }
    .visual-section05 .s02-line1 {
        font-size: 18px !important;
    }

    /* 3) 타이틀 하단 여백 통일: 25px */
    .visual-section02 .visual-desc,
    .visual-section04 .visual-desc {
        margin-bottom: 25px;
    }
    .section03-top-banner {
        margin: 0 0 25px !important;
    }
    .visual-section04 .visual-desc {
        margin-bottom: 25px;
    }
    .visual-section05 .s05-title-wrap {
        margin-bottom: 25px !important;
    }
    .visual-section06 .newsevent-header {
        margin-bottom: 25px !important;
    }

    /* 4) 본문 텍스트 통일: 15px / line-height 1.7 / NotoSansKR */
    .visual-section .visual-desc p,
    .visual-section05 .s05-desc p,
    .brand-contact-list p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
    .s03-sub-desc {
        line-height: 1.7 !important;
    }
    .visual-section02 .list-check li {
        font-size: 14px !important;
    }
    .visual-section06 .newsevent-content2 h4 a {
        font-size: 16px !important;
    }

    /* 5) 버튼 스타일 통일: 12px 22px 패딩 / 14px 폰트 */
    .smudge-btn {
        padding: 12px 22px !important;
    }
    .smudge-btn .smudge-text {
        font-size: 14px !important;
    }

    /* 6) 버튼 상단 여백 통일: 30px */
    .visual-section .btn-wrap,
    .visual-section05 .btn-wrap,
    .visual-section06 .newsevent-col .btn-wrap {
        margin-top: 25px !important;
    }
    .smudge-btn-wrap {
        margin-top: 25px !important;
    }

    /* 7) 썸네일/일러스트 상하 여백 통일 */
    .visual-section03 .thumb-list {
        padding-bottom: 20px !important;
    }
    .visual-section04 .s04-illust {
        padding: 20px 0 !important;
    }
    .visual-section04 .s04-illust img {
        max-width: 340px;
    }
    .visual-section02 .visual-thumb {
        margin-top: 25px !important;
    }
    .visual-section02 .list-check {
        margin-top: 25px !important;
    }
    .visual-section02 .sustainability-media-wrap {
        grid-template-rows: 220px;
        gap: 10px;
        margin-top: 30px;
    }

    /* 8) 뉴스 카드 간격 통일 */
    .newsevent-col {
        margin-bottom: 25px;
    }
    .newsevent-col .btn-wrap {
        margin-top: 15px !important;
    }
}

/* ===== 소형 모바일 반응형 (320px-479px) ===== */
@media (max-width: 479px) {
    /* Title adjustments with max-width constraints */
    .s02-line1 {
        max-width: 95%;
        margin: 0 auto;
        word-break: keep-all;
    }

    .s02-title {
        max-width: 95%;
        margin: 10px auto 0;
    }

    /* Switch to single-column layout */
    .visual-section02 .list-check {
        max-width: 85%;
        margin-top: 20px;
        gap: 8px;
    }

    .visual-section02 .list-check li {
        width: 100% !important;
        font-size: 12px;
        padding: 8px 10px 8px 28px;
        border: 1px solid #bbb;
    }

    .visual-section02 .list-check li::before {
        left: 10px;
        width: 14px;
        height: 12px;
    }
    .visual-section02 .sustainability-media-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
        gap: 8px;
        padding: 0 16px;
        margin-top: 20px;
    }
}

/* ===== 메인 배너 타이틀 반응형 처리 ===== */

/* 아주 작은 모바일 (319px 이하) - 다른 섹션과 통일 */
@media (max-width: 319px) {
    .marble-hero-title .hero-line2 {
        font-size: clamp(12px, 6vw, 30px) !important;
        letter-spacing: -0.5px;
    }

    /* Visual Section 02 ultra-narrow optimization */
    .s02-line1 {
        line-height: 1.2;
        word-break: break-word;
    }

    .s02-title {
        margin-top: 8px;
    }

    .visual-section02 .visual-desc strong {
        font-size: 20px !important;
        line-height: 1.25;
    }

    .visual-section02 .list-check {
        max-width: 90%;
        margin-top: 15px;
        gap: 6px;
    }

    .visual-section02 .list-check li {
        width: 100% !important;
        font-size: 11px;
        padding: 6px 8px 6px 24px;
        border: 1px solid #ccc;
    }

    .visual-section02 .list-check li::before {
        left: 8px;
        width: 12px;
        height: 11px;
    }
}

/* 극도로 작은 화면 (280px 이하) - 다른 섹션과 통일 */
@media (max-width: 280px) {
    .marble-hero-title .hero-line2 {
        font-size: clamp(10px, 5vw, 25px) !important;
        transform: scale(0.7);
        letter-spacing: -1px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .visual-thumb-staggered .thumb-stagger-right {
        margin-top: 25px;
        margin-bottom: -25px;
    }

    .visual-section02 .visual-desc strong,
    .visual-section04 .visual-desc strong,
    .visual-section05 .s05-title-wrap strong,
    .visual-section06 .newsevent-header-left strong {
        font-size: 36px;
    }

    .visual-section02 .visual-thumb {
        max-width: 500px;
        margin-top: 80px;
    }

    .visual-section02 .list-check {
        max-width: 500px;
        margin-top: 40px;
        gap: 15px;
    }

    .visual-section02 .list-check li {
        font-size: 18px;
        width: calc(50% - 7.5px);
    }


    .visual-section02 .btn-wrap {
        margin-top: 40px;
    }

}

@media (max-width: 1024px) {
    .visual-section03 .video-box .video {
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .visual-section03 .video-box {
        flex-direction: column;
        align-items: center;
    }

    .visual-section03 .video-box .video {
        width: 80%;
    }

    .visual-section03 .video-box .video:hover {
        transform: scale(1.05);
    }
}

/* visual-section02 3-image grid: subtitle1의 170px 하단 패딩 제거 */
.visual-section02 .sustainability-media {
    padding-bottom: 0 !important;
}

/* visual-section02 이미지 3개 사이 간격 + 폭을 카드 섹션과 동일하게 */
.visual-section02 .sustainability-media-wrap {
    gap: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* ===== brand-contact-list 통합 정리 ===== */
.brand-contact-list {
    background-color: transparent;
    padding: 20px 0 0;
}

.brand-contact-list .brand-contact-list-wrap {
    max-width: 1100px !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

.brand-contact-list ul {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.brand-contact-list ul li {
    float: none !important;
    margin: 0 !important;
    min-width: 0 !important;
    padding: 18px 14px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #002c82 !important;
    color: #fff;
    border-radius: 12px;
    overflow: visible;
    transition: transform 0.3s ease-in-out;
}

.brand-contact-list ul li .contact-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.brand-contact-list ul li:not(.brand-split-card):hover,
.brand-contact-list ul li.brand-split-card:hover {
    transform: scale(1.10);
    z-index: 10;
}

.brand-contact-list ul li:nth-child(1):hover {
    background-color: #212c3d !important;
    box-shadow: inset 0 0 0 2px #ee7624;
}

.brand-contact-list ul li:nth-child(1):hover dl {
    background-color: #212c3d !important;
}

.brand-contact-list ul li:nth-child(1):hover strong,
.brand-contact-list ul li:nth-child(1):hover p,
.brand-contact-list ul li:nth-child(1):hover h6,
.brand-contact-list ul li:nth-child(1):hover span {
    color: #ee7624 !important;
}

.brand-contact-list ul li:first-child,
.brand-contact-list ul li:last-child {
    margin: 0 !important;
}

/* 분할 카드 (2번째: 슈퍼포크 | 고원돈) */
.brand-contact-list ul li.brand-split-card {
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    flex-direction: column !important;
}

/* 기본 뷰 */
.brand-split-default {
    width: 100%;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* 호버 오버레이 */
.brand-split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.brand-split-card .s02-card-link:hover .brand-split-default {
    opacity: 0;
}

.brand-split-card .s02-card-link:hover .brand-split-overlay {
    opacity: 1;
    pointer-events: auto;
}

.brand-split-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    text-decoration: none;
    background-color: #002c82;
    transition: background-color 0.3s ease;
}

.brand-split-card .s02-card-link:hover .brand-split-half {
    background-color: #f2f2f0;
}

.brand-split-card .s02-card-link .brand-split-half:hover {
    background-color: #ede8e1;
}

.brand-split-divider {
    width: 2px;
    background-color: #ee7624;
    align-self: stretch;
}

.brand-split-logo img {
    max-width: 100%;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

.s02-cards-wrap .s02-card:nth-child(2) .brand-split-right .brand-split-logo img {
    max-height: 50px;
}

.brand-contact-list ul li .list-wrap {
    width: 100%;
}

.brand-contact-list ul li dl {
    background-color: #002c82;
    padding: 0;
}

.brand-contact-list ul li dl dt {
    margin: 0 auto;
}

.brand-contact-list ul li .thumb img {
    margin: 0 auto;
    width: 78px;
}

.brand-contact-list ul li p {
    text-align: center;
    font-size: 17px;
    padding-bottom: 15px;
    font-family: 'NotoSansKR', sans-serif;
}

.brand-contact-list ul li .btn-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

/* 태블릿 */
@media (max-width: 1024px) {
    .brand-contact-list .brand-contact-list-wrap {
        /* padding-left/right removed */
    }
    .brand-contact-list ul {
        gap: 12px !important;
    }
    .brand-contact-list ul li {
        margin: 0 !important;
    }
    .brand-contact-list ul li p {
        font-size: 15px !important;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .brand-contact-list ul {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .brand-contact-list ul li {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        padding: 18px 14px !important;
    }
    .brand-contact-list ul li p {
        font-size: 15px !important;
    }
    .brand-contact-list ul li .btn-wrap {
        height: auto !important;
        margin-bottom: 20px !important;
    }
}

/* ===== visual-section02 카드 그리드 ===== */
.s02-cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.s02-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 12px;
    overflow: visible;
    transition: transform 0.3s ease-in-out;
}

.s02-card-link:hover {
    transform: scale(1.05);
    z-index: 10;
}

.s02-card-image {
    width: 100%;
    height: 547px;
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0;
}

.s02-card-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.s02-card-link {
    flex: 1;
    padding: 18px 14px;
    background-color: #002c82;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease, box-shadow 0.3s ease;
}

.brand-split-card .s02-card-link:hover {
    background-color: #f2f2f0;
}

.brand-split-card .s02-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    pointer-events: none;
    z-index: 10;
    transition: border-color 0.3s ease;
}

.brand-split-card .s02-card-link:hover::after {
    border-color: #ee7624;
}

.s02-card-link .contact-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.s02-card-link p {
    text-align: center;
    font-size: 17px;
    padding-bottom: 15px;
    font-family: 'NotoSansKR', sans-serif;
    color: #fff;
    margin: 0;
}

.s02-card-link .thumb img {
    margin: 0 auto;
    width: 78px;
}

.s02-card-link dl {
    background-color: transparent;
    padding: 0;
}

.s02-card-link dl dt {
    margin: 0 auto;
}

/* 첫 번째 카드(산업·유통용) 호버 효과 */
.s02-card:first-child .s02-card-link:hover {
    background-color: #f2f2f0 !important;
    box-shadow: inset 0 0 0 2px #ee7624;
}

.s02-card:first-child .s02-card-link:hover p,
.s02-card:first-child .s02-card-link:hover strong,
.s02-card:first-child .s02-card-link:hover span {
    color: #ee7624 !important;
}

/* 카드1 기본 콘텐츠 → 문의하기 오버레이 전환 */
.s02-card:first-child .contact-default {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.s02-card:first-child .s02-card-link:hover .contact-default {
    opacity: 0;
}

.s02-card:first-child .contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.s02-card:first-child .s02-card-link:hover .contact-overlay {
    opacity: 1;
    pointer-events: auto;
}

.contact-overlay strong {
    font-size: 22px;
    font-weight: 700;
    font-family: 'NotoSansKR', sans-serif;
    letter-spacing: 0.05em;
}

.contact-overlay p {
    font-size: 14px;
    padding-bottom: 0;
    margin: 0;
}

/* brand-split 카드의 링크 영역은 padding 없이 오버레이가 채움 */
.s02-card.brand-split-card .s02-card-link {
    padding: 0;
}

@media (max-width: 1024px) {
    .s02-cards-wrap {
        gap: 12px;
    }
    .s02-card {
        gap: 12px;
    }
    .s02-card-link p {
        font-size: 15px;
    }
    .s02-card-image {
        height: 507px;
    }
}

@media (max-width: 768px) {
    .s02-cards-wrap {
        gap: 12px;
        padding: 0 16px;
        margin-top: 24px;
    }
    .s02-card {
        gap: 12px;
    }
    .s02-card-link {
        display: none;
    }
    .s02-card-image {
        height: 381px;
    }
}

/* 모바일 전용 물리 카드 — PC에서 숨김 */
.s02-card-mobile-link {
    display: none;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

@media (max-width: 768px) {
    /* 카드1 스타일 — hover 디자인 고정 */
    .s02-card-mobile-link--hover {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
        height: 90px;
        padding: 0 14px;
        background-color: #f2f2f0;
        position: relative;
    }
    .s02-card-mobile-link--hover::after {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid #ee7624;
        border-radius: 12px;
        pointer-events: none;
        z-index: 10;
    }
    .s02-card-mobile-link--hover strong {
        color: #ee7624;
        font-size: 15px;
        font-weight: 700;
        font-family: 'NotoSansKR', sans-serif;
        letter-spacing: 0.05em;
    }
    .s02-card-mobile-link--hover p {
        color: #ee7624;
        font-size: 12px;
        font-family: 'NotoSansKR', sans-serif;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    .s02-card-mobile-link--hover:hover,
    .s02-card-mobile-link--hover:active {
        background-color: #ede8e1;
    }

    /* 카드2·3 스타일 — brand-split hover 디자인 고정 */
    .s02-card-mobile-link--split .brand-split-divider {
        width: 1px;
    }
    .s02-card-mobile-link--split {
        display: flex;
        flex-direction: row;
        height: 90px;
        position: relative;
    }
    .s02-card-mobile-link--split::after {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid #ee7624;
        border-radius: 12px;
        pointer-events: none;
        z-index: 10;
    }
    .s02-card-mobile-link--split .brand-split-half {
        background-color: #f2f2f0;
    }
    .s02-card-mobile-link--split .brand-split-half:active {
        background-color: #ede8e1;
    }
    .s02-card-mobile-link--split .brand-split-logo img {
        max-height: 36px;
    }
    .s02-card-mobile-link--split .brand-split-right .brand-split-logo img {
        max-height: 20px;
    }
    /* 카드2 — 고원돈 480~768px */
    .s02-card:nth-child(2) .s02-card-mobile-link--split .brand-split-right .brand-split-logo img {
        max-height: 23px;
    }
    /* 카드3 — 네이버 480~768px */
    .s02-card:nth-child(3) .s02-card-mobile-link--split .brand-split-left .brand-split-logo img {
        max-height: 32px;
    }
    /* 카드3 — 마켓컬리 480~768px */
    .s02-card:nth-child(3) .s02-card-mobile-link--split .brand-split-right .brand-split-logo img {
        max-height: 44px;
    }
}

@media (max-width: 480px) {
    .s02-cards-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .s02-card {
        gap: 16px;
    }
    .s02-card-mobile-link--split .brand-split-logo img {
        max-height: 44px;
    }
    .s02-card-mobile-link--split .brand-split-right .brand-split-logo img {
        max-height: 15px;
    }
    /* 카드2 — 고원돈 */
    .s02-card:nth-child(2) .s02-card-mobile-link--split .brand-split-right .brand-split-logo img {
        max-height: 28px;
    }
    /* 카드3 — 네이버·마켓컬리 */
    .s02-card:nth-child(3) .s02-card-mobile-link--split .brand-split-left .brand-split-logo img {
        max-height: 38px;
    }
    .s02-card:nth-child(3) .s02-card-mobile-link--split .brand-split-right .brand-split-logo img {
        max-height: 44px;
    }
}


/* ===== visual-section02 타이틀 ===== */
.pretendard-bold {
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 900;
}

.visual-section02 .visual-desc strong,
.visual-section04 .visual-desc strong,
.visual-section05 .s05-title-wrap strong,
.visual-section06 .newsevent-header-left strong {
    font-size: 50px;
    color: #002f86;
    letter-spacing: 0;
    white-space: normal;
    word-break: keep-all;
    display: block;
    line-height: 1.15;
    position: relative;
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 900;
    text-align: center;
}

.s02-line1 {
    font-size: clamp(20px, 5vw, 60px);
    color: #002f86;
}

.s02-title {
    font-size: clamp(24px, 6vw, 70px);
    color: #e87622;
    display: block;
}

.visual-section05 .s02-title,
.visual-section06 .s02-title {
    font-family: 'NotoSansKR', sans-serif;
}

.visual-section05 .s02-title {
    font-size: clamp(20px, 5vw, 60px);
}

.visual-section06 .s02-line1 {
    color: #ffffff;
}

.visual-section06 .s02-title {
    font-size: clamp(20px, 5vw, 60px);
}

/* visual-section02 "프리미엄 돈육" 타이틀 전용 NotoSansKR 폰트 */
.visual-section02 .s02-title {
    font-family: 'NotoSansKR', sans-serif;
    font-size: clamp(20px, 5vw, 60px);
}

/* ===== section04 라인별 스타일 ===== */
.visual-section04 .visual-desc strong .s04-line2 {
    font-size: clamp(20px, 5vw, 60px);
    white-space: nowrap;
    color: #e87622;
    font-family: 'NotoSansKR', sans-serif;
}


/* ===== section03-top-banner 2번째 줄 ===== */
.section03-top-banner .s03-line:nth-child(2) {
    margin-top: 8px;
}

/* ===== visual-section05 ===== */
.visual-section05 {
    background: #fff !important;
}

/* 타이틀 */
.s05-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.s05-title {
    font-size: 60px;
    display: block;
    color: #002f86;
}

/* 설명 + 이미지 가로 배치 */
.s05-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.s05-desc {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 60px 20px 20px;
}

.s05-desc img {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.s05-thumb {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 20px 20px 60px;
}

.s05-thumb img {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.s05-caption {
    text-align: center;
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.s05-caption p {
    font-family: 'NotoSansKR', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #002f86;
    line-height: 1.6;
}

/* 버튼 하단 가운데 */
.visual-section05 .btn-wrap {
    text-align: center;
    margin-top: 40px;
    float: none !important;
    width: 100% !important;
    margin-right: 0 !important;
}

.visual-section05 .visual-section-inner {
    overflow: visible;
}

.visual-section05 .smudge-btn {
    margin-left: 0;
}

/* 태블릿 */
@media (min-width: 769px) and (max-width: 1024px) {
    .s05-title {
        font-size: 46px;
    }

    .s05-content {
        padding: 0 20px;
    }

    .s05-desc p {
        font-size: 22px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .flip_holderr {
        width: 100%;
        align-items: center;
    }

    .hero-subtitle {
        white-space: normal;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .s05-title-wrap {
        margin-bottom: 30px;
    }

    .visual-section05 .s02-title {
        font-size: 28px;
    }
    .visual-section05 .s02-line1 {
        font-size: 18px;
    }

    .s05-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }

    .s05-desc,
    .s05-thumb {
        justify-content: center;
        padding: 0;
    }

    .s05-desc p {
        font-size: 18px;
        text-align: center;
    }

    .s05-caption p {
        font-size: 16px;
    }

    .s05-desc img,
    .s05-thumb img {
        max-width: 140px;
    }
}

/* ===== visual-section06 블로그 영역 ===== */
.visual-section06 {
    padding: 80px 0;
    background-color: #002f86;
}

.visual-section06 .visual-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.visual-section06 .magazine-list {
    padding-top: 0;
}

@media (max-width: 768px) {
    .visual-section06 .magazine-list .newsevent-row {
        flex-direction: column;
        justify-content: center;
        padding: 0 15px !important;
        gap: 15px !important;
    }
    .visual-section06 .magazine-list .newsevent-col {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
    .visual-section06 .visual-section-inner {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .visual-section06 .newsevent-col {
        margin-bottom: 0 !important;
    }
}

.newsevent-area {
    position: relative;
}

.newsevent-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.newsevent-header-left {
    width: 100%;
    text-align: center;
}

.newsevent-header-left h5 {
    font-size: 14px;
    font-weight: 600;
    color: #e87722;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.newsevent-header-left h2 {
    font-size: 60px;
    line-height: 1.2;
    color: #002f86;
}

.newsevent-header-left h2 .accent {
    color: #e87722;
    font-size: 48px;
}

.newsevent-row {
    display: flex;
    gap: 30px;
}

.newsevent-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.single-post2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.single-post2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.newsevent-thumb2 {
    overflow: hidden;
}

.newsevent-thumb2 img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.newsevent-thumb2:hover img {
    transform: scale(1.05);
}

.newsevent-content2 {
    padding: 25px;
    font-family: 'NotoSansKR', sans-serif;
}

.b-meta ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.b-meta ul li {
    font-size: 16px;
    color: #e87722;
    font-weight: 700;
}

.b-meta ul li i {
    margin-right: 5px;
    color: #e87722;
}

.newsevent-content2 h4 {
    margin-bottom: 12px;
    line-height: 1.4;
}

.newsevent-content2 h4 a {
    font-size: 22px;
    font-weight: 700;
    color: #002f86;
    text-decoration: none;
    transition: color 0.3s ease;
}

.newsevent-content2 h4 a:hover {
    color: #e87722;
}

.newsevent-content2 p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ===== newsevent-col 버튼 ===== */
.newsevent-col .btn-wrap {
    margin-top: 40px;
}

.newsevent-col .smudge-btn {
    padding: 14px 50px;
}

@media (max-width: 1024px) {
    .newsevent-row {
        gap: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .newsevent-content2 {
        padding: 16px;
    }
    .newsevent-content2 h4 a {
        font-size: 18px;
    }
    .b-meta ul {
        gap: 10px;
        margin-bottom: 10px;
    }
    .newsevent-header-left h2 {
        font-size: clamp(32px, 5vw, 60px);
    }
}

@media (max-width: 768px) {
    .newsevent-header {
        flex-direction: column;
        align-items: center;
    }

    .newsevent-row {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .newsevent-col {
        width: 100%;
    }

    /* 국내유통 브랜드 페이지 타이틀 좌우 여백 */
    h2[data-modified="brand-new-subtitle"] {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
