* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Pretendard", sans-serif;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}
@font-face {
    font-family: 'GmarketSansLight';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: 300;
}
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 500;
}
@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    "Pretendard",
    sans-serif;
  flex: 1;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 110px;
  font-size: 36px;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.card-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.desc {
  margin: 0;
}

.c1_icon img {
  width: clamp(82px, 6.9vw, 100px);
  height: auto;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
}

.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding-top: 30px;
}

.overlay .title {
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
}

.btn {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  background: #fff;
  font-weight: 400;
  cursor: pointer;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #555555;
  align-items: center; /* 수직(위아래) 중앙 정렬 */
  justify-content: center;
  display: inline-flex;
  gap: 6px;
  position: relative;
  z-index: 999;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("/images/common/solar_arrow-up-linear.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* 호버 시 효과 (선택 사항) */
.btn:hover {
  background-color: #db4c59;
  border-color: #999;
  color: #fff;
}

.kofurn_btn:hover {
  background-color: #184b97;
  border-color: #999;
  color: #fff;
}

.btn:hover::after {
  background-image: url("/images/common/solar_arrow-up-linear_hover.png");
}

.card-con {
  padding: 35px 25px;
  flex-shrink: 0;
  flex: 1;
  background: #f4f4f4;
  text-align: center;
  vertical-align: text-top;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: clamp(22px, 2vw, 28px);
  word-break: break-all;
}

.bar,
.card-grid article {
  border-radius: 0 0 30px 30px;
}

.bar {
  height: 30px;
}

.c1 .bar {
  background: #d37a3a;
}
.c2 .bar {
  background: #6a63d8;
}
.c3 .bar {
  background: #a58a73;
}
.section_timer{
  height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section_timer .timer_text{
  position: relative;
  z-index: 999;
  text-align: center;
  color: #fff;
}
.section_timer .timer_text h3{
  font-size: 25px;
}
.section_timer .timer_text .p{
  font-size: 16px;
  margin-top: 5px;
}
.section_timer .timer_box{
  padding: 0 20px;
}
.section_timer .timer_box::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/common/sofurn_timer.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}
.section_timer .timer_box.ko::after{
  background: url("/images/common/kofurn_timer.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn_box{
  text-align: center;
  margin-top: 30px;
}
.btn.a{
  padding: 8px 20px;
}
.btn.a::after{
  background-image: url(/images/common/vector.png);
  width: 7px;
  height: 11px;
}

.kofurn_btn.a{
  padding: 8px 20px;
}
.kofurn_btn.a::after{
  background-image: url(/images/common/vector.png);
  width: 7px;
  height: 11px;
}
.kofurn_btn:hover {
  background-color: #db4c59;
  border-color: #999;
  color: #fff;
}

.day_box{
  width: 20vw;
  max-width: 174px; 
  aspect-ratio: 1 / 1; 
  height: auto; 
  border-radius: 50%; 
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.day_box p{
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  font-family: 'GmarketSansBold';
  padding-top: 10px;
  /* font-weight: 300; */
}
.timer_text.two{
  margin-top: 40px;
  display: flex;
  color: #fff;
  align-items: center;
}
.day{
  margin-top: 10px;
  font-size: 16px;
}
.timer_day{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 40px;
}
.timer_day:last-of-type,.dis_none:last-of-type{
  margin-right: 0;
}
.dis_none{
  display: flex;
}
.dis_none{
  margin-right:40px ;
}
@media (max-width: 1259px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1000px){
  .timer_day,.dis_none{
    margin-right: 20px;
  }
  .day_box p{
    font-size: 3.5em;
  }
}
@media (max-width: 923px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 100px;
  }
}
@media (max-width: 768px){
.dis_none{
  display: flex;
  margin-right: 0;
}
.timer_text.two{
  flex-direction: column;
}
.dis_none:last-of-type{margin-top: 10px;}
.day_box{width: 110px;}
.day_box p{font-size: 2.5em;}
.section_timer .timer_text h3{font-size: 20px;}
.section_timer .timer_text .p{font-size: 14px;}
/* .timer_text.own{
    background: #ffffffb3;
    border-radius: 10px;
    padding: 10px 20px;
} */
.section_timer .timer_box::after{
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/images/common/sofurn_timer.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
.section_timer .timer_box.ko::after{
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/images/common/kofurn_timer.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
/* .timer_day{margin-right: 0;} */
}
