/* 카페24 클래식타입 */
@font-face {
  font-family: 'Cafe24 ClassicType';
  src: url('../css/Cafe24Classictype.woff') format('truetype');
  font-weight: 700;
  font-style: normal;
}

#interior_c {
  width: 100%;
  background: #e3ddd7;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

#interior_c .tit-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#interior_c .st-sub-tit {
  /* color: #604c3f; */
  font-size: 36px;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  font-family: 'Paperlogy';
}

#interior_c .st-sub-txt {
  /* color: #5f432c;
  opacity: 0.8;
  font-size: 18px;
  text-align: center;
  font-family: 'Paperlogy'; */
}

#interior_c .st-tit {
  background: linear-gradient(90deg, #3d2614 0%, #5f432c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: Paperlogy;
  font-size: 58px;
  font-weight: 700;
  line-height: 120%; /* 69.6px */
  letter-spacing: 0.87px;
}

.interior-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tab-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}

.common-tab {
  display: flex;
  box-sizing: border-box;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: #381804;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: -0.5px;
  border: 1px solid #fff;
}

.common-tab:hover,
.common-tab.active {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: radial-gradient(
    44.08% 39.13% at 50.38% 0%,
#5F432C 0%,
  #3D2614 100%
  );
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
}

.interior-wrap {
  width: 100%;
  display: none;
  position: relative;
}

.contain-active {
  display: flex !important;
}

.interior-swiper {
  width: 100%;
}

/* 세로 이미지를 가로처럼: 고정 비율 + 상하좌우 센터 크롭 (모든 슬라이드 동일 높이) */
.interior-swiper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.interior-nav-wrap {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 7;
}

.interior-nav-btn {
  display: flex;
  width: 54px;
  aspect-ratio: 1 / 1;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.16);
  transition: 0.1s;
  cursor: pointer;
  pointer-events: initial;
}

.interior-nav-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1280px) {
  #interior_c .st-sub-tit {
    font-size: 32px;
  }
  #interior_c .st-tit {
    font-size: 56px;
    letter-spacing: 0.85px;
  }
}

@media (max-width: 900px) {
  #interior_c {
    padding: 80px 0;
    gap: 50px;
  }
  #interior_c .st-sub-tit {
    font-size: 28px;
  }
  #interior_c .st-tit {
    font-size: 48px;
    letter-spacing: 0.64px;
  }
}

@media (max-width: 768px) {
  #interior_c {
    padding: 70px 0;
    gap: 40px;
  }
}

@media (max-width: 650px) {
  #interior_c .st-sub-tit {
    font-size: 24px;
  }
  #interior_c .st-tit {
    font-size: 40px;
    letter-spacing: 0.56px;
  }
  .interior-nav-wrap {
    width: 92%;
  }
  .interior-nav-btn {
    width: 44px;
  }
  .interior-nav-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  #interior_c .st-sub-tit {
    font-size: 20px;
  }
  #interior_c .st-tit {
    font-size: 32px;
    letter-spacing: 0.48px;
  }
}
