@charset "utf-8";
body{
    overflow-x: hidden;
}
.wrep{
    background: url(/resource/img/index/main_bk.jpg)no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.m-select{
    display: none;
}

/* 배너 */
.banner{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 96px;
    gap: 48px;
}
.banner_content{
    width: 1400px;
    height: 562px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 36px 60px;
    display: flex;
    justify-content: space-between;
}
.banner_txtarea{
    width: calc(100% - 770px);
    height: 100%;
    position: relative;
}
.banner_txtitem{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.banner_txtitem.on{
    visibility: visible;
    opacity: 1;
}
.banner_txtitem h1{
    font-weight: 600;
    font-size: 28px;
    color: #ffffff;
    line-height: 35.84px;
    margin-bottom: 60px;
}
.banner_txt{
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 36px;
}
.banner_txt h2{
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    line-height: 22.4px;
}
.banner_txt p{
    font-weight: 300;
    font-size: 20px;
    color: #ffffff;
    line-height: 22.4px;
}
.banner_iconbox{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.banner_icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_slide{
    width: 735px;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 !important;
}
.swiper-slide{
    background-size: cover !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.swiper-button-next, .swiper-button-prev{
    width: fit-content !important;
    height: fit-content !important;
}
.swiper-pagination{
    width: fit-content !important;
    height: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding:8px  12px !important;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.45) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    bottom: 10px !important;
}
.swiper-pagination-bullet{
    opacity: 1 !important;
    background-color: rgba(153, 153, 153, 1) !important;
    margin: 0 !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: rgba(255, 255, 255, 1) !important;
}
.banner_txtbottom{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


.banner_txtbottom a{
    padding: 12px 16px;
    background-color: rgba(0, 0, 0, 0.45);
    font-weight: 300;
    font-size: 16px;
    line-height: 17.92px;
    letter-spacing: 0px;
    color: #ffffff;
    transition: 0.3s;
    text-align: center;
}
.banner_txtbottom a:hover{
    background-color: #666666;
}
.banner_sns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 72px;
}
.banner_snsitem{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.banner_snsitem h3{
    font-weight: 600;
    font-size: 24px;
    line-height: 26.88px;
    letter-spacing: 0px;
    color: #ffffff;
    cursor: pointer;
}
/* 배너 끝 */

/* 공동섹션 */
.section{
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section.auto{
    width: fit-content;
}
.section h1{
    font-weight: 600;
    font-size: 36px;
    line-height: 40.32px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 24px;
}
.section_h1-m{
    display: none;
}
.section h2{
    color: #ffffff;
    font-weight: 400;
    font-size: 48px;
    line-height: 53.76px;
    letter-spacing: 0px;
}
.section h2 b{
    font-weight: 800;
}
.section_tep{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    margin-bottom: 36px;
}

.section_tep a{
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.92px;
    letter-spacing: 0px;
    color: #ffffff;
    transition: 0.3s;
}
.section_tep a.on{
    color: rgba(255, 91, 120, 1);
}
.section_tep a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(255, 91, 120, 1);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    bottom: -8px;
    left: 0;
}
.section_tep a.on::before{
    visibility: visible;
    opacity: 1;
}
.section_subtitle{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}
.section_subtitle p{
    color: rgba(161, 161, 161, 1);
    font-weight: 400;
    font-size: 20px;
    line-height: 22.4px;
    letter-spacing: 0px;
}
.section_sub_more{
    display: flex;
    align-items: center;
    gap: 1px;
}
.section_sub_more:hover .icon_img{
    transform: translateX(3px);
}
.section_sub_more span{
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0px;
    margin-bottom: 2px;
}
.section_sub_sns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
/* 공동섹션 끝 */

/* 섹션1 */
.section_1{
    margin-top: 48px;
    margin-bottom: 48px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section_1-tiem{
    display: none;
}
.section_1-tiem.on{
    display: flex;
}
.section_tidings{
    width: 100%;
    position: relative;
}
.section_tiding-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 36px 48px 35px 48px;
}
.section_tiding{
    display: flex;
    width: 100%;
    height: 375px;
    align-items: center;
    gap: 36px;
}
.section_tidingmain{
    position: relative;
    width: 635px;
    height: 100%;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}
.section_tidingmain_bk{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 99px;
    background: rgba(0, 0, 0, 0.75);
    padding: 19px 24px;
}
.section_tidingmain_bk h1{
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
    line-height: 26.88px;
    letter-spacing: 0px;
    margin-bottom: 11px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* 최대 1줄 설정 */
    overflow: hidden;
    text-overflow: ellipsis;
}
.section_tidingmain_bk span{
    color: rgba(161, 161, 161, 1);
    font-weight: 400;
    font-size: 16px;
    line-height: 17.92px;
    letter-spacing: 0px;
}
.section_tidingside{
    width: calc(100% - 635px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.section_tidingimg{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.section_tidingimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.section_tidingimg:hover img{
    transform: scale(1.2); /* 1.2배 확대 */
    filter: grayscale(70%); /* 흑백 처리 */
}
.section_tidingsideitem{
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.section_tidingsideitem .section_tidingimg{
    width: 76px;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}
.section_tidingsidetxtbox{
    padding: 4px 0;
    width: calc(100% - 96px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section_tidingsidetxtbox h1{
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.92px;
    letter-spacing: 0px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 최대 2줄 설정 */
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}
.section_tidingsidetxtbox span{
    color: rgba(161, 161, 161, 1);
    font-weight: 400;
    font-size: 14px;
    line-height: 15.68px;
    letter-spacing: 0px;
}
.section_1-content{
    width: 100%;
}
.section_1-tiems{
    width: 100%;
    min-height: 370px;
}
.section_notice-area{
    width: 100%;
    flex-direction: column;
    border: 1px solid #333333;
}
.section_notice{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 74px;
    background-color: #666666;
    border-bottom: 1px solid #333333;
}
.section_notice:last-child{
    border-bottom: none;
}
.section_notice-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.section_notice-item p{
    color: #E6E6E6;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s;
}
.section_notice-item a{
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}
.section_notice-item a:hover{
    text-decoration: underline;
}
.section_notice-item:has(a:hover) ~ .section_notice-item:last-child .icon_img{
    transform: translateX(10px);
}
.section_notice-item:nth-child(1){
    width: 88px;
}
.section_notice-item:nth-child(2){
    width: calc(100% - 345px);
    justify-content: flex-start;
}
.section_notice-item:nth-child(3){
    width: 108px;
}
.section_notice-item:nth-child(4){
    width: 75px;
}
.section_notice-item:nth-child(5){
    width: 74px;
    justify-content: flex-start;
    padding-left: 18px;
}
/* 섹션1끝 */

/* 섹션2 */
.rankingtitle-m{
    display: none;
}
.m-morebut{
    display: none;
}
.section_2{
    width: 100%;
    /*padding-top: 24px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 84px;
}
.section_ranking{
    margin-top: 24px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 32px;
}
.section_rankingitem{
    width: 274px;
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(102, 102, 102, 1);
}
.section_rankingtitle{
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_rankingtitle span{
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
    line-height: 22.4px;
    letter-spacing: 0px;
}
.section_rankingtep{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_rankingtep a{
    width: 50%;
    padding: 12px 0;
    border-top: 1px solid rgba(161, 161, 161, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;

    color: rgba(161, 161, 161, 1);
    font-weight: 400;
    font-size: 14px;
    line-height: 15.68px;
    letter-spacing: 0px;
}
.section_rankingtep.team_leaguetep a{
    /*width: 16.666%;*/
}
.section_rankingtep a.on{
    border-top: 1px solid #ffffff;
    color: #ffffff;
}
.section_ranking_numberone{
    width: 100%;
    padding: 0 24px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid rgba(51, 51, 51, 1);
    border-bottom: 1px solid rgba(51, 51, 51, 1);
    background: linear-gradient(180deg, #757474 0%, #6C6B6B 100%);
}
.section_ranking_numberone.pba{
    background: linear-gradient(97.78deg, #1C50AA 0%, #032869 100%);

}
.section_ranking_numberone.lpba{
    background: linear-gradient(97.78deg, #BA102E 0%, #7D0319 100%);
}
.numberone_infor{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.numberone_infor h3{
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
    line-height: 26.88px;
    letter-spacing: 0px;
    margin-top: 13px;
}
.numberone_rankingname{
    display: flex;
    align-items: center;
    gap: 3px;
}
.numberone_rankingname p{
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.92px;
    letter-spacing: 0px;
}
.rankingname_gonfalon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 16px;
}
.rankingname_gonfalon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.numberone_infor span{
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 15.68px;
    letter-spacing: 0px;
    margin-bottom: 12px;
}
.numberone_img{
    width: 78px;
    height: 78px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}
.numberone_img.team_leagueimg{
    width: 78px;
    height: 78px;
}
.numberone_img img{
    width: 100%;
    object-fit: cover;
}
.section_ranking_player{
    width: 100%;
    height: 57px;
    padding: 0 25px 0 23px;
    border-bottom: 1px solid rgba(51, 51, 51, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.section_ranking_playerinfor{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}
.section_ranking_playerinfor h3{
    color: rgba(161, 161, 161, 1);
    font-weight: 500;
    font-size: 16px;
    line-height: 17.92px;
    letter-spacing: 0px;
}
.section_ranking_playertxt{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}
.section_ranking_playertxt h4{
    color: #ffffff;
    font-weight: 300;
    font-size: 14px;
    line-height: 15.68px;
    letter-spacing: 0px;
    white-space: nowrap;
}
.section_ranking_playertxt p{
    color: rgba(161, 161, 161, 1);
    font-weight: 400;
    font-size: 12px;
    line-height: 13.44px;
    letter-spacing: 0px;    
}
.section_ranking_player span{
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    line-height: 13.44px;
    letter-spacing: 0px;    
    white-space: nowrap;
}
.section_ranking_player span.team_leagueimg{
    width: 38px;
    height: 38px;
}
.section_ranking_player span.team_leagueimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ranking_more_but{
    width: 100%;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
}
.ranking_more_but p{
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0px;
    margin-top: -1px;
}
.ranking_more_but:hover .icon_img{
    transform: translateX(3px);
}
/* 섹션2 끝 */

/* 섹션3 */
.section_3{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 84px;
}
.section_newsroombox{
    width: 100%;
}
.section_newsroom{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px; 
    width: 100%;
    margin-top: 24px;
}
.section_newsroomitem{
    position: relative;
    height: 203px;
    overflow: hidden;
}

.section_newsroomitem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.section_newsroomitem:hover img{
    scale: 1.2;
    filter: grayscale(70%); /* 흑백 처리 */
}
.section_newsroomitem_txt{
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    display: flex;
    align-items: center;
    padding:11px 12px;
    gap: 8px;
}
.section_newsroomitem_txt p{
    color: #ffffff;
    font-weight: 400;
    font-size: 12px;
    line-height: 13.44px;
    letter-spacing: 0px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 최대 2줄 설정 */
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 32px);
}
.section_newsroomitem_txt2 p{
    font-weight: 300;
    text-align: center;
    width: 100%;
}
.section_newsroomitem_txt .banner_icon{
    width: 24px;
    height: 24px;
}
/* 섹션3 끝 */

/* 섹션4 */
.section_4{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}
.section_4 h2{
    text-align: center;
    margin-bottom: 9px;
}
.section_4 p{
    color: rgba(161, 161, 161, 1);
    font-weight: 400;
    font-size: 20px;
    line-height: 22.4px;
    letter-spacing: 0px;
    text-align: center;
}
.sponsor_area{
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap:0 30px;
    width: 100%;
    margin-top: 12px;
}
.sponsor_logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}
.sponsor_logo img{
    width: 100%;
    object-fit: cover;
}
@media (prefers-color-scheme: dark) {
    .m-selectarea_option span{
        border-bottom: 1px solid #666666 !important;
        background-color: #333333 !important;
        color: #A1A1A1 !important;
    }
    .m-selectarea_option span:hover{
        background-color: #FF5B78 !important;
        color: #ffffff !important;
    }
}
/* 섹션4 끝 */


/*신규배너 css*/

/* ==============================================
:root - 전역 변수 (색상 및 폰트)
============================================== */
:root {
    --pba-blue: #05378E;
    --pba-red: #E52547;
    --text-light: white;
    --text-dark: black;
    --button-gradient: linear-gradient(180deg, white 0%, #DAEAFF 100%);
    --font-main: 'Noto Sans KR', sans-serif;
}

/* ==============================================
   전체 레이아웃 컨테이너
   ============================================== */
.pba-info-container {
    width: 100%;
    max-width: 1401px; /* 원본 최대 너비 유지 */
    margin: 0 auto; /* 페이지 중앙에 배치 */
    font-family: var(--font-main);
    padding: 0px 20px 48px 20px; /* 상 우 하 좌 */
    box-sizing: border-box;
}

/* ==============================================
   공통 패널 (카드) 스타일
   ============================================== */
.pba-panel {
    flex: 1; /* 컨테이너 내에서 동일한 비율로 공간 차지 */
    min-width: 300px; /* 최소 너비 (반응형 대비) */
    max-width: 451px; /* 원본 최대 너비 */
    height: 304px;
    background: rgba(0, 0, 0, 0.12);
    color: var(--text-light);
    padding: 36px;
    box-sizing: border-box;

    /* 내부 요소들을 세로로 정렬 */
    display: flex;
    flex-direction: column;
    align-items: center; /* 가로축 중앙 정렬 */
    text-align: center;
    border: 1px solid #FFFFFF26;
}

/* ==============================================
   공통 텍스트 요소
   ============================================== */
.pba-panel__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 26.88px;
    margin: 0 0 25px 0; /* 상단 0, 하단 25px 마진 */
}

.pba-panel__description {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.60px;
    margin-bottom: 30px; /* 하단 마진 */
}

/* ==============================================
   패널 1: 공식 앱
   ============================================== */
.app-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.app-download__buttons {
    display: flex;
    gap: 12px; /* 버튼 사이 간격 */
    margin-bottom: -2px;
}

.app-download__button {
    width: 99px;
    height: 30px;
    background: var(--button-gradient);
    border-radius: 2px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px; /* 아이콘과 텍스트 사이 간격 */

    color: var(--text-dark);
    font-size: 12px;
    font-weight: 400;
    text-decoration: none; /* a 태그로 만들 경우 대비 */
}

.app-download__button img {
    width: 19px;
    height: 19px;
}

.app-download__qr-area {
    /* 원본 코드의 이미지 영역 (플레이스홀더) */
    width: 209px;
    height: 131px;
    /*background-image: url(/resource/img/index/phone_ico.png);*/
    background-size: cover;
    background-position: center;
    position: relative;
    /*overflow: hidden;*/
}

.app-download__qr-area img {
    /* 원본 코드의 내부 이미지 (플레이스홀더) */
    left: 78px;
    top: 55px;
}

/* ==============================================
   패널 2: 티켓 예매
   ============================================== */
.ticket-booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1; /* 남은 공간을 채우도록 설정 */
}

.ticket-booking__button {
    padding: 12px 31px;
    background: var(--pba-red);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    line-height: 15.68px;
    text-decoration: none;
    /*border-radius: 4px; !* 살짝 라운딩 *!*/
}

.ticket-booking__logos img {
    width: 305px;
    height: 111px;
    margin-top: 1px;
}

/* ==============================================
   패널 3: PBA SNS
   ============================================== */
.pba-sns {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pba-sns__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px; /* 아이콘 사이 간격 */
    margin-top: 35px; /* 설명 텍스트와의 간격 */
}

.pba-sns__icons a {
    display: block;
}

.pba-sns__icons img {
    width: 65px;
    height: 65px;
    border-radius: 50%; /* 원형 아이콘으로 가정 */
}

/* ==============================================
링크 배너 컨테이너
============================================== */
.pba-links-container {
    display: flex;
    justify-content: center; /* 중앙 정렬 */
    gap: 25px; /* 713px - (0px + 688px) = 25px */
    width: 100%;
    max-width: 1401px; /* 원본 최대 너비 */
    margin: 0 auto; /* 페이지 중앙 배치 */
    font-family: var(--font-main);
    margin-top: 10px;
    /* 이미지가 위로 튀어나오는 공간(42px) 확보 */
    padding-top: 42px;
}

/* ==============================================
   공통 링크 카드 (파란색 박스)
   ============================================== */
.pba-link-card {
    width: 688px;
    height: 120px;
    background: #221d34;
    color: var(--text-light);
    /*border-radius: 8px; !* 디자인 개선 *!*/
    cursor: pointer;
    /* 텍스트를 세로로 중앙 정렬 */
    display: flex;
    align-items: center;
    /* 링크로 사용 */
    text-decoration: none;
    /* 이미지를 absolute로 띄우기 위한 기준점 */
    position: relative;
    box-sizing: border-box;
    transition: 0.3s;
}
.pba-link-card:hover {
    background-color: #064A9F; /* 호버 시 약간 밝아지도록 */

}
.pba-link-card__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 29.12px;
    /* 텍스트가 로고와 겹치지 않도록 z-index 추가 */
    position: relative;
    z-index: 2;
}
.pba-link-card__title.left{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    padding: 20px;
}
.pba-link-card__img{
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.pba-link-card__title h3{
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
}
.pba-link-card__title.right{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    padding: 20px;
}

/* ==============================================
   로고 이미지 공통 스타일
   ============================================== */
.pba-link-card__logo {
    position: absolute;
    width: 169px;
    height: 154px;
    /* 원본 top: 0px. 부모(카드)가 top: 42px 이므로 -42px 만큼 위로 */
    bottom: 8px;
    z-index: 1; /* 텍스트보다 뒤에 (필요시) */
}
.pba-link-card__logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 개별 로고 위치 */
.pba-link-card__logo--left {
    /* 원본 left: 8px (부모 카드 기준) */
    left: 8px;
}

.pba-link-card__logo--right {
    right: 8px;
}   

.pba-info-slider {
    width: 100%;
    height: 300px;
}
.pba-info-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pba-info-slider .pba-panel {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.banner_iconbox img{
    height: 40px;
}

.banner_slide img{
    width: 100%;
}

.section_socialtep{
    margin-top: 12px;
}



.banner_iconbox img{
    height: 40px;
}

.banner_slide img{
    width: 100%;
}

.section_socialtep {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.section_socialtep a {
    font-size: 18px;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}
.section_socialtep a.on,
.section_socialtep a:hover {
    color: #E52547;
    border-bottom-color: #E52547;
}

.no-data-social {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    color: #888;
    font-size: 16px;
    width: 100%;
}


.section_socialtep a {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.92px;
    letter-spacing: 0px;
    color: #ffffff;
    transition: 0.3s;
}
.section_socialtep a.on {
    color: rgba(255, 91, 120, 1);
}

/*신규배너 css끝*/