/* ========================================
   special.css - 2. 전략적 타이밍 섹션
   ======================================== */

.special {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.special__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 60px 20px;
}

.special__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 808px;
}

/* 타이틀 */
.special__title {
  font-family: var(--font-paperlogy);
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  color: #fff;
  line-height: normal;
  width: 100%;
  
}

.special__title-highlight {
  font-weight: 700;
  color: #00ff88;
  display: block;
}

/* 서브타이틀 */
.special__subtitle {
  font-family: var(--font-paperlogy);
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: var(--color-accent-light);
  line-height: normal;
  width: 100%;
}

/* 그라데이션 박스 영역 */
.special__boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.special__box {
  background: rgba(0, 16, 20, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 70px;
  flex-shrink: 0;
}

.special__box-text {
  font-family: var(--font-paperlogy);
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  background-image: linear-gradient(179.3deg, #fff 57.7%, #ff572e 113.6%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.special__box-text--right {
  background-image: linear-gradient(to bottom, #fff 60%, #ff572e 117.65%);
}

.special__plus {
  font-family: var(--font-paperlogy);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  line-height: 34px;
  background-image: linear-gradient(to bottom, #fff, #ff572e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 하단 설명 */
.special__desc {
  font-family: var(--font-pretendard);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
  letter-spacing: -0.72px;
  line-height: 28px;
  width: 100%;
}

/* --- 태블릿/PC (768px ~) --- */
@media (min-width: 768px) {
  .special__inner {
    min-height: 606px;
    padding: 100px 20px;
  }

  .special__content {
    gap: 41px;
  }

  .special__title {
    font-size: 46px;
  }

  .special__subtitle {
    font-size: 34px;
  }

  .special__title-highlight {
    display: inline;
  }

  
  .special__box {
    width: 300px;
    height: 121px;
  }

  .special__box-text {
    font-size: 50px;
  }

  .special__plus {
    font-size: 60px;
  }

  .special__desc {
    font-size: 24px;
    line-height: 34px;
  }
}
