/*
 Theme Name:   GeneratePress Child (VibeCoding)
 Description:  카드뉴스 레이아웃을 위한 자식 테마
 Author:       VibeCoding
 Template:     generatepress
 Version:      1.0.0
*/

/* 349번 페이지 강제 그리드 적용 */
.vibe-card-news .entry-content .wp-block-query > ul {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3열 강제 */
    gap: 25px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 40px auto !important;
    max-width: 1200px !important;
}

/* 카드형 박스 디자인 */
.vibe-card-news .wp-block-post {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
    overflow: hidden !important;
}

/* 이미지 박스 고정 */
.vibe-card-news .wp-block-post-featured-image {
    margin: 0 !important;
    height: 200px !important;
}

.vibe-card-news .wp-block-post-featured-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .vibe-card-news .entry-content .wp-block-query > ul {
        grid-template-columns: 1fr !important;
    }
}

/* 349번 페이지(어제의 이슈 BLOG) 레이아웃 강제 교정 */
.page-id-349 .entry-content .wp-block-query > ul {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 무조건 3열 */
    gap: 25px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 40px auto !important;
    max-width: 1200px !important;
}

/* 개별 글 항목을 카드 뉴스로 변환 */
.page-id-349 .entry-content .wp-block-query > ul > li {
    display: flex !important;
    flex-direction: column !important; /* 수직 쌓기 */
    background: #ffffff !important;
    border-radius: 15px !important;
    border: 1px solid #eeeeee !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06) !important;
    overflow: hidden !important;
    margin: 0 !important;
    transition: transform 0.3s ease !important;
}

/* 카드 뉴스 이미지 영역 고정 */
.page-id-349 .wp-block-post-featured-image {
    margin: 0 !important;
    height: 200px !important;
}

.page-id-349 .wp-block-post-featured-image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* 제목 여백 및 스타일 */
.page-id-349 .wp-block-post-title {
    padding: 20px !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
}

/* 모바일 1열 대응 */
@media (max-width: 768px) {
    .page-id-349 .entry-content .wp-block-query > ul {
        grid-template-columns: 1fr !important;
    }
}