/* 웹진 최신글 기본 스타일 */
.webzine_latest {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Malgun Gothic', Dotum, sans-serif;
    box-sizing: border-box;
}

.webzine_title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: bold;
    border-bottom: 2px solid #eee;
}

.webzine_title a {
    color: #333;
    text-decoration: none;
}

.more_btn {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    color: #666;
    font-weight: normal;
    transition: all 0.3s;
}

.more_btn:hover {
    color: #0066cc;
}

.more_btn i {
    margin-left: 3px;
}

/* 웹진 컨테이너 스타일 */
.webzine_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.webzine_item {
    display: flex;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 이미지 영역 (공통) */
.webzine_img_wrap {
    position: relative;
    flex: 0 0 40%;
    min-height: 180px;
    overflow: hidden;
}

.webzine_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* 콘텐츠 영역 (공통) */
.webzine_content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* 뱃지 스타일 */
.badge {
    position: absolute;
    top: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

.badge.new {
    right: 10px;
    background: #ff4d4d;
}

.badge.hot {
    left: 10px;
    background: #ff6b6b;
}

/* 제목 스타일 */
.webzine_subject {
    margin: 0 0 10px 0;
    font-size: 22px;
    line-height: 1.4;
}

.webzine_subject a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.webzine_subject a:hover {
    color: #0066cc;
}

/* 정보 영역 */
.webzine_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: #777;
    gap: 10px;
}

.webzine_info i {
    margin-right: 3px;
}

.webzine_info .comment {
    color: #ff6b6b;
}

/* 설명 텍스트 */
.webzine_desc {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 게시물 없을 때 */
.webzine_empty {
    padding: 50px 0;
    text-align: center;
    color: #999;
    grid-column: 1 / -1;
}

/* 모바일 반응형 스타일 (좌우 레이아웃 유지) */
@media (max-width: 768px) {
    .webzine_container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .webzine_item {
        flex-direction: row; /* 모바일에서도 좌우 레이아웃 유지 */
    }
    
    .webzine_img_wrap {
        flex: 0 0 120px; /* 모바일에서 이미지 너비 조정 */
        min-height: 100px;
    }
    
    .webzine_content {
        padding: 10px;
    }
    
    .webzine_title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .webzine_subject {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .webzine_desc {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .more_btn {
        font-size: 13px;
    }
}

/* 태블릿 반응형 스타일 */
@media (min-width: 769px) and (max-width: 1024px) {
    .webzine_container {
        gap: 20px;
    }
    
    .webzine_img_wrap {
        min-height: 160px;
    }
}
