#content.wide .about-page .about-pr-con {
    position: relative;
    width: 100%;
    padding: 95px 0 120px;
    background: #ffffff;
    overflow: hidden;
}


#content.wide .about-page .about-pr-con > .area {
    width: calc(100% - 80px);
    max-width: 1400px;
    margin: 0 auto;
}


/* ==========================================================
   PR DROPDOWN (여백 축소 및 라운드/보더 세련화)
========================================================== */

#content.wide .about-page .pr-submenu-wrap {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    margin-bottom: 30px; /* 기존 65px -> 30px로 하단 여백 축소 */
}


#content.wide .about-page .pr-submenu {
    position: relative;
    width: 220px;
}


#content.wide .about-page .pr-submenu-button {
    display: flex;
    width: 100%;
    height: 48px; /* 기존 54px -> 48px 슬림화 */
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d9e0e9;
    border-radius: 12px; /* 드롭다운 라운드 추가 */
    background: #ffffff;
    color: #0a1d40;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(10, 29, 64, 0.04);
    transition: all .25s ease;
}


#content.wide .about-page .pr-submenu-button:hover,
#content.wide .about-page .pr-submenu.is-open .pr-submenu-button {
    border-color: #1264d8;
    box-shadow: 0 4px 16px rgba(18, 100, 216, 0.12);
}


#content.wide .about-page .pr-submenu-button > i {
    font-size: 11px;
    transition: transform .25s ease;
}


#content.wide .about-page .pr-submenu.is-open .pr-submenu-button > i {
    transform: rotate(180deg);
}


#content.wide .about-page .pr-submenu-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    border: 1px solid #e2e8f0;
    border-radius: 12px; /* 팝업 박스 라운드 */
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(10,29,64,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}


#content.wide .about-page .pr-submenu.is-open .pr-submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


#content.wide .about-page .pr-submenu-list li {
    margin: 0;
    padding: 0;
}


#content.wide .about-page .pr-submenu-list a {
    display: flex;
    height: 44px;
    padding: 0 18px;
    align-items: center;
    gap: 10px;
    color: #687386;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}


#content.wide .about-page .pr-submenu-list a i {
    width: 17px;
    text-align: center;
    font-size: 13px;
}


#content.wide .about-page .pr-submenu-list a:hover,
#content.wide .about-page .pr-submenu-list li.active a {
    background: #f2f6fb;
    color: #1264d8;
}


/* ==========================================================
   SECTION
========================================================== */

#content.wide .about-page .pr-section {
    display: none;
}


#content.wide .about-page .pr-section.is-active {
    display: block;
}


#content.wide .about-page .pr-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px; /* 여백 미세 조율 */
}


#content.wide .about-page .pr-section-label {
    display: block;
    margin-bottom: 8px;
    color: #1264d8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
}


#content.wide .about-page .pr-section-head h2 {
    margin: 0;
    color: #0a1d40;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.04em;
}


/* ==========================================================
   LIST
========================================================== */

#content.wide .about-page .pr-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}


#content.wide .about-page .pr-item {
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0;
}


#content.wide .about-page .pr-item-link {
    display: block;
    width: 100%;
    color: inherit;
    text-decoration: none;
}


/* ==========================================================
   THUMB (이미지 곡률 및 테두리 적용)
========================================================== */

#content.wide .about-page .pr-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f1f5f9;
    border-radius: 14px; /* 이미지 영역 곡률 적용 */
    border: 1px solid #e2e8f0; /* 테두리 선 추가 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: border-color .3s ease, box-shadow .3s ease;
}


#content.wide .about-page .pr-item-link:hover .pr-thumb {
    border-color: #1264d8;
    box-shadow: 0 10px 24px rgba(18, 100, 216, 0.15);
}


#content.wide .about-page .pr-thumb img,
#content.wide .about-page .pr-thumb .pr-mp4-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    transition: transform .55s ease;
}


#content.wide .about-page .pr-item-link:hover .pr-thumb img,
#content.wide .about-page .pr-item-link:hover .pr-mp4-thumb {
    transform: scale(1.045);
}


/* ==========================================================
   BADGE
========================================================== */

#content.wide .about-page .pr-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    display: inline-flex;
    min-height: 28px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 20px; /* 뱃지 둥근 스타일 */
    color: #ffffff;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    backdrop-filter: blur(4px);
}


#content.wide .about-page .pr-type-badge.news {
    background: rgba(10, 29, 64, 0.85);
}


#content.wide .about-page .pr-type-badge.youtube {
    background: rgba(230, 33, 23, 0.85);
}


#content.wide .about-page .pr-type-badge.mp4 {
    background: rgba(18, 100, 216, 0.85);
}


/* ==========================================================
   OVERLAY
========================================================== */

#content.wide .about-page .pr-thumb-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3,14,32,0);
    transition: background .3s ease;
}


#content.wide .about-page .pr-item-link:hover .pr-thumb-overlay {
    background: rgba(3,14,32,.35);
}


#content.wide .about-page .action-button {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #1264d8;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    opacity: 0;
    transform: scale(.7);
    transition:
        opacity .3s ease,
        transform .3s ease;
}


#content.wide .about-page .pr-item-link:hover .action-button {
    opacity: 1;
    transform: scale(1);
}


/* ==========================================================
   INFO
========================================================== */

#content.wide .about-page .pr-info {
    padding: 22px 5px 0;
}


#content.wide .about-page .pr-type {
    display: block;
    margin-bottom: 9px;
    color: #1264d8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}


#content.wide .about-page .pr-info h3 {
    min-height: 56px;
    margin: 0;
    color: #101c32;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 750;
    letter-spacing: -.035em;
}


#content.wide .about-page .pr-more {
    display: inline-flex;
    margin-top: 15px;
    align-items: center;
    gap: 8px;
    color: #101c32;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    transition: color .25s ease;
}


#content.wide .about-page .pr-more i {
    font-size: 10px;
    transition: transform .25s ease;
}


#content.wide .about-page .pr-item-link:hover .pr-more {
    color: #1264d8;
}


#content.wide .about-page .pr-item-link:hover .pr-more i {
    transform: translateX(4px);
}


/* ==========================================================
   PAGINATION
========================================================== */

#content.wide .about-page .pr-pagination {
    display: flex;
    margin-top: 65px;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


#content.wide .about-page .pr-pagination button {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e6ed;
    border-radius: 8px; /* 페이징 버튼 라운드 추가 */
    background: #ffffff;
    color: #7a8493;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}


#content.wide .about-page .pr-pagination button:hover {
    border-color: #1264d8;
    color: #1264d8;
}


#content.wide .about-page .pr-pagination button.active {
    border-color: #1264d8;
    background: #1264d8;
    color: #ffffff;
}


#content.wide .about-page .pr-pagination button:disabled {
    opacity: .35;
    cursor: default;
}


#content.wide .about-page .pr-pagination button i {
    font-size: 10px;
}


/* ==========================================================
   VIDEO LAYER
========================================================== */

body.media-layer-open {
    overflow: hidden;
}


#mediaLayer {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    padding: 30px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity .25s ease,
        visibility .25s ease;
}


#mediaLayer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


#mediaLayer .media-layer-bg {
    position: absolute;
    inset: 0;
    background: rgba(2,8,20,.9);
    backdrop-filter: blur(5px);
    cursor: pointer;
}


#mediaLayer .media-layer-container {
    position: relative;
    z-index: 2;
    width: min(1100px,100%);
    padding: 22px;
    background: #08162e;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    box-shadow: 0 30px 100px rgba(0,0,0,.5);
    transform: translateY(25px) scale(.97);
    transition: transform .3s ease;
}


#mediaLayer.is-open .media-layer-container {
    transform: translateY(0) scale(1);
}


#mediaLayer .media-layer-title {
    display: flex;
    min-height: 35px;
    padding: 0 55px 17px 3px;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}


#mediaLayer .media-layer-title i {
    color: #1264d8;
    font-size: 18px;
}


#mediaLayer .media-layer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all .25s ease;
}


#mediaLayer .media-layer-close:hover {
    background: #ffffff;
    color: #08162e;
    transform: rotate(90deg);
}


#mediaLayer .media-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000000;
    border-radius: 10px;
}


#mediaLayer .media-video-wrap iframe,
#mediaLayer .media-video-wrap video {
    display: none;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
    background: #000000;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    #content.wide .about-page .about-pr-con {
        padding: 80px 0 100px;
    }


    #content.wide .about-page .about-pr-con > .area {
        width: calc(100% - 50px);
    }


    #content.wide .about-page .pr-list {
        gap: 38px 20px;
    }


    #content.wide .about-page .pr-info h3 {
        font-size: 17px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 760px) {

    #content.wide .about-page .about-pr-con {
        padding: 60px 0 80px;
    }


    #content.wide .about-page .about-pr-con > .area {
        width: calc(100% - 36px);
    }


    #content.wide .about-page .pr-submenu-wrap {
        justify-content: flex-start;
        margin-bottom: 25px; /* 모바일 여백 축소 */
    }


    #content.wide .about-page .pr-submenu {
        width: 190px;
    }


    #content.wide .about-page .pr-list {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 35px 16px;
    }


    #content.wide .about-page .pr-section-head h2 {
        font-size: 28px;
    }


    #content.wide .about-page .pr-info {
        padding-top: 17px;
    }


    #content.wide .about-page .pr-info h3 {
        min-height: 0;
        font-size: 15px;
    }


    #content.wide .about-page .pr-more {
        font-size: 9px;
    }


    #content.wide .about-page .pr-pagination {
        margin-top: 50px;
    }


    #content.wide .about-page .pr-pagination button {
        width: 36px;
        height: 36px;
    }


    #mediaLayer {
        padding: 15px;
    }


    #mediaLayer .media-layer-container {
        padding: 14px;
    }


    #mediaLayer .media-layer-title {
        font-size: 11px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    #content.wide .about-page .about-pr-con > .area {
        width: calc(100% - 28px);
    }


    #content.wide .about-page .pr-list {
        grid-template-columns: 1fr;
        gap: 38px;
    }


    #content.wide .about-page .pr-section-head h2 {
        font-size: 25px;
    }


    #content.wide .about-page .pr-info h3 {
        font-size: 17px;
    }


    #mediaLayer {
        padding: 10px;
    }


    #mediaLayer .media-layer-container {
        padding: 10px;
    }


    #mediaLayer .media-layer-close {
        top: 7px;
        right: 7px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

}

/* ==========================================================
   LIST & CARD ITEM (글마다 구분되도록 테두리 박스 카드화)
========================================================== */

#content.wide .about-page .pr-item {
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0;
}

/* 게시글 전체를 감싸는 카드 스타일 추가 */
#content.wide .about-page .pr-item-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px; /* 카드 내부 여백 */
    background: #ffffff;
    border: 1px solid #e2e8f0; /* 카드 구분 테두리 색상 */
    border-radius: 16px; /* 카드 모서리 라운드 */
    box-shadow: 0 4px 14px rgba(10, 29, 64, 0.04); /* 은은한 카드 그림자 */
    color: inherit;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .3s ease;
}

/* 카드 호버 시 테두리 색상 강조 및 살짝 떠오르는 효과 */
#content.wide .about-page .pr-item-link:hover {
    border-color: #1264d8; /* 마우스 올렸을 때 강조 테두리 색상 */
    box-shadow: 0 12px 28px rgba(18, 100, 216, 0.12);
    transform: translateY(-4px);
}

/* 썸네일 자체의 기존 외각 테두리는 제거 (중복 테두리 방지) */
#content.wide .about-page .pr-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f1f5f9;
    border-radius: 10px; /* 내부 이미지 곡률 */
    border: none;
}

#content.wide .about-page .pr-info {
    padding: 18px 0 0; /* 내부 패딩에 맞게 텍스트 영역 상단 여백 조절 */
}

/* 버튼 뒤에 붙는 \F061 텍스트 강제 제거 */
.inquiry-submit-btn::after,
.inquiry-submit-btn:after {
    display: none !important;
    content: "" !important;
}

/* 버튼 내부 텍스트 및 아이콘 정렬 */
.inquiry-submit-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}