/* BASIC css start */
/* BASIC css start */
/* BASIC css start */
/* BASIC css start */
/* BASIC css start */
.tab-navi--links {
    margin-top: 20px;
    margin-bottom: 32px;
}
/* 기본 리셋 및 컨테이너 설정 */
ul.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.event-list + ul.event-list {margin-top:32px;}
.event-container {
     /* PC 환경 최대 넓이 (디자인에 맞게 수정) */
}

/* 리스트 그리드 (PC 2단 기준) */
.event-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2단 배열 */
    gap: 72px 12px; /* 세로 간격 40px, 가로 간격 24px */
}

/* 개별 아이템 디자인 */
.event-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.event-item:hover .img-box img {
    transform: scale(1.03); /* 마우스 오버 시 살짝 커지는 효과 */
}

/* 이미지 영역 */
.img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 804 / 280; /* 이미지 비율 고정 (디자인 원본에 맞게 조절 가능) */
    background-color: #f7f7f7;
}
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* 뱃지 (진행중) */
.badge {
    position: absolute;
    left: 12px;
    top: -15px;
    background-color: #fff;
    color: var(--main-color); /* 시안과 유사한 네이비/퍼플 톤 */
    font-size: 16px;
    font-weight: 700;
    padding: 5.5px 12px;
    border-radius: 28px;
}

/* 텍스트 영역 */
.txt-box {
    padding-top: 28px;
    position: relative;
}
.txt-box .date {
    font-size: 16px;
    color: #BBBBBB;
    margin: 0 0 6px 0;
    line-height: 1.37; /* 숫자가 깔끔하게 보이는 폰트 */
}
.txt-box .title {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin: 0;
    line-height: 1.45;
    word-break: keep-all; /* 단어 단위로 줄바꿈 */
} 


 .prds-btn {
     margin-top: 112px;
     text-align: center;
 }

.prds-btn a {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    max-width: 416px;
    width: 100%;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    gap: 6px;
}
 
@media screen and (max-width: 1024px) {
    .tab-navi--links {
    margin-top: 6px;
    margin-bottom: 20px;
}
    .event-container {
    }
    .event-list {
        grid-template-columns: 1fr; /* 1단 배열로 변경 */
        gap: 28px 0; /* 가로 간격 없애고 세로 간격만 유지 */
    }
    .event-list + .event-list {
    margin-top: 28px;
}
    .img-box {
        border-radius: 8px; /* 모바일에서는 모서리 둥글기를 살짝 줄임 */
    }
    .badge {
        left: 6px;
        top: -9px;
        font-size: 11px;
        padding: 3px 6px;
    }
    .txt-box {
        padding-top: 16px;
    }
    .txt-box .date {
        font-size: 11px;
        margin-bottom: 4px;
        line-height: 1;
    }
    .txt-box .title {
        font-size: 14px;
        line-height: 1;
    }
     .prds-btn {
         margin-top: 40px;
     }

     .prds-btn a {
         font-size: 12px;
         height: 37px;
     }
}


/* BASIC css end */


/* BASIC css end */


/* BASIC css end */


/* BASIC css end */


/* BASIC css end */

