﻿@charset "UTF-8";
@import url('variables.css');

/*
    =======================
    MAIN
    =======================
*/
/* 메인 공통 */
.main{
    background: var(--eGray_900);
}
.main_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}
.main_section{
    margin-top: 40px;
    padding: 20px 0;
}
.main_section.main_section-mainBanner {
    padding: 0;
    padding-bottom: 40px;
    margin-top: 0;
    position: relative;
}
.main_section.main_section-gridGallery{
    padding: 0;
    margin-top: 0;
}
.main_section.main_section-career {
	padding: 0;
}
.main_section.main_section-bid {
	padding-top: 0;
	position: relative;
}
.main_section.main_section-bid::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: var(--eGray_800);
}
.main_section.main_section-museum {
	padding: 0 16px 40px 16px;
}

/* 섹션 내용 없음 */
.emptySection {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 40px 0;
}
.emptySection_txt {
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
	color: var(--eGray_300);
}
.emptySection_button.button {
	padding: var(--btn-padding-36);
	height: var(--btn-height-36);
	line-height: var(--btn-height-36);
	font-size: var(--btn-fontsize-36);
	gap: var(--btn-gap-36);
}

/* 타이틀 */
.mainTit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;
}
.mainTit_text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    color: var(--eWhite);
    text-transform: uppercase;
} 

/* main grid gallery */
.galleryItem {
    position: relative;
    transition: 0.4s;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.galleryItem_link {
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    z-index: 4;
    display: block;
}
.gridGallery_item.active .galleryItem_link, .galleryItem_link:focus {
    width: 100%;
    height: 100%;
}
.galleryItem_img {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}
.galleryItem_img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.50) 100%)
}
.gridGallery_item.active .galleryItem_img::after {
    display: none;
}
.galleryItem_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.galleryItem_video {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: 0.4s;
    visibility: hidden;
}
.galleryItem_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gridGallery_item.active .galleryItem_video {
    visibility: visible;
    opacity: 1;
}
.galleryItem_anotherInfo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: end;
    padding: 12px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.galleryItem_anotherText {
    color: var(--eWhite);
    font-size: 13.973px;
    font-weight: 700;
    line-height: 19.795px;
    word-break: keep-all; /* 20251105 추가 */
}
.galleryItem_anotherArw {
    display: block;
    width: 17.5px;
    height: 24px;
    background: url('../images/common/ico/ico_gridGallery_arw_another_mo.svg') no-repeat center;
    background-size: cover;
}
.galleryItem_br-conditional {
    display: none;
}
.galleryItem_info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: end;
    padding: 12px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.galleryItem_titWrap {
    display: none;
    margin-bottom: auto;
}
.galleryItem_brand {
    display: block;
    font-size: 14px;
    font-weight: 350;
    color: #f7f7f7;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.galleryItem_title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #f7f7f7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all; /* 20251105 추가 */
}
.galleryItem_desc1, .galleryItem_desc2 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--eWhite);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all; /* 20251105 추가 */
}
.galleryItem_desc1 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.40);
}
.galleryItem_desc2 {
    font-size: 16px;
    line-height: 24px;
}
.galleryItem_priceInfo {
    display: none;
}
.galleryItem_price {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #f7f7f7;
    line-height: 32px;
}
.galleryItem_discount {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #f7f7f7;
}
.gridGallery_item.active .galleryItem_info {
    top: auto;
    right: auto;
    left: 16px;
    bottom: 16px;
    width: 240px;
    height: 133px;
    padding: 16px;
    box-sizing: border-box;
    max-width: calc(100% - 32px);
    max-height: calc(100% - 32px);
    background: #1D1E1E4D;
    gap: 0;
}
.gridGallery_item.active .galleryItem_titWrap {
    display: block;
}
.gridGallery_item.active .galleryItem_desc1, .gridGallery_item.active .galleryItem_desc2 {
    display: none;
}
.gridGallery_item.active .galleryItem_priceInfo {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.gridGallery {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.gridGallery_item {
    position: absolute;
    box-sizing: border-box;
    transition: 0.4s;
    overflow: hidden;
}

.gridGallery_pagination {
    position: static;
    margin-top: 20px;
}
.gridGallery_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #353535;
    opacity: 1;
    border-radius: 1000px;
    margin: 0 5px !important;
}
.gridGallery_pagination .swiper-pagination-bullet-active {
    background: var(--eWhite);
}

:root {
    --gridGallery-item-width-long: 56.976%;
    --gridGallery-item-width-short: 42.093%;
    --gridGallery-item-height: 22.277%;
    --gridGallery-item-width-active: 100%;
    --gridGallery-item-height-active: 53.96%;
    --gridGallery-item-left-position-1: 0;
    --gridGallery-item-left-position-2-long: calc(var(--gridGallery-item-width-short) + 4px);
    --gridGallery-item-left-position-2-short: calc(var(--gridGallery-item-width-long) + 4px);
    --gridGallery-item-top-position-1: 0;
    --gridGallery-item-top-position-2: calc(var(--gridGallery-item-height-active) + 4px);
    --gridGallery-item-top-position-2-inactive: calc(var(--gridGallery-item-height) + 4px);
    --gridGallery-item-top-position-3: calc(var(--gridGallery-item-height-active) + var(--gridGallery-item-height) + 8px);
    --gridGallery-item-top-position-3-active: calc((var(--gridGallery-item-height) * 2) + 8px);
}

.gridGallery {
    aspect-ratio: 430 / 808;
}
/* aspect-ratio fallback */
.gridGallery::before {
    content: '';
    display: block;
    padding-top: calc(808 / 430 * 100%);
}

.gridGallery_item {
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}

/* position-1 */
.gridGallery[data-position="1"] .gridGallery_item:nth-child(1) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-1);
    width: var(--gridGallery-item-width-active);
    height: var(--gridGallery-item-height-active);
}
.gridGallery[data-position="1"] .gridGallery_item:nth-child(2) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-2);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="1"] .gridGallery_item:nth-child(3) {
    left: var(--gridGallery-item-left-position-2-short);
    top: var(--gridGallery-item-top-position-2);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="1"] .gridGallery_item:nth-child(4) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-3);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="1"] .gridGallery_item:nth-child(5) {
    left: var(--gridGallery-item-left-position-2-long);
    top: var(--gridGallery-item-top-position-3);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
/* position-2 */
.gridGallery[data-position="2"] .gridGallery_item:nth-child(1) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-2);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="2"] .gridGallery_item:nth-child(2) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-1);
    width: var(--gridGallery-item-width-active);
    height: var(--gridGallery-item-height-active);
}
.gridGallery[data-position="2"] .gridGallery_item:nth-child(3) {
    left: var(--gridGallery-item-left-position-2-short);
    top: var(--gridGallery-item-top-position-2);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="2"] .gridGallery_item:nth-child(4) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-3);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="2"] .gridGallery_item:nth-child(5) {
    left: var(--gridGallery-item-left-position-2-long);
    top: var(--gridGallery-item-top-position-3);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
/* position-3 */
.gridGallery[data-position="3"] .gridGallery_item:nth-child(1) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-2);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="3"] .gridGallery_item:nth-child(2) {
    left: var(--gridGallery-item-left-position-2-short);
    top: var(--gridGallery-item-top-position-2);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="3"] .gridGallery_item:nth-child(3) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-1);
    width: var(--gridGallery-item-width-active);
    height: var(--gridGallery-item-height-active);
}
.gridGallery[data-position="3"] .gridGallery_item:nth-child(4) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-3);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="3"] .gridGallery_item:nth-child(5) {
    left: var(--gridGallery-item-left-position-2-long);
    top: var(--gridGallery-item-top-position-3);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
/* position-4 */
.gridGallery[data-position="4"] .gridGallery_item:nth-child(1) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-1);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="4"] .gridGallery_item:nth-child(2) {
    left: var(--gridGallery-item-left-position-2-long);
    top: var(--gridGallery-item-top-position-1);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="4"] .gridGallery_item:nth-child(3) {
    left: var(--gridGallery-item-left-position-2-short);
    top: var(--gridGallery-item-top-position-2-inactive);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="4"] .gridGallery_item:nth-child(4) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-3-active);
    width: var(--gridGallery-item-width-active);
    height: var(--gridGallery-item-height-active);
}
.gridGallery[data-position="4"] .gridGallery_item:nth-child(5) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-2-inactive);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
/* position-5 */
.gridGallery[data-position="5"] .gridGallery_item:nth-child(1) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-1);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="5"] .gridGallery_item:nth-child(2) {
    left: var(--gridGallery-item-left-position-2-long);
    top: var(--gridGallery-item-top-position-1);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="5"] .gridGallery_item:nth-child(3) {
    left: var(--gridGallery-item-left-position-2-short);
    top: var(--gridGallery-item-top-position-2-inactive);
    width: var(--gridGallery-item-width-short);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="5"] .gridGallery_item:nth-child(4) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-2-inactive);
    width: var(--gridGallery-item-width-long);
    height: var(--gridGallery-item-height);
}
.gridGallery[data-position="5"] .gridGallery_item:nth-child(5) {
    left: var(--gridGallery-item-left-position-1);
    top: var(--gridGallery-item-top-position-3-active);
    width: var(--gridGallery-item-width-active);
    height: var(--gridGallery-item-height-active);
}

/* grid gallery 용 mediaQuery */
@media all and (min-width: 500px) and (max-width: 767px) {
    .gridGallery {
        aspect-ratio: unset;
        height: 904px;
    }
    /* aspect-ratio fallback */
    .gridGallery::before {
        display: none;
    }

    .galleryItem_br-conditional {
        display: block;
    }

    :root {
        --gridGallery-item-width-long: 56.976%;
        --gridGallery-item-width-short: 42.093%;
        --gridGallery-item-height: 22.277%;
        --gridGallery-item-width-active: 100%;
        --gridGallery-item-height-active: 53.96%;
        --gridGallery-item-left-position-1: 0;
        --gridGallery-item-left-position-2-long: calc(var(--gridGallery-item-width-short) + 4px);
        --gridGallery-item-left-position-2-short: calc(var(--gridGallery-item-width-long) + 4px);
        --gridGallery-item-top-position-1: 0;
        --gridGallery-item-top-position-2: calc(var(--gridGallery-item-height-active) + 4px);
        --gridGallery-item-top-position-2-inactive: calc(var(--gridGallery-item-height) + 4px);
        --gridGallery-item-top-position-3: calc(var(--gridGallery-item-height-active) + var(--gridGallery-item-height) + 8px);
        --gridGallery-item-top-position-3-active: calc((var(--gridGallery-item-height) * 2) + 8px);
    }
}

/* Card Slider */
.cardSlider {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.cardSlider_container.swiper-container {
	max-width: 1440px;
	padding: 0 16px;
	overflow: visible;
}
.cardSlider_wrapper.swiper-wrapper {
	overflow: visible;
}
.cardSlider::before,
.cardSlider::after {
	content:'';
	display: block;
	position: absolute;
	top: 0;
	height: 100%;
	width: calc((100% - 1440px) / 2);
	z-index: 10;
}
.cardSlider::before {
	left: 0;
}
.cardSlider::after {
	right: 0;
}
.cardSlider::before {
	background: transparent;
	background: linear-gradient(90deg, rgba(29,30,30,1) 60%, rgba(29,30,30,0) 100%);
}
.cardSlider::after {
	background: transparent;
	background: linear-gradient(270deg, rgba(29,30,30,1) 60%, rgba(29,30,30,0) 100%);
}

.cardSlider_item {
	width: 268.8px;
}
.cardItem {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.cardItem_card { 
	position: relative;
	aspect-ratio: 268.8 / 376.32;
}
/* aspect-ratio fallback */
.cardItem_card::after {
	content: '';
	display: block;
	padding-top: calc(376.32 / 268.8 * 100%);
}
.cardItem_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
}
.cardItem_img::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.cardItem_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.cardItem_info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 24px 20px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.cardItem_category {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: var(--eWhite);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
.cardItem_tit {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -1px;
	color: var(--eWhite);
	line-height: 32px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: keep-all;
}
.cardItem_tagList {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	height: 37px;
}
.cardItem_tagItem > a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--eWhite);
	font-weight: 500;
	line-height: 24px;
	height: 36px;
	box-sizing: border-box;
	border: 1px solid var(--eWhite);
	padding: 0 17px;
	border-radius: 1000px;
}

/* career */
.careerSlider {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.careerSlider_container.swiper-container {
	max-width: 1440px;
	padding: 0 16px;
	overflow: visible;
}
.careerSlider_wrapper.swiper-wrapper {
	overflow: visible;
}
.careerSlider::before,
.careerSlider::after {
	content:'';
	display: block;
	position: absolute;
	top: 0;
	height: 100%;
	width: calc((100% - 1440px) / 2);
	z-index: 10;
}
.careerSlider::before {
	left: 0;
}
.careerSlider::after {
	right: 0;
}
.careerSlider::before {
	background: transparent;
	background: linear-gradient(90deg, rgba(29,30,30,1) 60%, rgba(29,30,30,0) 100%);
}
.careerSlider::after {
	background: transparent;
	background: linear-gradient(270deg, rgba(29,30,30,1) 60%, rgba(29,30,30,0) 100%);
}

.careerSlider_item {
	width: 232px;
}
.careerCard {
	overflow: hidden;
	border-radius: 8px;
	background: var(--eWhite);
}
.careerCard > a {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-bottom: 16px;
}
.careerCard_img {
	aspect-ratio: 232/131;
	position: relative;
}
/* aspect-ratio fallback */
.careerCard_img::after {
	content: '';
	display: block;
	padding-top: calc(131 / 232 * 100%);
}
.careerCard_img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}
.careerCard_info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 16px;
}
.careerCard_top {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.careerCard_typeCont {
	display: flex;
	align-items: center;
	gap: 10px;
}
.careerCard_type {
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	color: var(--eGray_300);
}
.careerCard_divider {
	width: 1px;
	height: 12px;
	background: var(--eGray_200);
}
.careerCard_title {
	font-size: 20px;
	line-height: 24px;
	height: 48px;
	color: var(--eGray_900);
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.careerCard_period {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.careerCard_date {
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	color: var(--eGray_300);
}
.careerCard_dday {
	flex-shrink: 0;
}
.careerSlider_item.careerSlider_item-viewmore {
	width: 300px;
}
.careerCard-viewmore.careerCard {
	background: var(--gradient);
	height: 263px;
}
.careerCard-viewmore.careerCard > a {
	height: 100%;
	padding: 24px;
	box-sizing: border-box;
	align-items: flex-start;
	justify-content: flex-end;
}
.careerCard_viewmoreTxt {
	display: block;
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	color: var(--eWhite);
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: url('../images/common/ico/ico_career_plus.svg');
}

/* 입찰 */
.bidTitle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}
.bidTitle_title {
	color: var(--eWhite);
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
}
.bidTitle_desc {
	display: none;
}
.bidSlider {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.bidSlider_container.swiper-container {
	padding: 0 16px;
	overflow: visible;
}
.bidSlider_item.swiper-slide {
	width: 307px;
}
.bidItem {
	background: var(--eWhite);
	border-radius: 8px;
	overflow: hidden;
	box-sizing: border-box;
}
.bidItem > a {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
}
.bidItem_top {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.bidItem_typeCont {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.bidItem_type {
	color: var(--eGray_800);
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.bidItem_state {
	flex-shrink: 0;
}
.bidItem_titleWrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.bidItem_subTitle {
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	color: var(--eGray_300);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.bidItem_title {
	font-size: 20px;
	line-height: 24px;
	color: var(--eGray_900);
	font-weight: 700;
	height: 72px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bidItem_date {
	color: var(--eGray_300);
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
}
.bidEmpty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 120px;
	padding-bottom: 20px;
	position: relative;
	z-index: 2;
}
.bidEmpty_txt {
	color: var(--eGray_300); 
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
} 

/* 뮤지엄 */
.eMuseum_img img {
	display: block;
	width: 100%;
}
.eMuseum_info {
	background: var(--eWhite);
	padding: 24px 16px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
}
.eMuseum_textArea {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.eMuseum_title {
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	letter-spacing: -1px;
	color: var(--eBlack);
}
.eMuseum_desc {
	color: var(--eBlack);
	font-size: 16px;
	font-weight: 350;
	line-height: 24px;
}
.eMuseum_br {
	display: none;
}

/* ai 상품 추천 */
.mainTit.mainTit-ai {
    margin-bottom: 24px;
}
.mainTit_aiBtnArea {
    display: none;
}
.mainPrdSlider {
    overflow: hidden;
}
.mainPrdSlider .swiper-container {
    padding: 0 16px;
    overflow: visible;
}
.mainPrdSlider_item {
    width: 186px;
}
.mainPrdSlider_item:nth-child(even) {
    margin-top: 80px!important;
}
.mainPrdSlider_item > a {
    display: block;
}
.aiButton_wrap {
    padding: 24px 24px 0;
}
.aiButton.button.button-56 {
    font-size: 20px;
    font-weight: 600;
}

/* main product */
.mainPrd {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mainPrd_img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 186.00/209.82;
    object-fit: cover;
}
.mainPrd_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
} 
.mainPrd_brand {
    font-size: 16px;
    font-weight: 700;
    color: var(--eWhite);
    line-height: 24px;
}
.mainPrd_name {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--eWhite);
    min-height: 48px;
}
.mainPrd_price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.mainPrd_priceReal {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--eWhite);
}
.mainPrd_priceOriginal {
    display: none;
}
.mainPrd_priceReal span {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}
.mainPrd_sale {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--eRed);
}

/*
    ===================================================================================================================
    PC/TAB
    ===================================================================================================================
*/

/*
    =======================
    768 ~
    =======================
*/
@media all and (min-width: 768px) {
    /* main 공통 */
    .main_section{
        margin-top: 0;
        padding: 80px 0;
    }
    .main_section.main_section-mainBanner {
        padding-bottom: 80px;
        margin-top: -90px;
    }
    .main_section.main_section-gridGallery{
        padding-top: 0;
        padding-bottom: 40px;
    }
	.main_section.main_section-career {
		padding: 80px 0;
	}
    .main_section.main_section-bid {
        padding-bottom: 0;
    }
	.main_section.main_section-bid::before {
		height: calc(100% - 100px);
	}
    .main_section.main_section-museum {
		padding-top: 80px;
        padding-bottom: 115px;
    }

	/* 섹션 내용 없음 */
	.emptySection {
		gap: 30px;
		padding: 30px 0 64px;
	}
	.emptySection_txt {
		font-size: 24px;
		font-weight: 700;
		line-height: 34px;
	}
	.emptySection_button.button {
		padding: var(--btn-padding-48);
		height: var(--btn-height-48);
		line-height: var(--btn-height-48);
		font-size: var(--btn-fontsize-48);
		gap: var(--btn-gap-48);
	}

    /* 타이틀 */
	.mainTit {
        position: relative;
        justify-content: flex-end;
        height: 84px;
		padding: 0 20px;
        margin-bottom: 30px;
    }
    .mainTit_text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 50%;
		font-weight: 900;
    }
	.mainTit .mainTit_viewmore.button {
		gap: var(--btn-gap-36);
		padding: var(--btn-padding-36);
		height: var(--btn-height-36);
		line-height: var(--btn-height-36);
		font-size: var(--btn-fontsize-36);
	}
	.mainTit .mainTit_viewmore.button.button-icon-left {
		padding: var(--btn-padding-icon-left-36);
	}
	.mainTit .mainTit_viewmore.button.button-icon-right {
		padding: var(--btn-padding-icon-right-36);
	}

    /* main grid gallery */
    .main_gridGalleryArea {
        margin: 0 auto;
        max-width: 1440px;
    }
    .galleryItem_anotherInfo {
        padding: 20px;
        gap: 8px;
    }
    .galleryItem_info {
        padding: 20px;
    }
    .galleryItem_brand {
        font-size: 16px;
    }
    .galleryItem_title {
        font-size: 20px;
        line-height: 28px;
    }
    .galleryItem_desc1 {
        font-size: 18px;
        line-height: 24px;
        font-weight: 900;
    }
    .galleryItem_desc2 {
        font-size: 16px;
        line-height: 22px;
    }
    .gridGallery_item.active .galleryItem_info {
        left: 20px;
        bottom: 20px;
        width: 240px;
        height: 146px;
        max-width: calc(100% - 40px);
        max-height: calc(100% - 40px);
        gap: 0;
    }
    .galleryItem_price {
        font-size: 28px;
        line-height: 34px;
    }
    .galleryItem_discount {
        font-size: 20px;
        line-height: 28px;
    }
    .gridGallery_item.active .galleryItem_arw {
        width: 41.5px;
        height: 32px;
        position: absolute;
        z-index: 2;
        bottom: 20px;
        right: 20px;
        background-image: url('../images/common/ico/ico_gridGallery_arw_white_pc.png');
        background-size: cover;
    }

    .gridGallery {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .gridGallery_item {
        position: absolute;
        box-sizing: border-box;
        transition: 0.4s;
        overflow: hidden;
    }

    :root {
        --gridGallery-item-width: 23.75%;
        --gridGallery-item-height-short: 39.567%;
        --gridGallery-item-height-long: 59.351%;
        --gridGallery-item-width-active: 51.388%;
        --gridGallery-item-height-active: 100%;
        --gridGallery-item-left-position-1: 0;
        --gridGallery-item-left-position-2: calc(var(--gridGallery-item-width) + 8px);
        --gridGallery-item-left-position-3: calc(var(--gridGallery-item-width-active) + 8px);
        --gridGallery-item-left-position-4: calc(var(--gridGallery-item-width-active) + var(--gridGallery-item-width) + 16px);
        --gridGallery-item-left-position-3-active: calc((var(--gridGallery-item-width) * 2) + 16px);
        --gridGallery-item-top-position-1: 0;
        --gridGallery-item-top-position-2-long: calc(var(--gridGallery-item-height-short) + 8px);
        --gridGallery-item-top-position-2-short: calc(var(--gridGallery-item-height-long) + 8px);
    }

    .gridGallery {
        aspect-ratio: 1440 / 740;
    }
    /* aspect-ratio fallback */
    .gridGallery::before {
        padding-top: calc(740 / 1440 * 100%);
    }

    .gridGallery_item {
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }

    /* position-1 */
    .gridGallery[data-position="1"] .gridGallery_item:nth-child(1) {
        left: var(--gridGallery-item-left-position-1);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width-active);
        height: var(--gridGallery-item-height-active);
    }
    .gridGallery[data-position="1"] .gridGallery_item:nth-child(2) {
        left: var(--gridGallery-item-left-position-3);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    .gridGallery[data-position="1"] .gridGallery_item:nth-child(3) {
        left: var(--gridGallery-item-left-position-3);
        top: var(--gridGallery-item-top-position-2-long);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    .gridGallery[data-position="1"] .gridGallery_item:nth-child(4) {
        left: var(--gridGallery-item-left-position-4);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    .gridGallery[data-position="1"] .gridGallery_item:nth-child(5) {
        left: var(--gridGallery-item-left-position-4);
        top: var(--gridGallery-item-top-position-2-short);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    /* position-2 */
    .gridGallery[data-position="2"] .gridGallery_item:nth-child(1) {
        left: var(--gridGallery-item-left-position-3);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    .gridGallery[data-position="2"] .gridGallery_item:nth-child(2) {
        left: var(--gridGallery-item-left-position-1);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width-active);
        height: var(--gridGallery-item-height-active);
    }
    .gridGallery[data-position="2"] .gridGallery_item:nth-child(3) {
        left: var(--gridGallery-item-left-position-3);
        top: var(--gridGallery-item-top-position-2-long);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    .gridGallery[data-position="2"] .gridGallery_item:nth-child(4) {
        left: var(--gridGallery-item-left-position-4);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    .gridGallery[data-position="2"] .gridGallery_item:nth-child(5) {
        left: var(--gridGallery-item-left-position-4);
        top: var(--gridGallery-item-top-position-2-short);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    /* position-3 */
    .gridGallery[data-position="3"] .gridGallery_item:nth-child(1) {
        left: var(--gridGallery-item-left-position-3);
        top: var(--gridGallery-item-top-position-2-long);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    .gridGallery[data-position="3"] .gridGallery_item:nth-child(2) {
        left: var(--gridGallery-item-left-position-3);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    .gridGallery[data-position="3"] .gridGallery_item:nth-child(3) {
        left: var(--gridGallery-item-left-position-1);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width-active);
        height: var(--gridGallery-item-height-active);
    }
    .gridGallery[data-position="3"] .gridGallery_item:nth-child(4) {
        left: var(--gridGallery-item-left-position-4);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    .gridGallery[data-position="3"] .gridGallery_item:nth-child(5) {
        left: var(--gridGallery-item-left-position-4);
        top: var(--gridGallery-item-top-position-2-short);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    /* position-4 */
    .gridGallery[data-position="4"] .gridGallery_item:nth-child(1) {
        left: var(--gridGallery-item-left-position-1);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    .gridGallery[data-position="4"] .gridGallery_item:nth-child(2) {
        left: var(--gridGallery-item-left-position-2);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    .gridGallery[data-position="4"] .gridGallery_item:nth-child(3) {
        left: var(--gridGallery-item-left-position-1);
        top: var(--gridGallery-item-top-position-2-short);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    .gridGallery[data-position="4"] .gridGallery_item:nth-child(4) {
        left: var(--gridGallery-item-left-position-3-active);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width-active);
        height: var(--gridGallery-item-height-active);
    }
    .gridGallery[data-position="4"] .gridGallery_item:nth-child(5) {
        left: var(--gridGallery-item-left-position-2);
        top: var(--gridGallery-item-top-position-2-long);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    /* position-5 */
    .gridGallery[data-position="5"] .gridGallery_item:nth-child(1) {
        left: var(--gridGallery-item-left-position-1);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    .gridGallery[data-position="5"] .gridGallery_item:nth-child(2) {
        left: var(--gridGallery-item-left-position-2);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    .gridGallery[data-position="5"] .gridGallery_item:nth-child(3) {
        left: var(--gridGallery-item-left-position-1);
        top: var(--gridGallery-item-top-position-2-short);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-short);
    }
    .gridGallery[data-position="5"] .gridGallery_item:nth-child(4) {
        left: var(--gridGallery-item-left-position-2);
        top: var(--gridGallery-item-top-position-2-long);
        width: var(--gridGallery-item-width);
        height: var(--gridGallery-item-height-long);
    }
    .gridGallery[data-position="5"] .gridGallery_item:nth-child(5) {
        left: var(--gridGallery-item-left-position-3-active);
        top: var(--gridGallery-item-top-position-1);
        width: var(--gridGallery-item-width-active);
        height: var(--gridGallery-item-height-active);
    }

	/* 메인 카드 리스트 */
	.main_cardList.swiper-container {
		padding: 0 20px;
	}

	/* 커리어 슬라이더 */
	.careerSlider {
		margin-top: 30px;
	}
	.careerSlider_container.swiper-container {
		padding: 0 20px;
	}
	.careerSlider_item {
		width: 342px;
	}
	.careerCard_type {
		font-size: 14px;
		line-height: 21px;
	}
	.careerCard_divider {
		width: 1px;
		height: 14.5px;
	}
	.careerCard_title {
		font-size: 24px;
		line-height: 34px;
		height: 68px;
	}
	.careerCard_date {
		font-size: 14px;
		line-height: 21px;
	}
	.careerCard-viewmore.careerCard {
		height: 348.1px;
	}
	.mainTit_viewmore.mainTit_viewmore-career {
		display: none;
	}
	.careerSlider_item.careerSlider_item-viewmore {
		width: 342px;
	}

	/* 입찰 */
	.bidTitle {
		padding: 40px 0 54px 40px;
		flex-direction: column;
		align-items: flex-start;
		gap: 40px;
	}
	.bidTitle_textArea {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
	.bidTitle_title {
		font-weight: 900;
	}
	.bidTitle_desc {
		display: block;
		color: var(--eWhite);
		font-size: 24px;
		font-weight: 500;
		line-height: 32px;
		letter-spacing: -1px;
	}
	.bidTitle_btn {
		padding: var(--btn-padding-48);
		height: var(--btn-height-48);
		line-height: var(--btn-height-48);
		font-size: var(--btn-fontsize-48);
		gap: var(--btn-gap-48);
	}
	.bidSlider_container.swiper-container {
		padding: 0 40px;
	}
	.bidSlider_item.swiper-slide {
		width: 464px;
	}
	.bidItem > a {
		gap: 40px;
		padding: 32px;
	}
	.bidItem_top {
		gap: 24px;
	}
	.bidItem_type {
		color: var(--eGray_900);
		font-size: 18px;
		font-weight: 700;
		line-height: 24px;
	}
	.bidItem_state.button {
		padding: var(--btn-padding-36);
		height: var(--btn-height-36);
		line-height: var(--btn-height-36);
		font-size: var(--btn-fontsize-36);
		gap: var(--btn-gap-36);
	}
	.bidItem_titleWrap {
		gap: 8px;
	}
	.bidItem_subTitle {
		font-size: 24px;
		font-weight: 500;
		line-height: 32px;
		color: var(--eGray_800);
	}
	.bidItem_title {
		font-size: 24px;
		line-height: 34px;
		color: var(--eGray_900);
		height: 66px;
	}
	.bidItem_date {
		font-size: 18px;
		line-height: 24px;
	}
	.bidEmpty {
		height: 234px;
		padding-bottom: 100px;
	}
	.bidEmpty_txt {
		font-size: 24px;
		line-height: 34px;
		font-weight: 700;
	} 

	/* 뮤지엄 */
	.eMuseum {
		display: flex;
		flex-direction: column-reverse;
		gap: 40px;
	}
	.eMuseum_info {
		background: transparent;
		padding: 0;
		gap: 40px;
	}
	.eMuseum_title {
		font-size: 32px;
		font-weight: 900;
		line-height: 48px;
		letter-spacing: 0;
		color: var(--eWhite);
	}
	.eMuseum_desc {
		font-size: 24px;
		font-weight: 500;
		line-height: 32px;
		letter-spaceing: -1px;
		color: var(--eWhite);
	}
	.eMuseum_btn.button.button-outline.button-black {
		padding: var(--btn-padding-48);
		height: var(--btn-height-48);
		line-height: var(--btn-height-48);
		font-size: var(--btn-fontsize-48);
		gap: var(--btn-gap-48);
		border-color: var(--eWhite);
		color: var(--eWhite);
	}
	.eMuseum_br {
		display: inline;
	}

    /* ai 상품 추천 */
    .mainTit.mainTit-ai {
        padding-top: 88px;
        padding-bottom: 24px;
        margin-bottom: 10px;
        height: auto;
    }
    .mainTit.mainTit-ai .mainTit_text {
        top: 24px;
        transform: translate(-50%, 0);
    }
    .mainTit_aiBtnArea {
        display: flex;
        align-items: center;
        gap: 22px;
    }
    .mainTit_balloon {
        display: block;
        position: relative;
        padding: 8px 12px;
        background: #353535;
        border-radius: 2px;
        font-size: 16px;
        font-weight: 500;
        color: var(--eWhite);
    }
    .mainTit_balloon::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 50%;
        transform: translateY(-50%);
        border-width: 6px 0 6px 12px;
        border-style: solid;
        border-color: transparent transparent transparent #353535;
        width: 0;
        height: 0;
    }
    .mainPrdSlider .swiper-container {
        padding: 0 20px;
    }
    .mainPrdSlider .swiper-wrapper {
        flex-wrap: wrap;
        gap: 40px 25px; 
    }
    .mainPrdSlider_item {
        width: calc((100% - (25px * 2)) / 3);
    }
    .mainPrdSlider_item:nth-child(even) {
        margin-top: 0!important;
    }
    .mainPrd {
        gap: 6.95px;
    }
    .mainPrd_img img {
        aspect-ratio: 1 / 1;
    }
    .mainPrd_info {
        gap: 5.21px;
    }
    .mainPrd_brand {
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
    }
    .mainPrd_name {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        min-height: 48px;
    }
    .mainPrd_price {
        flex-direction: row;
        justify-content: space-between;
    }
    .mainPrd_priceReal {
        font-size: 20px;
        line-height: 24px;
    }
    .mainPrd_priceReal span {
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
    }
    .mainPrd_sale {
        font-size: 20px;
        line-height: 24px;
    }
}

/* 커리어 슬라이더 중앙 정렬 관련 미디어 쿼리 */
/* 
	768 ~ 
	2개 이하면 고정

	1120 ~ 
	3개 이하면 고정

	1490 ~ 
	4개 이하면 고정
*/
@media all and (min-width: 768px) {
	.careerSlider_container.careerSlider-has-2-slides .careerSlider_wrapper {
		justify-content: center;
		transform: none!important;
	}
	.careerSlider_container.careerSlider-has-2-slides .careerSlider_item:last-of-type {
		margin-right: 0!important;
	}
}
@media all and (min-width: 1120px) {
	.careerSlider_container.careerSlider-has-3-slides .careerSlider_wrapper {
		justify-content: center;
		transform: none!important;
	}
	.careerSlider_container.careerSlider-has-3-slides .careerSlider_item:last-of-type {
		margin-right: 0!important;
	}
}
@media all and (min-width: 1490px) {
	.careerSlider_container.careerSlider-has-4-slides .careerSlider_wrapper {
		justify-content: center;
		transform: none!important;
	}
	.careerSlider_container.careerSlider-has-4-slides .careerSlider_item:last-of-type {
		margin-right: 0!important;
	}
}

/* 메인 배너 관련 미디어 쿼리 */
@media all and (min-width: 1366px) {
    .main_section.main_section-mainBanner {
        margin-top: -100px;
    }
}

/*
    =======================
    1024 ~ 
    =======================
*/
@media all and (min-width: 1024px) {
    /* 메인 공통 */
    .main_section.main_section-mainBanner {
        padding-bottom: 120px;
    }
    .main_section.main_section-gridGallery {
        padding-bottom: 120px;
    }
    .main_section.main_section-ai {
        padding: 50px 0;
    }
    .main_section.main_section-career {
        padding-bottom: 120px;
    }
    .main_section.main_section-bid {
        padding-top: 103px;
        padding-bottom: 103px;
    }
	.main_section.main_section-bid::before {
		height: 100%;
		width: 49.375%;
	}

    /* main grid gallery */
    .galleryItem_anotherInfo {
        padding: 24px;
    }
    .galleryItem_anotherText {
        font-size: 24px;
        line-height: 34px;
    }
    .galleryItem_anotherArw {
        width: 17.5px;
        height: 16px;
        background-image: url('../images/common/ico/ico_gridGallery_arw_another_pc.svg');
    }
    .galleryItem_info {
        padding: 24px;
    }
    .galleryItem_desc1 {
        font-size: 28px;
        line-height: 34px;
    }
    .galleryItem_desc2 {
        font-size: 24px;
        line-height: 32px;
    }

	/* 입찰 */
	.bidContainer {
		max-width: 1440px;
		margin: 0 auto;
		overflow: visible;
		display: flex;
		align-items: center;
		gap: 24px;
	}
	.bidTitle {
		gap: 115px;
	}
	.bidSlider_container.swiper-container {
		padding: 0 24px;
	}

	/* 뮤지엄 */
	.eMuseum {
		flex-direction: row-reverse;
		align-items: center;
		gap: 24px;
	}
	.eMuseum_img {
		width: 50%;
	}
	.eMuseum_info {
		width: 50%;
		gap: 115px;
	}

    
    /* ai 상품 추천 */
    .mainTit.mainTit-ai {
        height: 96px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .mainTit.mainTit-ai .mainTit_text {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .mainPrdSlider .swiper-container {
        padding: 0;
    }
    .mainPrdSlider .swiper-wrapper {
        gap: 40px 24px; 
    }
    .mainPrdSlider_item {
        width: calc((100% - (24px * 3)) / 4);
    }
    .mainPrd {
        gap: 8px;
    }
    .mainPrd_info {
        gap: 6px;
    }
    .mainPrd_brand {
        font-size: 18px;
        line-height: 24px;
    }
    .mainPrd_name {
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
        min-height: 56px;
    }
    .mainPrd_priceInner {
        display: flex;
        flex-direction: row;
        gap: 4px;
        align-items: flex-end;
    }
    .mainPrd_priceReal {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -1px;
    }
    .mainPrd_priceReal span {
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
    }
    .mainPrd_priceOriginal {
        display: block;
        font-size: 16px;
        line-height: 24px;
        font-weight: 300;
        text-decoration-line: line-through;
        color: var(--eGray_200);
    }
    .mainPrd_sale {
        font-size: 20px;
        line-height: 24px;
    }
}

/*
    =======================
    1440 ~ 
    =======================
*/
@media all and (min-width: 1440px) {
	/* title */
	.mainTit {
		padding-left: 0;
		padding-right: 0;
	}
	/* 카드 슬라이더 */
	.cardSlider_container.swiper-container {
		padding: 0px;
	}
	/* 입찰 */
	.bidContainer {
		max-width: calc(1440px + ((100% - 1440px) / 2));
		margin-left: calc((100% - 1440px) / 2);
		overflow: visible;
		display: flex;
		align-items: center;
		gap: 100px;
	}
	.bidTitle {
		padding: 0;
	}
}