/* 웹진 리스트 3 - 1열 세로 리스트 썸네일+제목형 */
.webzine3_skin {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100% !important;
    max-width: 100% !important;
}

.webzine3_item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
}

.webzine3_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* 썸네일 고정 크기 */
.webzine3_thumb {
    display: block;
    width: 110px !important;
    height: 80px !important;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.webzine3_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;
    transition: transform 0.3s ease;
}

.webzine3_thumb:hover img {
    transform: scale(1.05);
}

/* 제목 */
.webzine3_text {
    font-size: 15px;
    line-height: 1.6;
}

.webzine3_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;
    word-break: keep-all;
}

.webzine3_text a:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* 반응형 */
@media (max-width: 768px) {
    .webzine3_item {
        grid-template-columns: 100px 1fr;
        gap: 14px;
        padding-bottom: 14px;
    }
    
    .webzine3_thumb {
        width: 100px !important;
        height: 72px !important;
    }
    
    .webzine3_text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .webzine3_text a {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .webzine3_skin {
        gap: 12px;
    }
    
    .webzine3_item {
        grid-template-columns: 85px 1fr;
        gap: 12px;
        padding-bottom: 12px;
    }
    
    .webzine3_thumb {
        width: 85px !important;
        height: 60px !important;
    }
    
    .webzine3_text {
        font-size: 13px;
    }
}

