/* 웹진 리스트 2 - 모바일 썸네일+제목형 */
.webzine2_skin_m {
    width: 100%;
    background-color: #fff;
}

/* 섹션 헤더 */
.webzine2_header {
    margin-bottom: 15px;
    padding: 0 15px;
}

.webzine2_title {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.webzine2_item_m {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.webzine2_item_m:last-child {
    border-bottom: none;
}

/* 썸네일 고정 크기 */
.webzine2_thumb_m {
    display: block;
    width: 120px !important;
    height: 90px !important;
    overflow: hidden;
    background: #f5f5f5;
}

.webzine2_thumb_m img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/* 제목 */
.webzine2_text_m {
    font-size: 18px;
    line-height: 1.4;
}

.webzine2_text_m a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.webzine2_text_m a:hover {
    color: #0066cc;
}

