/* GalleryArt */
.GalleryArt{
    overflow-x: auto;
    padding-bottom: 1em;
}
.GalleryArt__list{
    display: flex;
    flex-direction: row;
    overflow-x:auto;
    padding:0 1.4em;
    gap:.5em;
}
.GalleryArt__item{
	padding:.5em 0em 1em;
    position: relative;
}
.GalleryArt__item.empty .txt {
    background-color: #ffffff55;
    border-radius: 1em;
    margin-bottom: 1em;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-top:1em;
}
.GalleryArt__item.empty .txt span{font-size: 0.875em;color:#767676}
.GalleryArt__item .link{
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 100;
}
.GalleryArt__item .inner{
	width: 10em;
	background-color: #fff;
	border-radius: 1em;
	overflow:hidden;
	box-shadow: 0px 4px 10px 0px #3800AF26;
}
.GalleryArt__item.empty{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height:5em;
}
.GalleryArt__item .button{
    height: 3.75em;
    line-height: 3.75em;
    color: #fff;
    background-color: #4828bd;
    display: block;
    text-align: center;
    border-radius: .5em;
    width: 100%;
}
.GalleryArt__item .price{}
.GalleryArt__item .price i{font-style:normal;}
.GalleryArt__item .price span{font-size: 1em;display: flex;flex-direction: row;justify-content: start;align-items: center;gap:3px}
.GalleryArt__item .date{text-align: right;position: absolute;right:1.5em;bottom:2.5em;}
.GalleryArt__item .date span{font-size: 0.875em}
.GalleryArt__item .img{
	width: 100%;
	height:8em;
    position: relative;
}
.GalleryArt__item .img.sold_out:after{
    content:'';
    display: block;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 100;
    background-color: #0000006e;
}
.GalleryArt__item .img.sold_out::before{
    content:'판매완료';
    display: block;
    position: absolute;
    left:0;
    right:0;
    top:50%;
    margin-top:-1em;
    line-height: 2em;
    z-index: 1000;
    color:#fff;
    text-align: center;
}

.GalleryArt__item .img img{width: 100%;height:100%;object-fit: cover;}
.GalleryArt__item .inner .info{padding:1.5em 1em;min-height: 5.5em;}

.GalleryArt__item .info{font-size: 0.825em;overflow:hidden;}
.GalleryArt__item .info .artist{padding-bottom: .5em;}
.GalleryArt__item .info .title{font-weight: bold;overflow: hidden;}


.GalleryArt__title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 2em;
    padding-right: 1.4em;
    padding-left:1.4em;
}
.GalleryArt__title > span{font-weight:bold;font-size: 1.125em;color: #111111;}
.GalleryArt__title a{margin-right:2em;color:#767676;font-size:0.8em;display: block;position: relative;}
.GalleryArt__title a:after{
    display: block;
    content:'';
    position: absolute;
    right: -2em;
    top:50%;
    margin-top:-1em;
    width: 2em;
    height: 2em;
    background-image: url(/assets/images/icon_arrow_link.svg);
    background-size: 0.9em;
    background-position: center;
    background-repeat: no-repeat;
}