/**
 * 오공스탁 게시판 뉴스형태
 */

.ogs-webzine-list { margin-top: 0; }
.ogs-webzine-notices { margin: 0; padding: 0; }
.ogs-webzine-notices .ogs-list-table { border-top: none; margin-top: 0; margin-bottom: 20px; }
.ogs-webzine-notices tbody { border-top: none; }
.ogs-webzine-notices tr.notice { border-top: none; }
.ogs-webzine-notices .pc-hidden { display: none; }

.ogs-webzine-item {
    display: flex;
    gap: 25px;
    padding: 20px;
    border-bottom: 1px solid var(--ogs-border);
    transition: 0.3s;
    border-radius: 8px;
}

.ogs-webzine-item:hover {
    background: rgba(var(--primary-red-rgb, 225, 33, 0), 0.03);
}

.ogs-webzine-thumb {
    flex: 0 0 240px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--ogs-light-gray);
    position: relative;
}

.ogs-webzine-item.no-thumb-item .ogs-webzine-thumb {
    display: none;
}

.ogs-webzine-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.ogs-webzine-item:hover .ogs-webzine-thumb img {
    transform: scale(1.05);
}

.ogs-webzine-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.ogs-webzine-content .subject {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ogs-webzine-item:hover .subject {
    color: var(--ogs-primary);
}

.ogs-webzine-content .summary {
    font-size: 15px;
    color: var(--ogs-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ogs-webzine-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

.ogs-webzine-info .info-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* NEW Icon Adjustments for Webzine */
.ogs-webzine-list .ogs-icon-new {
    top: -2px;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .ogs-webzine-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        margin: 0;
        border-radius: 0;
    }
    .ogs-webzine-thumb {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
    .ogs-webzine-content .subject {
        font-size: 18px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .ogs-webzine-content .summary {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    .ogs-webzine-notices .pc-hidden { display: inline-block !important; margin-bottom: 0; flex-shrink: 0; transform: translateY(1px); }
}

.ogs-webzine-list .no-data { padding: 100px 0; text-align: center; color: #999; border-top: 1px solid var(--ogs-border); }
