/* ===== 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');

@font-face {
    font-family: 'S-CoreDream';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-9Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

/* ===== Agrosuper 사이트 폰트 ===== */
@font-face {
    font-family: "Draft text";
    src: url("/static/common/font/DraftB-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Draft text";
    src: url("/static/common/font/DraftB-RegularIta.ttf") format("truetype");
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: "Draft text";
    src: url("/static/common/font/DraftB-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Draft";
    src: url("/static/common/font/DraftNaturalHiResH-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Draft";
    src: url("/static/common/font/DraftNaturalH-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Draft";
    src: url("/static/common/font/DraftNaturalH-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
}

/* ===== 마블 히어로 섹션 ===== */
.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: 1;
}

.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 {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.marble-hero-title .hero-line1 {
    font-family: 'S-CoreDream', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 60px;
    line-height: 1.15;
    display: block;
    color: #002c82;
    position: relative;
}

.marble-hero-title .hero-line1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/static/images/new-img/bg-white-grain-trans.png) repeat;
    background-size: 200px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.9;
}

.marble-hero-title .hero-line2 {
    font-family: 'DDANGS', 'GodoM', "Draft text", 'S-CoreDream', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(16px, 7vw, 70px);
    line-height: 1;
    display: block;
    position: relative;
    top: 0;
    z-index: 2;
    color: #e87622;
    margin: 5px 0 15px;
    text-shadow: 1px 1px 2px rgba(232, 118, 34, 0.3);
    -webkit-text-stroke: 0.5px #e87622;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    overflow: visible;
}

.marble-hero-title .hero-line2::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/static/images/new-img/bg-white-grain-trans.png) repeat;
    background-size: 200px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.9;
}

.marble-hero-title .hero-line3 {
    font-family: 'S-CoreDream', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 1;
    display: block;
    color: #002c82;
    position: relative;
    top: 0;
}

.marble-hero-title .hero-line3::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/static/images/new-img/bg-white-grain-trans.png) repeat;
    background-size: 200px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.9;
}

/* ===== 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: 'S-CoreDream', sans-serif;
    font-size: 18px;
    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: 60px;
    display: block;
    line-height: 1.15;
    position: relative;
    font-family: 'S-CoreDream', sans-serif;
    font-weight: 900;
    background: url(/static/images/new-img/bg-white-grain-trans.png) repeat, #002f86;
    background-size: 200px, auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.visual-section04 .s04-title {
    font-size: 60px;
    display: block;
    margin-top: 5px;
    background: url(/static/images/new-img/bg-white-grain-trans.png) repeat, #e87622;
    background-size: 200px, auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.visual-section04 .s04-subtitle {
    font-family: 'S-CoreDream', sans-serif;
    font-size: 70px;
    font-weight: 700;
    font-style: italic;
    margin-top: 5px;
    display: block;
    letter-spacing: 0.05em;
    background: url(/static/images/new-img/bg-white-grain-trans.png) repeat, #e87622;
    background-size: 200px, auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.visual-section04 .s04-illust {
    padding: 80px 0 0;
    text-align: center;
}

.visual-section04 .s04-illust img {
    max-width: 700px;
    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: 'S-CoreDream', sans-serif;
    font-style: italic;
    font-size: 60px;
    color: #e87622;
    line-height: 1;
    font-weight: 700;
    align-self: flex-start;
    margin-right: 2px;
    margin-top: -5px;
    -webkit-mask-image: url('/static/images/new-img/bg-white-grain1-trans.png');
    -webkit-mask-size: 10px;
    -webkit-mask-repeat: repeat;
    mask-image: url('/static/images/new-img/bg-white-grain1-trans.png');
    mask-size: 10px;
    mask-repeat: repeat;
}

.s04-quote-close {
    font-family: 'S-CoreDream', sans-serif;
    font-style: italic;
    font-size: 60px;
    color: #e87622;
    line-height: 1;
    font-weight: 700;
    align-self: flex-end;
    margin-left: 2px;
    margin-bottom: -5px;
    -webkit-mask-image: url('/static/images/new-img/bg-white-grain1-trans.png');
    -webkit-mask-size: 10px;
    -webkit-mask-repeat: repeat;
    mask-image: url('/static/images/new-img/bg-white-grain1-trans.png');
    mask-size: 10px;
    mask-repeat: repeat;
}

.s04-quad-text {
    font-family: 'S-CoreDream', sans-serif;
    font-style: italic;
    font-size: 60px;
    font-weight: 700;
    color: #002f86;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    -webkit-mask-image: url('/static/images/new-img/bg-white-grain1-trans.png');
    -webkit-mask-size: 10px;
    -webkit-mask-repeat: repeat;
    mask-image: url('/static/images/new-img/bg-white-grain1-trans.png');
    mask-size: 10px;
    mask-repeat: repeat;
}

/* 중대형 화면 (1024px ~ 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .s04-quote-open,
    .s04-quote-close {
        font-size: 52px;
    }

    .s04-quad-text {
        font-size: 52px;
    }

    .section03-top-banner .s03-line {
        font-size: 52px;
    }

    .section03-top-banner .s03-title {
        font-size: 60px;
    }

    .s02-line1 {
        font-size: 52px;
    }

    .visual-section02 .visual-desc strong .s02-title,
    .visual-section04 .visual-desc strong .s02-title {
        font-size: 60px;
    }

    .visual-section04 .s04-heading {
        font-size: 52px;
    }

    .visual-section04 .s04-title {
        font-size: 52px;
    }

    .visual-section04 .visual-desc strong .s04-line2 {
        font-size: clamp(20px, 5.5vw, 60px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .s04-pig-img {
        max-width: 250px;
    }

    .s04-quote-open,
    .s04-quote-close {
        font-size: 48px;
    }

    .s04-quad-text {
        font-size: 48px;
    }

    .section03-top-banner .s03-line {
        font-size: 48px;
    }

    .section03-top-banner .s03-title {
        font-size: 56px;
    }

    .s02-line1 {
        font-size: 48px;
    }

    .visual-section02 .visual-desc strong .s02-title,
    .visual-section04 .visual-desc strong .s02-title {
        font-size: 56px;
    }

    .visual-section04 .s04-heading {
        font-size: 48px;
    }

    .visual-section04 .s04-title {
        font-size: 48px;
    }

    .visual-section03 .thumb-list ul li .thumb {
        width: 100px !important;
        height: 100px !important;
        padding: 0 !important;
    }

    .visual-section04 .s04-illust img {
        max-width: 560px;
    }

    .visual-section04 .visual-desc strong .s04-line2 {
        font-size: clamp(18px, 5vw, 56px);
    }
}

@media (max-width: 768px) {
    .s04-pig-img {
        max-width: 180px;
    }

    .s04-quote-open,
    .s04-quote-close {
        font-size: 36px;
    }

    .s04-quad-text {
        font-size: 36px;
    }

    .section03-top-banner .s03-line {
        font-size: 36px;
    }

    .section03-top-banner .s03-title {
        font-size: 42px;
    }

    .s02-line1 {
        font-size: 36px;
    }

    .visual-section02 .visual-desc strong .s02-title,
    .visual-section04 .visual-desc strong .s02-title {
        font-size: 42px;
    }

    .visual-section04 .s04-heading {
        font-size: 36px;
    }

    .visual-section04 .s04-title {
        font-size: 36px;
    }

    .visual-section04 .visual-desc strong .s04-line2 {
        font-size: clamp(16px, 4.5vw, 42px);
    }
}

/* ===== visual-section 버튼 ===== */
.visual-section01 .smudge-btn {
    margin-left: 10px;
    margin-top: 10px;
}

.visual-section02 {
    background: transparent !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: 800px;
    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;
}

.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: 60px;
    position: relative;
    background-color: #fff;
    background-image: url(/static/images/new-img/bg-dark-grain-trans.png);
    background-size: 200px;
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section03-top-banner .s03-title {
    display: block;
    line-height: 1;
    position: relative;
    margin-top: 15px;
    font-size: 70px;
    font-weight: 900;
    background-color: #e87622;
    background-image: url(/static/images/new-img/bg-white-grain-trans.png);
    background-size: 200px;
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.s03-sub-desc {
    color: #fff;
    font-family: 'S-CoreDream', sans-serif;
    font-size: 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 {
        font-size: 18px;
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .s03-sub-desc {
        font-size: 14px;
        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: 'S-CoreDream', 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.3);
    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: 'S-CoreDream', sans-serif;
    font-weight: 900;
    font-size: 100px;
    line-height: 1;
    text-align: center;
    margin-top: 0;
    background-color: #e87622;
    background-image: url(/static/images/new-img/bg-white-grain-trans.png);
    background-size: 200px;
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.visual-section03 ul li span.video-stack-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'S-CoreDream', sans-serif;
    font-weight: 700;
    font-size: 34px;
    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: 90px;
    }
    .visual-section03 ul li span.video-stack-label {
        font-size: 30px;
    }
    .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: 80px;
    }
    .visual-section03 ul li span.video-stack-label {
        font-size: 26px;
    }
    .visual-section03 .thumb-list ul li .thumb {
        width: 60px !important;
        height: 60px !important;
        padding: 0 !important;
    }
    .visual-section04 .s04-illust img {
        max-width: 350px;
    }

}

.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;
}

.visual-thumb-staggered .thumb-stagger-right {
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: -30px;
}

.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 !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: 80px !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: 80px;
    }

    /* 기존 타이틀 반응형 처리는 위의 세분화된 처리로 대체됨 */

    .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;
    }

    .visual-thumb-staggered .thumb-stagger-right {
        border-radius: 5px;
        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 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .s02-line1 {
        font-size: 30px !important;
    }

    .visual-section02 .visual-desc strong .s02-title,
    .visual-section04 .visual-desc strong .s02-title {
        font-size: 35px !important;
    }

    .visual-section04 .visual-desc strong .s04-line2 {
        font-size: clamp(14px, 4vw, 35px) !important;
    }

    .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 12px 10px 30px;
    }

    .visual-section02 .list-check li::before {
        left: 12px;
        width: 22px;
        height: 20px;
    }

    .visual-section02 .btn-wrap {
        margin-top: 30px !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;
    }

    .section03-top-banner .s03-line {
        font-size: 30px !important;
    }

    .section03-top-banner .s03-title {
        font-size: 35px !important;
    }

    .visual-section03 {
        height: auto !important;
    }

    .visual-section04 {
        padding-bottom: 0;
    }

    .visual-section04 .visual-desc div {
        font-size: 28px !important;
    }

    .visual-section04 .visual-desc div .s04-title {
        font-size: 34px !important;
        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 !important;
    }
    .visual-section06 {
        padding: 0 !important;
    }
    .brand-contact-list .brand-contact-list-wrap {
        padding: 0px 20px 45px !important;
    }
    .marble-hero {
        padding: 45px 15px 80px !important;
    }

    /* 2) 타이틀 폰트 통일: 메인 24px / 강조 30px / Pretendard */
    .visual-section02 .visual-desc strong,
    .visual-section04 .visual-desc strong {
        font-size: 24px !important;
    }
    .s02-line1 {
        font-size: 30px !important;
    }

    .visual-section02 .visual-desc strong .s02-title,
    .visual-section04 .visual-desc strong .s02-title {
        font-size: 35px !important;
    }
    .visual-section04 .visual-desc strong .s04-line2 {
        font-size: clamp(14px, 4vw, 35px) !important;
    }
    .section03-top-banner .s03-line {
        font-size: 30px !important;
    }
    .section03-top-banner .s03-title {
        font-size: 35px !important;
    }
    .visual-section04 .visual-desc div {
        font-size: 24px !important;
    }
    .visual-section04 .visual-desc div .s04-title {
        font-size: 36px !important;
        margin-top: 8px;
    }
    .visual-section05 .s05-title {
        font-size: 30px !important;
    }
    .visual-section06 .newsevent-header-left h2 {
        font-size: 30px !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 / S-CoreDream */
    .visual-section .visual-desc p,
    .s03-sub-desc,
    .visual-section05 .s05-desc p,
    .brand-contact-list p {
        font-size: 15px !important;
        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 32px 패딩 / 14px 폰트 */
    .smudge-btn {
        padding: 12px 32px !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: 450px;
    }
    .visual-section02 .visual-thumb {
        margin-top: 25px !important;
    }
    .visual-section02 .list-check {
        margin-top: 25px !important;
    }

    /* 8) 뉴스 카드 간격 통일 */
    .newsevent-col {
        margin-bottom: 25px;
    }
    .newsevent-col .btn-wrap {
        margin-top: 15px !important;
    }
}

/* ===== 메인 배너 타이틀 반응형 처리 ===== */

/* 대형 화면 (1200px 이상) - 다른 섹션과 통일 */
@media (min-width: 1200px) {
    .marble-hero-title .hero-line1 {
        font-size: 60px;
    }

    .marble-hero-title .hero-line2 {
        /* font-size는 clamp()로 자동 조정됨 */
        transform: scale(1);
    }

    .marble-hero-title .hero-line3 {
        font-size: 60px;
    }
}

/* 중대형 화면 (1024px ~ 1199px) - 다른 섹션과 통일 */
@media (min-width: 1024px) and (max-width: 1199px) {
    .marble-hero-title .hero-line1 {
        font-size: 60px;
    }

    .marble-hero-title .hero-line2 {
        /* font-size는 clamp()로 자동 조정됨 */
        transform: scale(1);
        margin: 4px 0 12px;
    }

    .marble-hero-title .hero-line3 {
        font-size: 52px;
    }
}

/* 태블릿 (769px ~ 1023px) - 다른 섹션과 통일 */
@media (min-width: 769px) and (max-width: 1023px) {
    .marble-hero-title .hero-line1 {
        font-size: 46px;
    }

    .marble-hero-title .hero-line2 {
        /* font-size는 clamp()로 자동 조정됨 */
        transform: scale(0.95);
        margin: 3px 0 10px;
        transform-origin: center;
    }

    .marble-hero-title .hero-line3 {
        font-size: 48px;
    }
}

/* 작은 태블릿 (480px ~ 768px) - 다른 섹션과 통일 */
@media (min-width: 480px) and (max-width: 768px) {
    .marble-hero-title .hero-line1 {
        font-size: 30px;
    }

    .marble-hero-title .hero-line2 {
        /* font-size는 clamp()로 자동 조정됨 */
        transform: scale(0.9);
        margin: 2px 0 8px;
        transform-origin: center;
    }

    .marble-hero-title .hero-line3 {
        font-size: 38px;
    }
}

/* 모바일 (320px ~ 479px) - 다른 섹션과 통일 */
@media (min-width: 320px) and (max-width: 479px) {
    .marble-hero-title .hero-line1 {
        font-size: 30px;
    }

    .marble-hero-title .hero-line2 {
        /* font-size는 clamp()로 자동 조정됨 */
        transform: scale(0.85);
        margin: 1px 0 6px;
        transform-origin: center;
    }

    .marble-hero-title .hero-line3 {
        font-size: 34px;
    }
}

/* 아주 작은 모바일 (319px 이하) - 다른 섹션과 통일 */
@media (max-width: 319px) {
    .marble-hero-title .hero-line1 {
        font-size: 30px;
    }

    .marble-hero-title .hero-line2 {
        /* font-size는 clamp()로 자동 조정되지만 추가 스케일링 적용 */
        font-size: clamp(12px, 6vw, 30px) !important;
        transform: scale(0.75);
        margin: 1px 0 5px;
        transform-origin: center;
        letter-spacing: -0.5px;
    }

    .marble-hero-title .hero-line3 {
        font-size: 32px;
    }
}

/* 극도로 작은 화면 (280px 이하) - 다른 섹션과 통일 */
@media (max-width: 280px) {
    .marble-hero-title .hero-line1 {
        font-size: 26px;
    }

    .marble-hero-title .hero-line2 {
        font-size: clamp(10px, 5vw, 25px) !important;
        transform: scale(0.7);
        letter-spacing: -1px;
    }

    .marble-hero-title .hero-line3 {
        font-size: 28px;
    }
}

@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 {
        font-size: 36px;
    }

    .visual-section02 .visual-desc strong .s02-title,
    .visual-section04 .visual-desc strong .s02-title {
        font-size: 46px;
    }

    .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);
    }
}

/* ===== brand-contact-list 통합 정리 ===== */
.brand-contact-list {
    background-color: transparent;
}

.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: flex !important;
    flex-direction: row !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.brand-contact-list ul li {
    flex: 1 1 0 !important;
    float: none !important;
    margin: 0 8px !important;
    padding: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background-color: #002c82 !important;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.brand-contact-list ul li:first-child {
    margin-left: 0 !important;
}

.brand-contact-list ul li:last-child {
    margin-right: 0 !important;
}

.brand-contact-list ul li .list-wrap {
    width: 100%;
}

.brand-contact-list ul li dl {
    background-color: #002c82;
}

.brand-contact-list ul li dl dt {
    margin: 0 auto;
}

.brand-contact-list ul li .thumb img {
    margin: 0 auto;
    width: 72px;
    height: 82px;
}

.brand-contact-list ul li p {
    text-align: center;
    font-size: 18px;
}

.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 li {
        margin: 0 5px !important;
    }
    .brand-contact-list ul li p {
        font-size: 15px !important;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .brand-contact-list ul {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }
    .brand-contact-list ul li {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 !important;
        flex: none !important;
        padding: 20px 15px 0 !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 타이틀 ===== */
.pretendard-bold {
    font-family: 'S-CoreDream', sans-serif;
    font-weight: 900;
}

.visual-section02 .visual-desc strong,
.visual-section04 .visual-desc 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: 'S-CoreDream', sans-serif;
    font-weight: 900;
}

.s02-line1 {
    font-size: 60px;
    background-color: #002f86;
    background-image: url(/static/images/new-img/bg-white-grain-trans.png);
    background-size: 200px;
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.visual-section02 .visual-desc strong .s02-title,
.visual-section04 .visual-desc strong .s02-title {
    font-size: 70px;
    background-color: #e87622;
    background-image: url(/static/images/new-img/bg-white-grain-trans.png);
    background-size: 200px;
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 15px;
}

/* ===== section04 라인별 스타일 ===== */
.visual-section04 .visual-desc strong .s04-line2 {
    font-size: clamp(24px, 6vw, 70px);
    white-space: nowrap;
    background-color: #e87622;
    background-image: url(/static/images/new-img/bg-white-grain-trans.png);
    background-size: 200px;
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ===== 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;
    background-color: #002f86;
    background-image: url(/static/images/new-img/bg-white-grain-trans.png);
    background-size: 200px;
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* 설명 + 이미지 가로 배치 */
.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: center;
}

.s05-desc p {
    font-family: 'S-CoreDream', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
}

.s05-thumb {
    flex: 1;
    min-width: 0;
}

.s05-thumb img {
    width: 100%;
    display: block;
}

/* 버튼 하단 가운데 */
.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;
}

/* visual-section05 버튼 스타일은 공통 스타일에서 처리됨 */

/* 태블릿 */
@media (min-width: 769px) and (max-width: 1024px) {
    .s05-title {
        font-size: 46px;
    }

    .s05-content {
        gap: 0;
        padding: 0 20px;
    }

    .s05-desc p {
        font-size: 22px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .s05-title-wrap {
        margin-bottom: 30px;
    }

    .s05-title {
        font-size: 30px;
    }

    .s05-content {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }

    .s05-desc {
        text-align: center;
    }

    .s05-desc p {
        font-size: 18px;
    }

    .visual-section05 .btn-wrap {
        margin-top: 30px;
    }
}

/* ===== visual-section06 블로그 영역 ===== */
.visual-section06 {
    padding: 80px 0;
    background-color: #f4f2f0;
}

.visual-section06 .visual-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.newsevent-area {
    position: relative;
}

.newsevent-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.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;
    background-color: #002f86;
    background-image: url(/static/images/new-img/bg-white-grain-trans.png);
    background-size: 200px;
    background-blend-mode: overlay;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.newsevent-header-left h2 .accent {
    color: #e87722;
    font-size: 48px;
}

.newsevent-row {
    display: flex;
    gap: 30px;
}

.newsevent-col {
    flex: 1;
    width: 370px;
}

.single-post2 {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-post2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.newsevent-thumb2 {
    overflow: hidden;
}

.newsevent-thumb2 img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.newsevent-thumb2:hover img {
    transform: scale(1.05);
}

.newsevent-content2 {
    padding: 25px;
}

.b-meta ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.b-meta ul li {
    font-size: 13px;
    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;
    height: 55px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.newsevent-content2 h4 a {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    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: 768px) {
    .newsevent-header {
        flex-direction: column;
        align-items: center;
    }

    .newsevent-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .newsevent-thumb2 img {
        height: 200px;
    }
}
