/* 웹진 리스트 2 - 2x2 그리드 썸네일+제목형 */
.webzine2_skin {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.webzine2_item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    align-items: center;
}

/* 썸네일 고정 크기 */
.webzine2_thumb {
    display: block;
    width: 110px !important;
    height: 80px !important;
    overflow: hidden;
    background: #f5f5f5;
}

.webzine2_thumb 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 {
    font-size: 14px;
    line-height: 1.5;
}

.webzine2_text a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.webzine2_text a:hover {
    color: #0066cc;
}