/* ============================================
   detailview - 상세정보 탭 이미지 더보기/닫기
   ============================================ */

#tab05 .pop_cts img {
    width: 80% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

/* 버튼 고정 래퍼 */
.relative_div {
    position: relative;
}

/* 더보기/닫기 버튼 영역 */
.bnbnfList_more {
    position: relative;
    text-align: center;
    padding: 20px 0;
}

/*
  닫힌 상태: 이미지 가로(80%) 만큼만 그라데이션 적용
  - ::before를 .bnbnfList_more에 걸어 left:10% / width:80%로 이미지 너비 일치
  - pointer-events:none → 버튼 클릭 방해 안 함
  - 버튼은 .bnbnfList_more 내부(padding 안쪽)에 있으므로 그라데이션(top:-96px~0)에 가려지지 않음
*/
.bnbnfList_more.off:before {
    content: '';
    position: absolute;
    top: -96px;
    left: 10%;
    display: block;
    width: 80%;
    height: 96px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8) 66%, rgba(255, 255, 255, 0.94) 83%, rgba(255, 255, 255, 0.98) 91%, #ffffff);
    pointer-events: none;
}

/* 버튼 색상 - white_blue */
a[class^="btn_"].white_blue,
a.button_detail-more.white_blue {
    border: 1px solid #c4cad8;
    background: #fff;
    /* background-color: #f5f6f9; */
    color: #444461;
    text-decoration: none;
    /* border-top: 1px solid #c4cad8; */
    font-weight: 500;
}

a[class^="btn_"].white_blue:hover,
a.button_detail-more.white_blue:hover {
    background: #f5f6f9;
}

/* 버튼 크기 - btn_big */
.bnbnfList_more .btn_big {
    display: inline-block;
    min-width: 160px;
    padding: 12px 48px 12px;
    text-align: center;
    font-size: 20px;
    line-height: 1.2;
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    z-index: 1;
}
