/* 타이틀 */
.prod8Title{
    text-align: center;
    margin-bottom: var(--space-large);
}
.prod8Title h1{
    font-size: var(--heading1);
    font-weight: 700;
    margin-bottom: var(--space-small);
}
.prod6List{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--space-normal);
}


.mob_prod6{
    display: none;
}
.intuStation.swiper{
    padding-bottom: 2rem;
}
.slideItemList figure{
    position: relative;
    border: 1px solid var(--background-color);
    margin-bottom: 2rem;
}
.prod6List figure{
    position: relative;
    border: 1px solid var(--background-color);
    margin-bottom: var(--space-normal);
}
.heart{
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
}
.heart.on{
    fill: var(--price-color);
}
.prodTxt{
    text-align: center;
}
.prodTxt a:nth-of-type(1){
    font-size: var(--detail);
    color: #787878;
}
.prodTxt h4 {
    font-weight: 700;
    margin-top: var(--space-small);
    margin-bottom: var(--space-normal);
}
.prodTxt h3{
    font-size: var(--heading3);
    font-weight: 700;
    color: var(--price-color);
    margin-top: var(--space-small);
}





@media (max-width:768px){
    .prod6{
        display: block;
    }
    
    .prod6List{
        display: none;
    }

    .mob_prod6{
        display: block;
    }

}