/* =========================================================
   공통 요소
========================================================= */
:root {
  --color-point: #cc9900;
  --content-width: 1100px;
  --section-gap: 80px;
}

/* 스크린리더 전용 문구 */
.blind {
  overflow: hidden;
  position: absolute;

  width: 1px;
  height: 1px;
  margin: -1px;

  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* 공통 콘텐츠 너비 */
.section-inner {
  width: calc(100% - 40px);
  max-width: var(--content-width);
  margin: 0 auto;
}

/*
  첫 섹션 위쪽 80px
  마지막 섹션 아래쪽 80px
*/
.site-main {
  width: 100%;
  padding: var(--section-gap) 0;
}

/* 각 섹션 사이 간격 80px */
.page-section + .page-section {
  margin-top: var(--section-gap);
}


/* =========================================================
   첫 번째 메인 영역
========================================================= */
.lux-hero {
  width: 100%;
}

.lux-hero__title {
  text-align: center;
}

.lux-hero__title h1 {
  margin: 0;

  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.065em;
}

.lux-hero__point {
  display: block;

  margin-top: 4px;

  color: var(--color-point);
}


/* =========================================================
   검색창
========================================================= */
.lux-search {
  display: flex;
  align-items: center;

  width: 100%;
  max-width: 640px;
  height: 56px;

  margin: 35px auto 0;
  padding: 0 12px 0 27px;

  background-color: #ffffff;
  border: 1.5px solid var(--color-point);
  border-radius: 50px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lux-search:focus-within {
  border-color: #ad8200;
  box-shadow: 0 5px 18px rgba(204, 153, 0, 0.13);
}

.lux-search__input {
  flex: 1;
  min-width: 0;
  height: 100%;

  color: #222222;
  background: transparent;
  border: 0;
  outline: 0;

  letter-spacing: -0.035em;
}

.lux-search__input::placeholder {
  color: #666666;
  opacity: 1;
}

/* 검색 input 기본 X 버튼 제거 */
.lux-search__input::-webkit-search-cancel-button {
  display: none;
}

.lux-search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  color: #111111;
  border-radius: 50%;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.lux-search__button:hover,
.lux-search__button:focus-visible {
  color: var(--color-point);
  background-color: #fff8e6;
}

.lux-search__button svg {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   주요 장점
========================================================= */
.lux-benefit {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;

  width: 100%;
  max-width: 960px;

  margin: 35px auto 0;
}

.lux-benefit__item {
  display: flex;
  align-items: center;
  min-width: 0;
}

.lux-benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 54px;
  height: 54px;
  margin-right: 15px;

  border-radius: 50%;
}

.lux-benefit__icon svg {
  width: 30px;
  height: 30px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lux-benefit__icon--mint {
  color: #00a89e;
  background-color: #e9faf7;
}

.lux-benefit__icon--blue {
  color: #1479e8;
  background-color: #eaf4ff;
}

.lux-benefit__icon--purple {
  color: #8c28d8;
  background-color: #f5edff;
}

.lux-benefit__icon--yellow {
  color: #e47f00;
  background-color: #fff5dc;
}

.lux-benefit__text {
  min-width: 0;
}

.lux-benefit__text h2 {
  margin: 0;

  color: #161616;
  line-height: 1.35;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.lux-benefit__text p {
  margin: 4px 0 0;

  line-height: 1.4;
  letter-spacing: -0.035em;
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .section-inner {
    width: 100%;
    padding: 0 30px;
  }

  .lux-benefit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 50px;

    max-width: 700px;
  }

  .lux-benefit__item {
    justify-content: flex-start;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  :root {

  --section-gap: 60px;
}


  .section-inner {
    padding: 0 20px;
  }

  .lux-hero__title h1 {
    line-height: 1.3;
  }

  .lux-search {
    height: 54px;
    margin-top: 30px;
    padding-left: 21px;
  }

  .lux-benefit {
    gap: 27px 25px;
    margin-top: 40px;
  }

  .lux-benefit__icon {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }

  .lux-benefit__icon svg {
    width: 27px;
    height: 27px;
  }

  .lux-benefit__text h2 {
    white-space: normal;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 560px) {
  .section-inner {
    padding: 0 18px;
  }

  .lux-hero__title h1 span:not(.lux-hero__point) {
    display: inline;
  }

  .lux-search {
    height: 52px;
    padding-right: 7px;
    padding-left: 18px;
  }

  .lux-search__button {
    width: 40px;
    height: 40px;
  }

  .lux-search__button svg {
    width: 23px;
    height: 23px;
  }

  .lux-benefit {
    grid-template-columns: 1fr;
    gap: 22px;

    max-width: 310px;
  }

  .lux-benefit__item {
    width: 100%;
  }

  .lux-benefit__icon {
    width: 52px;
    height: 52px;
    margin-right: 16px;
  }
}




/* =========================================================
   두 번째 서비스 요약 영역
========================================================= */
.lux-summary {
  width: 100%;
}

.lux-summary__top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}


/* =========================================================
   상단 공통 카드
========================================================= */
.lux-summary-card {
  position: relative;

  display: flex;
  align-items: stretch;

  min-width: 0;
  min-height: 200px;
  padding: 28px 30px;

  overflow: hidden;

  background-color: #fffdfa;
  border: 1px solid #e8deca;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(64, 48, 14, 0.025);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.lux-summary-card:hover {
  border-color: rgba(204, 153, 0, 0.5);
  box-shadow: 0 10px 30px rgba(77, 57, 12, 0.08);
  transform: translateY(-3px);
}

.lux-summary-card__content {
  position: relative;
  z-index: 2;

  flex: 1;
  min-width: 0;
}

.lux-summary-card__image {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.lux-summary-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lux-summary-card__image--gold {
  width: 145px;
  margin-left: 8px;
}

.lux-summary-card__image--luxury {
  align-self: flex-end;

  width: 165px;
  margin: 0 -5px -9px 0;
}


/* =========================================================
   금 시세 카드
========================================================= */
.lux-summary-card__heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lux-summary-card__heading h2 {
  margin: 0;
  color: #111111;
}

.gold-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;

  margin-top: 19px;
}

.gold-price strong {
  color: #111111;
  letter-spacing: -0.045em;
}

.gold-price__unit {
  margin-left: 3px;
  color: #444444;
}

.gold-price__change {
  margin-left: 13px;
  color: #ff3030;
}

.gold-price__change span {
  margin-right: 2px;
  font-size: 11px;
}

.gold-market-info {
  display: flex;
  align-items: stretch;
  gap: 8px;

  margin-top: 27px;
}

.gold-market-info__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;


  min-height: 48px;
  padding: 0 13px;

  white-space: nowrap;

  background-color: #ffffff;
  border: 1px solid #e6e0d5;
}

.gold-market-info__item span {
  color: #333333;
}

.gold-market-info__item strong {
  color: #333333;
}


/* =========================================================
   공통 포인트 버튼
========================================================= */
.lux-point-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  min-height: 48px;
  padding: 0 20px;

  color: #ffffff;
  white-space: nowrap;

  background-color: var(--color-point);
  border: 1px solid var(--color-point);
  border-radius: 3px;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.lux-point-button:hover,
.lux-point-button:focus-visible {
  background-color: #ad8200;
  border-color: #ad8200;
  transform: translateY(-2px);
}

.lux-point-button__arrow {
  position: relative;

  display: block;
  width: 18px;
  height: 1px;

  background-color: currentColor;
}

.lux-point-button__arrow::after {
  content: "";

  position: absolute;
  top: -3px;
  right: 0;

  width: 6px;
  height: 6px;

  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;

  transform: rotate(45deg);
}


/* =========================================================
   AI 가치평가 카드
========================================================= */
.lux-summary-card--ai {
  align-items: center;
}

.lux-summary-card--ai h2 {
  margin: 0;
}

.ai-value-description {
  margin: 8px 0 33px;
  line-height: 1.45;
}


/* =========================================================
   하단 바로가기 카드
========================================================= */
.lux-quick-service {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;

  width: calc(100% - 220px);
  margin: 25px auto 0;
}

.lux-quick-service__item {
  display: flex;
  align-items: center;

  min-width: 0;
  min-height: 108px;
  padding: 20px 28px;

  background-color: #fffdfa;
  border: 1px solid #e5d8bd;
  border-radius: 10px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.lux-quick-service__item:hover,
.lux-quick-service__item:focus-visible {
  border-color: var(--color-point);
  box-shadow: 0 9px 24px rgba(67, 49, 9, 0.08);
  transform: translateY(-3px);
}

.lux-quick-service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 58px;
  height: 58px;
  padding-right: 20px;

  color: #252525;
  border-right: 1px solid #e6dfd1;
}

.lux-quick-service__icon--yellow {
  color: #252525;
}

.lux-quick-service__icon svg {
  width: 36px;
  height: 36px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lux-quick-service__icon--yellow svg {
  fill: #f5bd21;
}

.lux-quick-service__icon--yellow svg path,
.lux-quick-service__icon--yellow svg circle {
  stroke: #222222;
}

.lux-quick-service__text {
  min-width: 0;
  margin-left: 21px;
}

.lux-quick-service__text h3 {
  margin: 0;
  color: #111111;
  line-height: 1.3;
}

.lux-quick-service__text p {
  margin: 4px 0 0;
  line-height: 1.35;
}


/* =========================================================
   1100px 이하
========================================================= */
@media screen and (max-width: 1100px) {
  .lux-summary-card {
    padding: 25px 24px;
  }

  .lux-summary-card__image--gold {
    width: 120px;
  }

  .lux-summary-card__image--luxury {
    width: 175px;
  }

  .gold-market-info {
    flex-wrap: wrap;
  }

  .gold-market-info__item {
    flex: 1 1 calc(50% - 4px);
  }

  .gold-market-info .lux-point-button {
    width: 100%;
  }

  .lux-quick-service {
    width: 100%;
  }
}


/* =========================================================
   900px 이하
========================================================= */
@media screen and (max-width: 900px) {
  .lux-summary__top {
    grid-template-columns: 1fr;
  }

  .lux-summary-card {
    min-height: 195px;
  }

  .lux-summary-card__image--gold {
    width: 170px;
  }

  .lux-summary-card__image--luxury {
    width: 230px;
  }

  .lux-quick-service {
    gap: 14px;
    margin-top: 30px;
  }

  .lux-quick-service__item {
    padding: 18px;
  }

  .lux-quick-service__icon {
    width: 50px;
    padding-right: 15px;
  }

  .lux-quick-service__text {
    margin-left: 15px;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .lux-summary-card {
    min-height: 180px;
    padding: 23px 20px;
  }

  .lux-summary-card__image--gold {
    width: 135px;
  }

  .lux-summary-card__image--luxury {
    width: 185px;
  }

  .gold-market-info {
    margin-top: 22px;
  }

  .lux-quick-service {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lux-quick-service__item {
    min-height: 90px;
  }
}


/* =========================================================
   560px 이하
========================================================= */
@media screen and (max-width: 560px) {
  .lux-summary-card {
    display: block;
    min-height: 0;
    padding: 22px 18px;
  }

  .lux-summary-card__heading {
    display: block;
  }

  .lux-summary-card__heading span {
    display: block;
    margin-top: 3px;
  }

  .lux-summary-card__image {
    position: absolute;
    top: 22px;
    right: 15px;
  }

  .lux-summary-card__image--gold {
    width: 95px;
    margin: 0;
  }

  .lux-summary-card__image--luxury {
    top: auto;
    right: 2px;
    bottom: 6px;

    width: 145px;
    margin: 0;
  }

  .gold-price {
    padding-right: 85px;
  }

  .gold-price__change {
    width: 100%;
    margin: 4px 0 0;
  }

  .gold-market-info {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gold-market-info__item {
    min-height: 44px;
    padding: 0 8px;
  }

  .gold-market-info .lux-point-button {
    grid-column: 1 / -1;
  }

  .lux-summary-card--ai {
    min-height: 190px;
  }

  .lux-summary-card--ai .lux-summary-card__content {
    padding-right: 115px;
  }

  .lux-summary-card--ai .lux-point-button {
    position: relative;
    z-index: 2;

    padding: 0 15px;
  }

  .lux-quick-service__item {
    padding: 16px 20px;
  }
}


/* =========================================================
   세 번째 단락 : 비하인드 경매
========================================================= */
.auction-section {
  width: 100%;
}


/* 제목 */
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 24px;
}

.auction-title {
  display: flex;
  align-items: center;
  gap: 6px;

  margin: 0;
  color: #151515;
  line-height: 1.3;
}

.auction-title__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 23px;
  height: 23px;

  color: #888888;
}

.auction-title__icon svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auction-title__icon svg path {
  fill: currentColor;
  stroke: none;
}


/* 더보기 */
.section-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #777777;

  transition: color 0.2s ease;
}

.section-more:hover,
.section-more:focus-visible {
  color: var(--color-point);
}

.section-more__arrow {
  display: block;

  width: 8px;
  height: 8px;

  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;

  transform: rotate(45deg);
}


/* =========================================================
   슬라이더
========================================================= */
.auction-slider {
  position: relative;

  width: 100%;
  padding: 0 1px;
}

.auction-slider__viewport {
  width: 100%;
  overflow: hidden;
}

.auction-slider__track {
  display: flex;
  gap:20px;

  width: max-content;

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}


/* =========================================================
   상품 카드
========================================================= */
.auction-card {
  flex: 0 0 calc((1100px - 72px) / 4);
  width: calc((1100px - 72px) / 4);
  min-width: 0;

  overflow: hidden;

  background-color: #ffffff;
  border: 1px solid #e5dcc8;
  border-radius: 10px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.auction-card:hover {
  border-color: rgba(204, 153, 0, 0.65);
  box-shadow: 0 12px 30px rgba(63, 45, 5, 0.09);
  transform: translateY(-4px);
}

.auction-card__link {
  display: block;
  width: 100%;
}


/* 상품 이미지 */
.auction-card__image {
  position: relative;

  width: 100%;
  height: 215px;

  overflow: hidden;
  background-color: #f5f5f5;
}

.auction-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.auction-card:hover .auction-card__image img {
  transform: scale(1.045);
}


/* 남은 시간 */
.auction-card__time {
  position: absolute;
  top: 14px;
  left: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 76px;
  height: 28px;
  padding: 0 8px;

  color: #ffffff;
  line-height: 1;

  background-color: #ff5a00;
  border-radius: 3px;
}


/* 상품 내용 */
.auction-card__content {
  padding: 23px 22px 24px;
}

.auction-card__name {
  margin: 0;

  color: #151515;
  line-height: 1.35;
}

.auction-card__date {
  margin: 7px 0 0;
  line-height: 1.4;
}

.auction-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  margin-top: 17px;
}

.auction-card__price {
  min-width: 0;

  color: #111111;
  white-space: nowrap;
}

.auction-card__bid {
  flex: 0 0 auto;

  color: #ff3030;
  white-space: nowrap;
}


/* =========================================================
   좌우 화살표
========================================================= */
.auction-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  color: #999999;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);

  transform: translateY(-50%);

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.auction-arrow:hover,
.auction-arrow:focus-visible {
  color: var(--color-point);
  border-color: var(--color-point);
  background-color: #fffaf0;
}

.auction-arrow svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auction-arrow--prev {
  left: -61px;
}

.auction-arrow--next {
  right: -61px;
}

.auction-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}


/* =========================================================
   1220px 이하
========================================================= */
@media screen and (max-width: 1220px) {
  .auction-arrow--prev {
    left: -18px;
  }

  .auction-arrow--next {
    right: -18px;
  }
}


/* =========================================================
   1100px 이하
========================================================= */
@media screen and (max-width: 1100px) {
  .auction-slider__track {
    gap: 20px;
  }

  .auction-card {
    flex-basis: calc((100vw - 100px) / 4);
    width: calc((100vw - 100px) / 4);
  }

  .auction-card__image {
    height: 20vw;
    max-height: 210px;
  }

  .auction-card__content {
    padding: 20px 17px 22px;
  }
}


/* =========================================================
   900px 이하 : 2개 노출
========================================================= */
@media screen and (max-width: 900px) {
  .auction-slider__track {
    gap: 18px;
  }

  .auction-card {
    flex-basis: calc((100vw - 78px) / 2);
    width: calc((100vw - 78px) / 2);
  }

  .auction-card__image {
    height: 280px;
    max-height: none;
  }

  .auction-arrow {
    width: 42px;
    height: 42px;
  }

  .auction-arrow--prev {
    left: -10px;
  }

  .auction-arrow--next {
    right: -10px;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .section-title-row {
    margin-bottom: 19px;
  }

  .auction-title {
    gap: 5px;
  }

  .auction-card {
    flex-basis: calc((100vw - 58px) / 2);
    width: calc((100vw - 58px) / 2);
  }

  .auction-card__image {
    height: 38vw;
  }

  .auction-card__content {
    padding: 18px 15px 20px;
  }

  .auction-card__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .auction-arrow {
    top: 45%;

    width: 38px;
    height: 38px;
  }
}


/* =========================================================
   560px 이하 : 1개 노출
========================================================= */
@media screen and (max-width: 560px) {
  .section-title-row {
    align-items: flex-end;
  }

  .auction-title {
    flex-wrap: wrap;
  }

  .auction-title__icon {
    width: 21px;
    height: 21px;
  }

  .section-more {
    flex: 0 0 auto;
  }

  .auction-slider__track {
    gap: 16px;
  }

  .auction-card {
    flex-basis: calc(100vw - 36px);
    width: calc(100vw - 36px);
  }

  .auction-card__image {
    height: 68vw;
    max-height: 340px;
  }

  .auction-card__content {
    padding: 20px 18px 22px;
  }

  .auction-card__bottom {
    align-items: center;
    flex-direction: row;
  }

  .auction-arrow {
    top: 42%;

    width: 38px;
    height: 38px;
  }

  .auction-arrow--prev {
    left: -8px;
  }

  .auction-arrow--next {
    right: -8px;
  }
}




/* =========================================================
   네 번째 단락 : 방금 올라온 매물
========================================================= */
.recent-section {
  width: 100%;
}


/* 제목 */
.recent-title {
  display: flex;
  align-items: center;
  gap: 7px;

  margin: 0;
  color: #151515;
  line-height: 1.3;
}

.recent-title__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  color: #00b99a;
}

.recent-title__icon svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   공통 상품 슬라이더
========================================================= */
.product-slider {
  position: relative;
  width: 100%;
}

.product-slider__viewport {
  width: 100%;
  overflow: hidden;
}

.product-slider__track {
  display: flex;
  gap: 24px;

  width: max-content;

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}


/* =========================================================
   최근 상품 카드
========================================================= */
.recent-card {
  flex: 0 0 calc((1100px - 72px) / 4);
  width: calc((1100px - 72px) / 4);
  min-width: 0;

  overflow: hidden;

  background-color: #ffffff;
  border: 1px solid #e5dcc8;
  border-radius: 9px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.recent-card:hover {
  border-color: rgba(204, 153, 0, 0.65);
  box-shadow: 0 12px 30px rgba(63, 45, 5, 0.09);
  transform: translateY(-4px);
}

.recent-card__link {
  display: block;
  width: 100%;
}


/* 이미지 */
.recent-card__image {
  position: relative;

  width: 100%;
  height: 215px;

  overflow: hidden;
  background-color: #f4f4f4;
}

.recent-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.recent-card:hover .recent-card__image img {
  transform: scale(1.045);
}


/* 상태 태그 */
.recent-card__status {
  position: absolute;
  top: 14px;
  left: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 28px;
  padding: 0 11px;

  color: #ffffff;
  line-height: 1;

  background-color: #111111;
  border-radius: 3px;
}


/* 상품 내용 */
.recent-card__content {
  min-height: 158px;
  padding: 22px 22px 21px;
}

.recent-card__name {
  margin: 0;
  color: #151515;
  line-height: 1.35;
}

.recent-card__estimate {
  margin: 6px 0 0;
  color: #e3a15c;
  line-height: 1.35;
}

.recent-card__price {
  margin: 16px 0 0;
  color: #222222;
  line-height: 1.35;
}

.recent-card__result {
  margin: 21px 0 0;

  color: #ff3030;
  line-height: 1.35;
  text-align: right;
}


/* =========================================================
   공통 슬라이드 화살표
========================================================= */
.product-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  color: #999999;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);

  transform: translateY(-50%);

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.product-arrow:hover,
.product-arrow:focus-visible {
  color: var(--color-point);
  border-color: var(--color-point);
  background-color: #fffaf0;
}

.product-arrow svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-arrow--prev {
  left: -61px;
}

.product-arrow--next {
  right: -61px;
}

.product-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}


/* =========================================================
   1220px 이하
========================================================= */
@media screen and (max-width: 1220px) {
  .product-arrow--prev {
    left: -18px;
  }

  .product-arrow--next {
    right: -18px;
  }
}


/* =========================================================
   1100px 이하
========================================================= */
@media screen and (max-width: 1100px) {
  .product-slider__track {
    gap: 20px;
  }

  .recent-card {
    flex-basis: calc((100vw - 100px) / 4);
    width: calc((100vw - 100px) / 4);
  }

  .recent-card__image {
    height: 20vw;
    max-height: 210px;
  }

  .recent-card__content {
    padding: 20px 17px;
  }
}


/* =========================================================
   900px 이하 : 2개 노출
========================================================= */
@media screen and (max-width: 900px) {
  .product-slider__track {
    gap: 18px;
  }

  .recent-card {
    flex-basis: calc((100vw - 78px) / 2);
    width: calc((100vw - 78px) / 2);
  }

  .recent-card__image {
    height: 280px;
    max-height: none;
  }

  .product-arrow {
    width: 42px;
    height: 42px;
  }

  .product-arrow--prev {
    left: -10px;
  }

  .product-arrow--next {
    right: -10px;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .recent-card {
    flex-basis: calc((100vw - 58px) / 2);
    width: calc((100vw - 58px) / 2);
  }

  .recent-card__image {
    height: 38vw;
  }

  .recent-card__content {
    min-height: 150px;
    padding: 18px 15px;
  }

  .recent-card__result {
    margin-top: 16px;
  }

  .product-arrow {
    top: 45%;

    width: 38px;
    height: 38px;
  }
}


/* =========================================================
   560px 이하 : 1개 노출
========================================================= */
@media screen and (max-width: 560px) {
  .recent-title__icon {
    width: 23px;
    height: 23px;
  }

  .product-slider__track {
    gap: 16px;
  }

  .recent-card {
    flex-basis: calc(100vw - 36px);
    width: calc(100vw - 36px);
  }

  .recent-card__image {
    height: 68vw;
    max-height: 340px;
  }

  .recent-card__content {
    min-height: auto;
    padding: 20px 18px 22px;
  }

  .product-arrow {
    top: 42%;
  }

  .product-arrow--prev {
    left: -8px;
  }

  .product-arrow--next {
    right: -8px;
  }
}




/* =========================================================
   다섯 번째 단락 : 거래 서비스 안내
========================================================= */
.service-guide-section {
  width: 100%;
}

.service-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}


/* =========================================================
   카드 공통
========================================================= */
.service-guide-card {
  --card-color: #9d6518;
  --card-bg: #fffaf5;

  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 345px;

  background-color: var(--card-bg);
  border: 1px solid #e8e3da;
  border-radius: 7px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.service-guide-card:hover {
  border-color: var(--card-color);
  box-shadow: 0 12px 28px rgba(54, 42, 23, 0.08);
  transform: translateY(-3px);
}


/* 카드별 색상 */
.service-guide-card--market {
  --card-color: #a76516;
  --card-bg: #fffaf5;
}

.service-guide-card--jewelry {
  --card-color: #a77d7f;
  --card-bg: #fffafa;
}

.service-guide-card--luxury {
  --card-color: #746f67;
  --card-bg: #fafafa;
}


/* =========================================================
   상단 아이콘
========================================================= */
.service-guide-card__icon {
  position: absolute;
  top: -27px;
  left: 24px;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  color: #ffffff;
  background-color: var(--card-color);
  border-radius: 50%;
}

.service-guide-card__icon svg {
  width: 28px;
  height: 28px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   카드 본문
========================================================= */
.service-guide-card__body {
  flex: 1;
  padding: 37px 25px 23px;
}

.service-guide-card__body h2 {
  margin: 0;

  color: var(--card-color);
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.service-guide-card__description {
  min-height: 51px;
  margin: 7px 0 25px;

  color: #555555;
  line-height: 1.55;
  letter-spacing: -0.035em;
}


/* =========================================================
   정보 표
========================================================= */
.service-guide-table {
  border-top: 1px solid #ece7df;
}

.service-guide-table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  min-height: 43px;

  border-bottom: 1px solid #ece7df;
}

.service-guide-table__row span {
  color: #333333;
  white-space: nowrap;
}

.service-guide-table__row strong {
  color: #181818;
  font-style: normal;
  text-align: right;
  white-space: nowrap;
}

.service-guide-rate {
  margin-left: 4px;

  font-size: 14px;
  font-weight: 500;
  font-style: normal;
}

.service-guide-rate--down {
  color: #111111;
}


/* =========================================================
   하단 자세히 보기
========================================================= */
.service-guide-card__more {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 55px;
  padding: 0 24px;

  color: #171717;
  background-color: #ffffff;
  border-top: 1px solid #ece7df;
  border-radius: 0 0 7px 7px;

  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

/*
  자세히 보기 영역에 마우스 오버 시
  카드별 아이콘 색상으로 변경
*/
.service-guide-card__more:hover,
.service-guide-card__more:focus-visible {
  color: #ffffff;
  background-color: var(--card-color);
}

.service-guide-card__arrow {
  display: block;

  width: 9px;
  height: 9px;

  color: #aeb3b5;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;

  transform: rotate(45deg);

  transition: color 0.25s ease;
}

.service-guide-card__more:hover .service-guide-card__arrow,
.service-guide-card__more:focus-visible .service-guide-card__arrow {
  color: #ffffff;
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .service-guide-grid {
    gap: 16px;
  }

  .service-guide-card__body {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-guide-card__description br {
    display: none;
  }

  .service-guide-table__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;

    padding: 10px 0;
  }

  .service-guide-table__row strong {
    width: 100%;
    text-align: left;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .service-guide-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-guide-card {
    min-height: auto;
  }

  .service-guide-card__body {
    padding: 38px 22px 22px;
  }

  .service-guide-card__description {
    min-height: 0;
  }

  .service-guide-table__row {
    align-items: center;
    flex-direction: row;

    min-height: 43px;
    padding: 0;
  }

  .service-guide-table__row strong {
    width: auto;
    text-align: right;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 480px) {
  .service-guide-card__icon {
    left: 20px;

    width: 50px;
    height: 50px;
  }

  .service-guide-card__icon svg {
    width: 25px;
    height: 25px;
  }

  .service-guide-card__body {
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-guide-card__description br {
    display: none;
  }

  .service-guide-table__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;

    padding: 10px 0;
  }

  .service-guide-table__row strong {
    width: 100%;
    text-align: left;
    white-space: normal;
  }

  .service-guide-card__more {
    min-height: 54px;
    padding: 0 18px;
  }
}




/* =========================================================
   여섯 번째 단락 : 안전 거래 프로세스
========================================================= */
.safety-process-section {
  width: 100%;
}

.safety-process-box {
  display: flex;
  align-items: flex-start;

  min-height: 205px;
  padding: 31px 38px;

  background-color: #fbf5ee;
  border: 1px solid #e8deca;
  border-radius: 8px;
}


/* =========================================================
   방패 아이콘
========================================================= */
.safety-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 58px;
  height: 58px;
  margin-right: 25px;

  color: #ffffff;
  background-color: var(--color-point);
  border-radius: 50%;
}

.safety-process-icon svg {
  width: 31px;
  height: 31px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   안내 내용
========================================================= */
.safety-process-content {
  flex: 1;
  min-width: 0;
}

.safety-process-content h2 {
  margin: 2px 0 0;

  color: #171717;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.safety-process-description {
  margin: 6px 0 0;

  line-height: 1.55;
  letter-spacing: -0.035em;
}


/* =========================================================
   프로세스 버튼
========================================================= */
.safety-process-buttons {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 28px;
}

.safety-process-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 244px;
  min-height: 50px;
  padding: 0 26px;

  color: #ffffff;
  border-radius: 4px;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.safety-process-button:hover,
.safety-process-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 9px 20px rgba(37, 27, 10, 0.14);
}

.safety-process-button--gold {
  background-color: var(--color-point);
}

.safety-process-button--gold:hover,
.safety-process-button--gold:focus-visible {
  background-color: #ad8200;
}

.safety-process-button--luxury {
  background-color: #713537;
}

.safety-process-button--luxury:hover,
.safety-process-button--luxury:focus-visible {
  background-color: #5e292b;
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .safety-process-box {
    padding: 30px;
  }

  .safety-process-button {
    min-width: 220px;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .safety-process-box {
    padding: 27px 24px;
  }

  .safety-process-icon {
    width: 54px;
    height: 54px;
    margin-right: 20px;
  }

  .safety-process-buttons {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;

    width: 100%;
    max-width: 460px;
    margin-top: 24px;
  }

  .safety-process-button {
    width: 100%;
    min-width: 0;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 560px) {
  .safety-process-box {
    display: block;
    padding: 25px 20px;
  }

  .safety-process-icon {
    width: 52px;
    height: 52px;
    margin: 0 0 18px;
  }

  .safety-process-icon svg {
    width: 28px;
    height: 28px;
  }

  .safety-process-description {
    margin-top: 9px;
  }

  .safety-process-button {
    min-height: 48px;
    padding: 0 15px;
  }
}



/* =========================================================
   일곱 번째 단락 : 거래 내역 및 후기
========================================================= */
.trade-review-section {
  width: 100%;
}

.trade-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}


/* =========================================================
   공통 제목
========================================================= */
.trade-review-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 48px;
  margin-bottom: 14px;
}

.trade-review-heading h2 {
  margin: 0;
  color: #111111;
  line-height: 1.3;
}


/* =========================================================
   거래 내역
========================================================= */
.trade-history-list {
  border-top: 1px solid #e9e9e9;
}

.trade-history-item {
  border-bottom: 1px solid #e9e9e9;
}

.trade-history-item__link {
  display: flex;
  align-items: center;

  min-height: 110px;
  padding: 21px 3px;

  transition: background-color 0.2s ease;
}

.trade-history-item__link:hover,
.trade-history-item__link:focus-visible {
  background-color: #fffaf0;
}


/* 이미지 */
.trade-history-item__image {
  flex: 0 0 auto;

  width: 64px;
  height: 64px;

  overflow: hidden;
  background-color: #f4f4f4;
}

.trade-history-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}


/* 거래 정보 */
.trade-history-item__content {
  flex: 1;
  min-width: 0;

  margin-left: 20px;
}

.trade-history-item__category {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trade-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 34px;
  min-height: 21px;
  padding: 0 7px;

  border-radius: 2px;
}

.trade-category--luxury {
  color: #00855c;
  background-color: #e6f6ee;
}

.trade-category--gold {
  color: #e48d00;
  background-color: #fff3d6;
}

.trade-type--green {
  color: #16815e;
}

.trade-type--orange {
  color: #c28a45;
}

.trade-history-item__name {
  margin: 8px 0 0;

  color: #282828;
  line-height: 1.35;
}


/* 금액 및 완료 표시 */
.trade-history-item__result {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  flex: 0 0 auto;

  margin-left: 20px;
}

.trade-history-item__result strong {
  color: #111111;
  line-height: 1.3;
  white-space: nowrap;
}

.trade-complete {
  margin-top: 5px;

  color: #ff2020;
  white-space: nowrap;
}


/* =========================================================
   고객 후기
========================================================= */
.customer-review-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.customer-review-item {
  min-height: 132px;
  padding: 23px 28px;

  background-color: #fcfafb;

  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.customer-review-item:hover {
  box-shadow: 0 8px 22px rgba(40, 30, 30, 0.06);
  transform: translateY(-2px);
}

.customer-review-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.customer-review-item__top h3 {
  overflow: hidden;

  margin: 0;

  color: #222222;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.customer-review-stars {
  flex: 0 0 auto;

  color: #e60012;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}

.customer-review-item__text {
  margin: 13px 0 0;

  color: #555555;
  line-height: 1.55;
}

.customer-review-item__result {
  display: inline-block;

  margin-top: 10px;
  padding: 3px 7px;

  color: #16815e;
  background-color: #e8f7ef;
  line-height: 1.3;
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .trade-review-grid {
    gap: 22px;
  }

  .trade-history-item__content {
    margin-left: 14px;
  }

  .trade-history-item__result {
    margin-left: 12px;
  }

  .customer-review-item {
    padding: 21px 22px;
  }

  .customer-review-item__text br {
    display: none;
  }
}


/* =========================================================
   900px 이하
========================================================= */
@media screen and (max-width: 900px) {
  .trade-review-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .trade-history-item__link {
    min-height: 105px;
  }

  .customer-review-item {
    min-height: 0;
  }
}


/* =========================================================
   560px 이하
========================================================= */
@media screen and (max-width: 560px) {
  .trade-review-heading {
    min-height: 42px;
    margin-bottom: 10px;
  }

  .trade-history-item__link {
    position: relative;

    align-items: flex-start;
    min-height: 125px;
    padding: 17px 0;
  }

  .trade-history-item__image {
    width: 58px;
    height: 58px;
  }

  .trade-history-item__content {
    margin-left: 13px;
    padding-right: 5px;
  }

  .trade-history-item__category {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .trade-history-item__name {
    margin-top: 6px;
    white-space: normal;
  }

  .trade-history-item__result {
    position: absolute;
    right: 0;
    bottom: 15px;

    margin: 0;
  }

  .customer-review-item {
    padding: 20px 18px;
  }

  .customer-review-item__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .customer-review-item__top h3 {
    white-space: normal;
  }

  .customer-review-item__text {
    margin-top: 11px;
  }
}




/* =========================================================
   여덟 번째 단락 : FAQ
========================================================= */
.faq-section {
  width: 100%;
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}


/* =========================================================
   왼쪽 FAQ 영역
========================================================= */
.faq-side {
  position: relative;

  min-height: 455px;
  padding: 32px 0 0 10px;

  overflow: hidden;
}

.faq-side__text {
  position: relative;
  z-index: 2;
}

.faq-side__text h2 {
  margin: 0;

  color: #111111;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.faq-side__text p {
  margin: 6px 0 0;

  line-height: 1.4;
}

.faq-side__image {
  position: absolute;
  top: 22px;
  right: 10px;
  z-index: 5;

  width: 159px;
}

.faq-side__image img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
   전체보기 버튼
========================================================= */
.faq-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  width: 175px;
  min-height: 47px;
  margin-top: 34px;
  padding: 0 21px;

  color: #ffffff;
  background-color: var(--color-point);
  border-radius: 3px;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-all-button:hover,
.faq-all-button:focus-visible {
  background-color: #ad8200;
  box-shadow: 0 8px 20px rgba(95, 69, 0, 0.14);
  transform: translateY(-2px);
}

.faq-all-button__arrow {
  position: relative;

  display: block;
  width: 18px;
  height: 1px;

  background-color: currentColor;
}

.faq-all-button__arrow::after {
  content: "";

  position: absolute;
  top: -3px;
  right: 0;

  width: 6px;
  height: 6px;

  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;

  transform: rotate(45deg);
}


/* =========================================================
   오른쪽 FAQ 목록
========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;

  min-height: 455px;
  padding: 37px 70px;

  background-color: #f7f8fa;
}

.faq-item {
  margin: 0;
}

.faq-item__question {
  margin: 0;

  color: var(--color-point);
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.faq-item__question span {
  margin-right: 5px;
}

.faq-item__answer {
  margin: 10px 0 0;

  color: #4e4e4e;
  line-height: 1.7;
  letter-spacing: -0.03em;
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
  }

  .faq-side__image {
    width: 155px;
  }

  .faq-list {
    padding: 34px 40px;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .faq-side {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 190px;
    padding: 20px 24px;

    background-color: #fffaf0;
    border-radius: 8px;
  }

  .faq-side__image {
    position: static;

    width: 145px;
    margin-left: 20px;
  }

  .faq-all-button {
    margin-top: 25px;
  }

  .faq-list {
    min-height: 0;
    padding: 30px 26px;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 520px) {
  .faq-side {
    align-items: flex-start;

    min-height: 180px;
    padding: 21px 18px;
  }

  .faq-side__image {
    align-self: flex-end;

    width: 115px;
    margin-left: 10px;
  }

  .faq-all-button {
    width: 145px;
    min-height: 44px;
    margin-top: 20px;
    padding: 0 16px;
  }

  .faq-list {
    gap: 22px;
    padding: 26px 20px;
  }

  .faq-item__answer br {
    display: none;
  }
}



/* =========================================================
   고객센터 단락
========================================================= */
.customer-center-section {
  width: 100%;
}

.customer-center-box {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 180px;
  align-items: center;
  gap: 30px;

  min-height: 128px;
  padding: 24px 35px 24px 55px;



  background-color: #fbf3ea;
  border: 1px solid #f0e7dc;
}


/* =========================================================
   왼쪽 안내
========================================================= */
.customer-center-info {
  min-width: 0;
}

.customer-center-info h2 {
  margin: 0;

  color: #111111;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.customer-center-info p {
  margin: 8px 0 0;

  line-height: 1.5;
  letter-spacing: -0.035em;
}


/* =========================================================
   상담 버튼 및 운영시간
========================================================= */
.customer-center-contact {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  flex-direction: column;
}

.kakao-consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 175px;
  min-height: 42px;
  padding: 0 20px;

  color: #251d00;
  background-color: #fee500;
  border-radius: 2px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.kakao-consult-button:hover,
.kakao-consult-button:focus-visible {
  background-color: #f4dc00;
  box-shadow: 0 8px 18px rgba(92, 75, 0, 0.14);
  transform: translateY(-2px);
}

.kakao-consult-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 30px;
  height: 22px;
  padding: 0 5px;

  color: #fee500;
  background-color: #3b1d1d;
  border-radius: 50%;

  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.customer-center-hours {
  margin: 10px 0 0;

  color: #222222;
  line-height: 1.4;
  white-space: nowrap;
}


/* =========================================================
   상담원 이미지
========================================================= */
.customer-center-image {
  position: absolute;
  right: 27px;
  bottom: -5px;

  width: 155px;
  z-index:55;
}

.customer-center-image img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .customer-center-box {
    grid-template-columns: minmax(0, 1fr) auto 145px;
    gap: 22px;

    padding-right: 25px;
    padding-left: 35px;
  }

  .customer-center-image {
    right: 18px;
    width: 135px;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .customer-center-box {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    min-height: 270px;
    padding: 28px 24px;
  }

  .customer-center-contact {
    align-items: flex-start;
  }

  .customer-center-image {
    right: 18px;
    bottom: 0;

    width: 145px;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 520px) {
  .customer-center-box {
    min-height: 250px;
    padding: 25px 20px;
  }

  .customer-center-info p {
    padding-right: 5px;
  }

  .customer-center-contact {
    width: 100%;
  }

  .kakao-consult-button {
    width: 100%;
    max-width: 230px;
  }

  .customer-center-hours {
    white-space: normal;
  }

  .customer-center-image {
    right: 15%;
    width: 120px;
    border:0px solid red;

    transform: translateX(50%);
  }
}