/* page-highlights.css — 頁面重點（藍底 2×2 特色卡 + CTA） */

.tc-highlights {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1058px;
  background-color: #0b2f53;
  padding: 50px 0 0;
  box-sizing: border-box;
  color: #fff;
  overflow: visible;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

.tc-highlights .container {
  position: relative;
}

/* 右上角黏滯圖片 */
.tc-highlights__sticker {
  position: absolute;
  top: -94px;
  right: -94px;
  width: 463px;
  height: auto;
  display: block;
  z-index: 2;
}

.tc-highlights__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto 43px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* 白色圓角標題 */
.tc-highlights__title {
  min-height: 49px;
  background-color: #fff;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  box-sizing: border-box;
  color: #0b2f53;
}

.tc-highlights__title-text {
  font-weight: 600;
  font-size: 20px;
}

/* 2×2 特色清單 */
.tc-highlights__list {
  width: 100%;
  max-width: 602px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  color: #fff;
}

.tc-highlights__item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tc-highlights__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e2ae3b;
  color: #0b2f53;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-highlights__text {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

/* 底部 CTA */
.tc-highlights__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto -33px;
}

/* ============================================
   響應式：1440px 以下
   ============================================ */
@media (max-width: 1440px) {
  .tc-highlights {
    max-width: calc(100% - 4rem);
  }

  .tc-highlights__sticker {
    width: 360px;
    top: -72px;
    right: -40px;
  }
}

/* ============================================
   響應式：1024px 以下（平板）
   ============================================ */
@media (max-width: 1024px) {
  .tc-highlights {
    padding: 40px 1.5rem 0;
  }

  .tc-highlights__sticker {
    width: 260px;
    top: -56px;
    right: -20px;
  }

  .tc-highlights__inner {
    gap: 24px;
  }

  .tc-highlights__title-text {
    font-size: 13px;
  }
}

/* ============================================
   響應式：768px 以下
   ============================================ */
@media (max-width: 768px) {
  .tc-highlights {
    padding: 47px 42px 0;
  }

  .tc-highlights__sticker {
    top: -38px;
    right: 50%;
    transform: translateX(50%);
    width: 200px;
    margin: 0 auto -16px;
  }

  .tc-highlights__inner {
    padding-top: 0;
    gap: 20px;
  }

  .tc-highlights__title {
    min-height: 44px;
    padding: 10px 24px;
  }

  .tc-highlights__title-text {
    font-size: 13px;
  }

  .tc-highlights__list {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 360px;
  }

  .tc-highlights__text {
    font-size: 15px;
  }
}

/* ============================================
   響應式：480px 以下（手機）
   ============================================ */
@media (max-width: 480px) {
  .tc-highlights {
    padding: 47px 42px 0;
  }

  /* 圖中設計：sticker 縮小置中於頂部 */
  .tc-highlights__sticker {
    width: 253px;
    margin: 0 auto -8px;
  }

  .tc-highlights__inner {
    gap: 16px;
    margin-bottom: 32px;
  }

  .tc-highlights__title {
    min-height: 36px;
    padding: 0 11px;
    border-radius: 40px;
  }

  .tc-highlights__title-text {
    font-size: 13px;
  }

  .tc-highlights__list {
    margin: 0 0 8.5px;
    gap: 12px;
    max-width: 196px;
  }

  .tc-highlights__item {
    gap: 10px;
  }

  .tc-highlights__badge {
    width: 16px;
    height: 16px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-white);
  }

  .tc-highlights__text {
    font-size: 13px;
    line-height: 1.5;
  }

  .tc-highlights__footer {
    margin: 0 auto -24px;
  }
}
