.sinner_ip_wrap {
  width:49%;
  height: 270px;
  background: transparent;
	border: 5px solid var(--bg);
  position: relative;
  overflow: hidden;
  display:flex;
  flex-direction:column;
}

.sinner_ip_wrap .ip_left {
  width: 50%;
  height:100%;
}

.sinner_ip_wrap .ip_img {
  width:500px;
  height:500px;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  right: -25%;
  top: -50%;
  background-size: cover;
  background-position: center;
  background-color: var(--accent10);
  border: 2px solid var(--accent10);
	opacity:1;
	mix-blend-mode: overlay;
	transition: ease 1s;
	z-index:4;
}

.sinner_ip_wrap .ip_img:hover {opacity: .3; transition: ease 1s;}

.threadlist {
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-evenly;
	gap:5px;
}

.threadlist .threadnext {
	width: 150px;
	display:flex;
	justify-content: center;
	align-items:center;
	padding:20px;
}

.threadlist .threadinfo {
	display:flex;
	max-width: calc(100% - 160px);
	flex-grow:1;
	flex-wrap:wrap;
	justify-content: space-evenly;
	gap:5px;
}