.webzine-list {
    margin-bottom: 60px;
}

.webzine-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.webzine-item:hover,
.webzine-item.active {
    background-color: #f8f9fa;
    margin: 0 -24px;
    padding: 24px;
    border-radius: 12px;
    border-bottom: 1px solid transparent;
}

.webzine-item:last-child {
    border-bottom: none;
}

.item-thumbnail {
    width: 280px;
    height: 157px;
    /* 16:9 비율 (280px 기준) */
    background: linear-gradient(135deg, #3182f6 0%, #667eea 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-icon {
    width: 40px;
    height: 40px;
    color: white;
    opacity: 0.8;
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    min-height: 157px;
}

.content-top {
    flex: 1;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.item-category {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.item-category.notice {
    background-color: #e8f3ff;
    color: #3182f6;
}

.item-category.announcement {
    background-color: #fff4e6;
    color: #ff8800;
}

.item-category.general {
    background-color: #f1f3f4;
    color: #4e5968;
}

.item-title {
    font-size: 20px;
    font-weight: 600;
    color: #191f28;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-description {
    font-size: 14px;
    color: #8b95a1;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.item-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4e5968;
    font-size: 14px;
    font-weight: 500;
}

.author-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3182f6, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.item-date {
    font-size: 13px;
    color: #8b95a1;
    font-weight: 400;
}

.item-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8b95a1;
    font-size: 13px;
    font-weight: 400;
}

.stat-icon {
    width: 14px;
    height: 14px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.page-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #e5e8eb;
    background: white;
    color: #4e5968;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-button:hover {
    background: #f8f9fa;
    border-color: #d1d6db;
}

.page-button.active {
    background: #3182f6;
    color: white;
    border-color: #3182f6;
}

.page-button.disabled {
    color: #d1d6db;
    cursor: not-allowed;
}

.page-button.disabled:hover {
    background: white;
    border-color: #e5e8eb;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
    }

    .header h1 {
        font-size: 24px;
    }

    .webzine-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }

    .webzine-item:hover {
        margin: 0 -16px;
        padding: 20px 16px;
    }

    .item-thumbnail {
        width: 100%;
        height: 200px;
    }

    .item-content {
        min-height: auto;
    }

    .content-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .item-meta {
        align-self: stretch;
        justify-content: space-between;
    }

    .search-form {
        flex-direction: column;
    }

    .tab-list {
        gap: 24px;
    }
}
