@charset "utf-8";
/* ========================================
   NETWORK1 - 전체배경 풀스크린 + inner 안 글씨 영역
   moodu/index.html .temhafull2-N8 디자인 이식
   모든 선택자는 .NETWORK1 (스킨 폴더명) 으로 스코핑
======================================== */

.NETWORK1 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--nw1-pad-t, 110px);
    padding-bottom: var(--nw1-pad-b, 110px);
    background-color: var(--nw1-bg-color, #0a0a0a);
    background-image: var(--nw1-bg-img, none);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-sizing: border-box;
}

/* 배경 위 어두운 오버레이 */
.NETWORK1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--nw1-overlay, 0));
    pointer-events: none;
    z-index: 0;
}

/* 배경 인라인 편집 핫스팟 (관리자에게만 보임) */
.NETWORK1 .nw1-bg-edit {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.5);
    border: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    cursor: pointer;
}
.NETWORK1 .nw1-bg-edit::after {
    content: "BG";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

/* 글씨 영역 inner 컨테이너 */
.NETWORK1 .contents-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.NETWORK1 .contents-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
    gap: 40px;
}

/* 좌측 라벨 */
.NETWORK1 .contents-title {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 300px;
}
.NETWORK1 .contents-title .h6,
.NETWORK1 .nw1-label {
    color: #fff;
    font-size: clamp(14px, calc(0.16vw + 13.5px), 16px);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
}

/* 우측 본문 */
.NETWORK1 .contents-body {
    width: 100%;
    overflow: hidden;
}
.NETWORK1 .contents-body > .textset {
    margin-bottom: 80px;
}

.NETWORK1 .textset .textset-tit,
.NETWORK1 .textset .h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--nw1-title, #ffffff);
    font-size: clamp(28px, calc(2.34vw + 20.5px), 56px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.NETWORK1 .textset .textset-tit + .textset-desc {
    margin-top: 24px;
}
.NETWORK1 .textset .textset-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--nw1-desc, #d8d8d8);
    font-size: clamp(15px, calc(0.23vw + 14px), 18px);
    line-height: 1.6;
    margin: 0;
}

/* 정보 리스트 */
.NETWORK1 .contents-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.NETWORK1 .contents-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.NETWORK1 .contents-info-item + .contents-info-item {
    margin-top: 8px;
}
.NETWORK1 .contents-info-tit {
    flex-shrink: 0;
    width: 240px;
    color: var(--nw1-label, #919197);
    font-size: clamp(15px, calc(0.23vw + 14px), 18px);
    font-weight: 500;
    margin: 0;
}
.NETWORK1 .contents-info-text {
    color: var(--nw1-desc, #d8d8d8);
    font-size: clamp(15px, calc(0.23vw + 14px), 18px);
    text-decoration: none;
    margin: 0;
}
.NETWORK1 a.contents-info-text:hover {
    color: var(--nw1-title, #fff);
    text-decoration: underline;
}

/* 파트너 로고 영역 (맨 하단 가로 배열) */
.NETWORK1 .nw1-partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    color: #fff;
}
.NETWORK1 .nw1-partner-logos a,
.NETWORK1 .nw1-partner-logos > img {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    font-size: clamp(15px, calc(0.23vw + 14px), 18px);
    font-weight: 500;
    white-space: nowrap;
}
.NETWORK1 .nw1-partner-logos a {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
    padding-bottom: 4px;
}
.NETWORK1 .nw1-partner-logos a:hover {
    opacity: 0.8;
    border-bottom-color: #fff;
}
.NETWORK1 .nw1-partner-logos img {
    height: auto;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: opacity 0.25s ease;
}
.NETWORK1 .nw1-partner-logos a:hover img {
    opacity: 0.8;
}

/* 인라인 편집 호버 */
.NETWORK1 .wg_edit_txt:hover,
.NETWORK1 .wg_edit_img:hover,
.NETWORK1 .wg_edit_link:hover,
.NETWORK1 .nw1-bg-edit:hover {
    outline: 2px dashed rgba(0, 200, 150, 0.7);
    outline-offset: 2px;
}
.NETWORK1 .nw1-link-edit {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: rgba(0, 200, 150, 0.3);
    border: 1px dashed rgba(0, 200, 150, 0.7);
    border-radius: 4px;
    cursor: pointer;
}

/* 반응형 */
@media (max-width: 1280px) {
    .NETWORK1 .contents-title {
        width: 200px;
    }
}

@media (max-width: 992px) {
    .NETWORK1 {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    .NETWORK1 .contents-inner {
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
    }
    .NETWORK1 .contents-title {
        width: 100%;
        margin-bottom: 0;
    }
    .NETWORK1 .contents-body > .textset {
        margin-bottom: 50px;
    }
    .NETWORK1 .textset .textset-tit + .textset-desc {
        margin-top: 16px;
    }
    .NETWORK1 .textset .textset-desc {
        -webkit-line-clamp: 4;
    }
    .NETWORK1 .contents-info-item {
        flex-wrap: wrap;
        gap: 4px;
    }
    .NETWORK1 .contents-info-item + .contents-info-item {
        margin-top: 16px;
    }
    .NETWORK1 .contents-info-tit {
        width: 100%;
    }
    .NETWORK1 .nw1-partner-logos {
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    .NETWORK1 .nw1-partner-logos img {
        height: auto;
        max-width: 100%;
    }
}
