.webzine_latest {
    width: 100%;
}
.webzine_latest_ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.webzine_latest_li {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
}
.webzine_latest_thumb {
    flex-shrink: 0;
    width: 300px;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #ebeef3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}
.webzine_latest_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.webzine_latest_thumb:hover img {
    transform: scale(1.05);
}
.webzine_latest_info {
    flex: 1;
    min-width: 0;
    padding: 10px 0;
}
.wl_bo_subject {
    font-size: 16px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.wl_bo_subject a {
    text-decoration: none;
    color: inherit;
}
.wl_dot {
    opacity: 0.3;
    margin: 0 8px;
    color: #94a3b8;
}
.wl_title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.4;
    word-break: keep-all;
    letter-spacing: -0.5px;
}
.wl_title a {
    color: inherit;
    text-decoration: none;
}
.wl_title a:hover {
    text-decoration: underline;
}
.wl_meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #94a3b8;
}
.wl_sep {
    font-size: 15px;
    opacity: 0.5;
}
.empty_li {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
    background: #f8fafc;
    border-radius: 12px;
}

@media (max-width: 640px) {
    .webzine_latest_li {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .webzine_latest_thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    .webzine_latest_info {
        padding: 5px 0 10px;
    }
}
