.company_inner_cont {
    padding: 400px 0 0;
    min-width: var(--content-max);
    width: 100%;
    position: relative;
}

.company_sub_nav {
    padding-left: 150px;
    display: flex;
    align-items: center;
    min-width: var(--container-max);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
}

.company_content_cont {
    margin-top: 150px;
    min-width: var(--container-max);
    width: 100%;
}

.panel_cont {
    padding-bottom: 200px;
}

.panel {
    position: relative;
    margin: 0 auto;
    max-width: var(--container-max);
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* 탭 바 */
.company_sub_nav .tabs {
    display: flex;
    align-items: center;
    gap: var(--tab-gap);
    overflow-x: auto; /* 좁은 화면에서 가로 스크롤 */
    padding-bottom: 2px; /* 하단 보더 안겹치게 미세 여백 */
    scroll-snap-type: x proximity; /* 스크롤 스냅(선택) */
    font-size: 15px;
}

.tabs {
    display: flex;
    gap: 30px;
    position: relative;
}

.tab-btn {
    position: relative;
    padding: var(--tab-pad-y) var(--tab-pad-x);
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    color: white;
    font-size: 20px;
    line-height: 1.2;
    min-height: 44px;
    cursor: pointer;
    white-space: nowrap;
    opacity: 0.5;
}

/* 버튼 뒤에 구분선 */
/*.tab-btn:not(:last-child)::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    right: -8px; !* gap 절반 *!*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    width: 1px;*/
/*    height: 1.2em;*/
/*    background: white;*/
/*}*/

.tab-btn.active, .tab-btn:hover {
    opacity: 1;
    font-weight: 700;
}

/* Skin Booster 전용 드롭다운 레이아웃 */
.tab-item.skin-with-sub {
    position: relative;
}

.tab-item.skin-with-sub .sub-tabs {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 240px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
    display: none; /* 기본 숨김 */
    z-index: 30;
}

.tab-item.skin-with-sub .sub-tab-btn {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.tab-item.skin-with-sub .sub-tab-btn:hover,
.tab-item.skin-with-sub .sub-tab-btn.active {
    background: rgba(0, 0, 0, .5);
}

/* === hover 시 드롭다운 노출 === */
.tab-item.skin-with-sub:hover .sub-tabs {
    display: block;
}

/* 좁은 화면에서 드롭다운이 가려지지 않게 */
@media (max-width: 1024px) {
    .tab-item.skin-with-sub .sub-tabs {
        left: 0;
        right: auto;
    }
}

/* 기본: 데스크탑에서는 드롭다운이 탭 바 밖으로 떠야 하므로 overflow 보이게 */
@media (hover: hover) and (pointer: fine) {
    .company_sub_nav {
        overflow: visible;
    }

    /* 혹시 몰라 상위도 열어둠 */
    .company_sub_nav .tabs {
        overflow: visible;
    }

    /* ← 핵심! 스크롤 막기 */
    .tab-item.skin-with-sub {
        position: relative;
    }

    /* 기준점 */
    .tab-item.skin-with-sub .sub-tabs {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        display: none;
        min-width: 240px;
        padding: 8px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
        z-index: 30; /* 탭 바 위로 */
        white-space: nowrap; /* 줄바꿈 방지 */
    }

    .tab-item.skin-with-sub:hover .sub-tabs {
        display: block;
    }
}

/* 모바일/태블릿: 가로 스크롤 유지 + 클릭/탭으로 열고 닫기 */
@media (max-width: 1024px) {
    .company_sub_nav .tabs {
        overflow-x: auto;
    }

    /* 기존 동작 유지 */
    .tab-item.skin-with-sub .sub-tabs {
        position: static; /* 흐름 안에서 아래로 */
        display: none;
        margin-top: 8px;
    }

    .tab-item.skin-with-sub.open .sub-tabs {
        display: block;
    }
}

@media (hover: hover) and (pointer: fine) {
    .company_sub_nav, .company_sub_nav .tabs {
        overflow: visible;
    }

    .tab-item.skin-with-sub .sub-tabs {
        position: absolute;
        top: 100%; /* 버튼 바로 아래에 붙임 — margin으로 띄우지 않음 */
        left: 0;
        min-width: 240px;
        padding: 8px;
        border-radius: 12px;
        background: rgba(113, 113, 113, .5);
        backdrop-filter: blur(4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
        z-index: 30;
        /* 부드러운 오픈/클로즈 */
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity .12s ease, transform .12s ease, visibility .12s ease;
    }

    /* 버튼 또는 서브메뉴 위에 있으면 계속 열려있게: 래퍼에 hover */
    .tab-item.skin-with-sub:hover .sub-tabs {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* --- 핵심: hover 브리지(보이지 않는 영역)로 틈 메우기 --- */
    .tab-item.skin-with-sub::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 10px; /* 버튼과 서브메뉴 사이를 메워 hover 끊김 방지 */
        /* 투명 영역이라 시각적 변화 없음 */
    }

    /* 서브 아이템 스타일 */
    .tab-item.skin-with-sub .sub-tab-btn {
        display: block;
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 14px;
        padding: 10px 12px;
        border-radius: 8px;
        cursor: pointer;
        white-space: nowrap;
    }

    .tab-item.skin-with-sub .sub-tab-btn:hover,
    .tab-item.skin-with-sub .sub-tab-btn.active {
        background: rgba(0, 0, 0, .5);
    }
}

/* 모바일/터치: 기존처럼 탭하면 열리도록 */
@media (max-width: 1024px) {
    .company_sub_nav .tabs {
        overflow-x: auto;
    }

    .tab-item.skin-with-sub .sub-tabs {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 8px;
    }

    .tab-item.skin-with-sub.open .sub-tabs {
        display: block;
    }
}

/* 이미지/표 넘침 방지 */
.company_content_cont img,
.company_content_cont table {
    max-width: 100%;
    height: auto;
}

.company_info_cont {
    padding: 150px;
}

.company_info_title {
    font-size: 30px;
    color: white;
    font-weight: bold;
    text-align: left;
    margin: 0 auto 1em;
    width: 740px;
}

.company_info_des {
    margin: 50px auto 1em;
    font-size: 18px;
    color: white;
    text-align: left;
    width: 740px;
}

.company_info_ceo {
    font-size: 20px;
    color: white;
    text-align: right;
    margin: 70px auto 1em;
    width: 740px;
}

.company_info_sign {
    text-align: right;
    margin: 50px auto 1em;
    width: 740px;
}

.company_info_sign img {
    height: 38px;
    object-fit: contain;
}

.company_history_cont {
    display: flex;
    gap: 50px;
    align-items: center;
}

.company_history_cont img {
    width: 600px;
}

.company_history_title {
    margin-bottom: 96px;
    font-size: 38px;
    font-weight: bold;
    color: white;
}

.company_history_subtitle {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.company_history_year {
    font-size: 18px;
    color: white;
}

.company_history_des {
    margin-bottom: 23px;
    font-size: 18px;
    color: white;
}

.company_overview_cont {
    margin: 100px auto;
    width: 80%;
    text-align: center;
}

.company_overview_cont p {
    color: white;
}

.company_overview_cont img {
    margin-bottom: 50px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.company_overview_title {
    margin-bottom: 50px;
    font-size: 38px;
}

.company_overview_des {
    font-size: 18px;
}

.business_des {
    max-width: var(--container-max);
    margin: 0 auto 150px;
    padding-right: 30px;
    font-size: 30px;
    font-weight: bold;
    text-align: right;
}

.business_title {
    margin-bottom: 30px;
    font-size: 30px;
    color: white;
    font-weight: bold;
    text-align: left;
    width: 740px;
}

.business_content_inner_cont {
    position: relative;
    width: 100%;
    height: 700px;
}

.business_content_txt_cont {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px;
    background-color: rgba(113, 113, 113, 0.8);
}

.business_content_txt_row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    color: white;
}

.business_content_txt_no {
    font-weight: bold;
    font-size: 28px;
}

.business_content_txt_title {
    font-size: 30px;
    font-weight: bold;
}

.business_content_txt_des {
    font-size: 18px;
}

.filter_product_cont {
    margin-top: 150px;
    padding: 140px;
    background-color: rgba(0, 0, 0, .8);
    width: 100%;
    box-sizing: border-box;
}

.filter_product_wrapper {
    margin: 0 auto;
    max-width: var(--container-max);
}

.filter_product_cont_title {
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.filter_product_inner_cont {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.filter_product_cell {
    text-align: center;
}

.filter_product_inner_cont img {
    margin-bottom: 20px;
    width: 200px;
    object-fit: contain;
}

.filter_product_inner_cont p {
    color: white;
    font-size: 18px;
}

.ir_search_cont {
    flex: 0 0 70%;
    width: 100%;
    height: 56px;
}

.ir_search_wrapper {
    position: relative;
    max-width: 960px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

/* 인풋: 순수 흰 배경 + 얇은 테두리 + 은은한 그림자 */
.ir_search_wrapper input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 72px 0 20px;
    border-radius: 9999px;
    border: 1px solid #fff;
    background: transparent;
    font-size: 16px;
    transition: box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.ir_search_wrapper input::placeholder {
    color: #9ca3af;
}

/* 포커스 강조 */
.ir_search_wrapper input:focus {
    border-color: #c7cdd4;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10),
    0 0 0 3px rgba(17, 24, 39, 0.06);
}

/* 우측 동그란 검색 버튼 (흰 배경 고정) */
.ir_search_wrapper button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: url("/images/icon/ic_search_w.png") no-repeat center;
    background-size: 18px 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow .2s ease, transform .1s ease, border-color .2s ease, background-color .2s ease;
    z-index: 1;
}

.ir_search_wrapper button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.ir_search_wrapper button:active {
    transform: translateY(-50%) scale(0.98);
}

/* 다크모드에서도 흰색 유지 */
@media (prefers-color-scheme: dark) {
    .ir_search_wrapper input {
        background: transparent;
        color: #fff;
        border-color: #fff;
    }

    .ir_search_wrapper input::placeholder {
        color: #fff;
    }

    .ir_search_wrapper button {
        background-color: transparent;
    }
}

/* 기본 레이아웃 */
.ir_news_cont {
    position: relative;
}

.ir-news-swiper {
    width: 100%;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* 뉴스 행 */
.news-row {
    display: flex;
    gap: 51px;
    align-items: center;
    color: white;
}

.news-thumb {
    width: 320px;
    height: 230px;
    flex: 0 0 320px;
    background: #f2f2f2;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-body {
    flex: 1 1 auto;
    min-width: 0;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-meta {
    font-size: 12px;
    color: white;
    margin-bottom: 6px;
}

.news-summary {
    font-size: 14px;
    color: white;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 네비게이션 & 페이지네이션 */
.ir-news-nav {
    position: relative;
    margin-top: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ir-news-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ir-news-pagination {
    position: static;
    display: inline-block;
    margin-left: 8px;
}

/* 반응형 */
@media (max-width: 768px) {
    .news-row {
        gap: 12px;
    }

    .news-thumb {
        width: 120px;
        height: 80px;
        flex-basis: 120px;
    }

    .ir-news-nav {
        top: -40px;
    }
}

@media (max-width: 480px) {
    .news-row {
        flex-direction: row;
    }

    .news-thumb {
        width: 96px;
        height: 64px;
        flex-basis: 96px;
    }
}

/* 페이지 스크롤 잠금 */
.no-scroll {
    overflow: hidden;
}

/* ===== Detail Modal ===== */
.ir-detail-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    z-index: 999;
}

.ir-detail-backdrop.open {
    display: flex;
}

.ir-detail-panel {
    position: relative;
    width: min(1200px, 92vw);
    border-radius: 42px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(120%) blur(3px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    padding: 32px 32px 56px;
    color: #fff;
}

.ir-detail-article {
    position: relative;
    line-height: 1.7;
}

/* 좌상단 이미지: 오른쪽/아래 여백을 주고 감싸흐름 유도 */
.ir-detail-lead {
    float: left;
    width: 500px !important;
    height: 370px !important;
    margin: 0 28px 18px 0; /* 오른쪽/아래 공간 */
    display: block;
}

/* float 클리어 */
.ir-detail-article::after {
    content: "";
    display: block;
    clear: both;
}

.ir-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.ir-detail-image {
    width: 600px;
    height: 470px;
}

.ir-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ir-detail-body {
    min-width: 0;
}

.ir-detail-meta {
    text-align: right;
    font-size: 13px;
    color: white;
    margin-bottom: 20px;
}

.ir-detail-summary {
    font-size: 15px;
    line-height: 1.7;
    color: white;
    margin: 0 0 16px;
}

.ir-detail-actions .btn-detail-link {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

.ir-detail-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 80px;
}

.swiper-pagination {
    position: static !important;
}

.ir-news-pagination .swiper-pagination-bullet, .ir-detail-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.ir-news-pagination .swiper-pagination-bullet-active, .ir-detail-pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.8);
}

/* 반응형 */
@media (max-width: 1024px) {
    .ir-detail-row {
        grid-template-columns: 1fr;
    }

    .ir-detail-panel {
        padding: 24px 20px 48px;
    }
}

/* 레이아웃 컨테이너 */
.contact-wrap {
    margin: 0 auto;
    max-width: 1140px;
    padding: 80px 24px 160px;
    position: relative;
}

.contact-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 60px;
}

/* 글라스 카드 */
.contact-card {
    background: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 150px;
}

/* 폼 그리드 */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.form-row--full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    opacity: .9;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 5px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    padding: 12px 14px;
    outline: none;
    transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: rgba(255, 255, 255, .35);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
}

/* 약관/보조 버튼 */
.consent-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

.consent-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: .9;
    cursor: pointer;
}

.btn-privacy, .btn-terms {
    color: white;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 6px 23px;
    background: rgba(255, 255, 255, .1);
}

.btn-privacy:hover, .btn-terms:hover {
    font-weight: 700;
    background: black;
}

.btn-ghost, .btn-upload {
    background-color: rgba(217, 217, 217, 0.55);
    color: #fff;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 20px;
    padding: 12px 22px;
    font-size: 13px;
    cursor: pointer;
    transition: .15s ease;
}

.btn-ghost:hover, .btn-upload:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
    background-color: black;
}

/* 제출 버튼 */
.submit-row {
    margin-top: 70px;
    text-align: center;
}

.btn-submit {
    background-color: rgba(217, 217, 217, 0.55);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 12px 22px;
    font-weight: 500;
    text-align: center;
    width: 300px;
    cursor: pointer;
    transition: transform .05s ease, box-shadow .15s ease;
}

.btn-submit:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
    background-color: black;
    font-weight: 700;
}

.btn-submit:active {
    transform: translateY(1px);
}

/* 파일 업로드 트리거 */
.attach-row {
    border-radius: 5px;
    border: 1px solid #fff;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.btn-attach {
    background-color: rgba(217, 217, 217, 0.55);
    color: #fff;
    border: 1px solid rgb(255, 255, 255);
    padding: 10px 40px;
    font-size: 13px;
    cursor: pointer;
    transition: .15s ease;
}

.btn-attach:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
    background-color: black;
}

.btn-upload-trigger {
    margin-left: auto;
}

/* 모달 */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
}

.modal-backdrop.open {
    display: flex;
}

.modal-card {
    width: min(860px, 92vw);
    background: rgba(30, 30, 30, .68);
    color: #fff;
    padding: 24px;
    position: relative;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: .15s ease;
    color: white;
}

.modal-close:hover {
    background: rgba(255, 255, 255, .16);
}

/* 드래그영역 */
.dropzone {
    border: 2px dashed rgba(255, 255, 255, .5);
    padding: 46px 20px;
    text-align: center;
    background: rgba(255, 255, 255, .04);
    transition: background .15s ease, border-color .15s ease;
}

.dropzone.dragover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .8);
}

.dz-title {
    font-size: 18px;
    margin-top: 10px;
    opacity: .95;
}

.dz-desc {
    font-size: 13px;
    opacity: .75;
    margin-top: 6px;
}

.upload-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 18px;
}

.file-list {
    margin-top: 14px;
    font-size: 13px;
    opacity: .9;
    line-height: 1.8;
}

.attached-summary {
    padding-left: 10px;
    display: flex;
    align-items: center;
    font-size: .9rem;
    opacity: .85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}

/* 드롭존: 파일이 있으면 아이콘/문구 숨김 */
.dropzone .dz-title, .dropzone svg {
    transition: opacity .2s ease;
}

.dropzone.has-files .dz-title, .dropzone.has-files svg {
    display: none;
}

/* 반응형 */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 26px 18px;
    }

    .contact-wrap {
        padding: 56px 16px 120px;
    }
}

.platform_cont_wrapper {
    display: flex;
    gap: 100px;
    margin: 0 auto;
    max-width: var(--container-max);
}

.platform_cont {
    margin: 0 auto 150px;
    max-width: var(--container-max);
}

.platform_cont_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: .04em;
    color: white;
    width: 100%;
    height: 102px;
    text-align: center;
    background-color: rgba(0, 0, 0, .5);
}

.platform_inner_cont {
    padding: 50px 100px;
    background: rgba(0, 0, 0, .7);
    /*backdrop-filter: blur(10px);*/
    /*-webkit-backdrop-filter: blur(10px);*/
    /*border: 1px solid rgba(255, 255, 255, .12);*/
}

.platform_row {
    display: flex;
    gap: 100px;
    justify-content: center;
}

/* 3) 아이템: 정렬/사이즈 일치 */
.platform_cell {
    text-align: center;
}

.platform_cell_img_cont {
    height: 96px; /* 아이콘 라인 높이 */
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.platform_cell_img_cont img {
    width: 90px;
    height: auto; /* 비율 유지 */
    object-fit: contain;
}

.platform_cell_name {
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
    opacity: .9;
}

.tourism_cont {
    margin: 0 auto;
    max-width: var(--container-max);
}

.tourism_inner_cont {
    position: relative;
}

.tourism_glowtrip_img {
    margin-bottom: 100px;
    width: 350px;
    object-fit: contain;
}

.tourism_mock_1_img {
    position: absolute;
    top: 0;
    right: 50px;
    width: 520px;
    object-fit: contain;
}

.tourism_mock_2_img {
    position: absolute;
    top: 0;
    left: 50px;
    width: 669px;
    object-fit: contain;
}

.tourism_txt_cont {
    padding: 100px;
    background: rgba(0, 0, 0, .7);
}

.tourism_txt_cont p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 50px;
}

/* 디테일 뷰(페이지 내 카드) */
.ir-detail-view {
    padding-bottom: 300px;
}

.ir-detail-close {
    position: absolute;
    top: 115px;
    right: 150px;
    width: 25px;
    height: 25px;
    background: url("/images/icon/ic_close.png") no-repeat center;
    background-size: contain;
    cursor: pointer;
    opacity: .3
}

.ir-detail-close:hover {
    opacity: 1
}

.ir-detail-row {
    display: flex;
    gap: 28px;
    align-items: flex-start
}

.ir-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ir-detail-body {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ir-detail-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* 디테일 스와이퍼 내 네비/도트 */
.ir-detail-prev, .ir-detail-next {
    position: absolute;
    bottom: 150px;
    cursor: pointer;
    z-index: 5;
    color: white;
    opacity: .3;
    font-size: 20px;
}

.ir-detail-prev:hover, .ir-detail-next:hover {
    opacity: 1;
}

.ir-detail-prev {
    left: 183px;
}

.ir-detail-prev::after {
    transform: translateY(-50%) rotate(225deg);
}

.ir-detail-next {
    right: 183px;
}

@media (max-width: 900px) {
    .ir-detail-row {
        flex-direction: column;
    }

    .ir-detail-image img {
        width: 100%
    }
}

/* 4) 반응형 — 화면 줄면 3열/2열로 자동 변경 */
@media (max-width: 1200px) {
    .platform_inner_cont {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
        row-gap: 28px;
    }
}

@media (max-width: 700px) {
    .platform_inner_cont {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        row-gap: 24px;
        padding: 28px;
    }
}