/* banner 背景 */
  .banner-bg {
    background: url('/ver2/images/offer/offers-banne.webp') center center / cover no-repeat;
  }

/* 最新消息&熱門優惠 */
.hot-news-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.main-news {
  flex: 2.5;
  margin-top: 30px;
}

.hot-list {
  flex: 1;
  margin-top: 30px;
}

.news-card,
.hot-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.news-image-wrapper {
  position: relative;
}

.news-image-wrapper img {
  width: 100%;
  display: block;
}

/* 最新消息圖上紅底標題 */
.news-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(234, 73, 113, 0.48);
  color: #fff;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: bold;
  z-index: 2;
}

.news-content,
.hot-content {
  padding: 16px;
}

.hot-content h3 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.news-content p,
.hot-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 10px 0;
}

.news-meta {
  display: inline-block;
  color: #999;
  font-size: 0.85rem;
}

.read-more {
  float: right;
  background: #ea4972;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  margin-left: 10px;
}

.read-more:hover {
  background: #d43c60;
}

.hot-title-box {
  position: relative;
  background: #f17993;
  color: #fff;
  text-align: center;
  border-radius: 0 0 20px 20px;
  padding: 12px 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 0 #fff inset;
}

.hot-title-box::before,
.hot-title-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #f17993;
  border-radius: 0 0 20px 0;
}

.hot-title-box::after {
  right: 0;
  border-radius: 0 0 0 20px;
}

.hot-title-box::before {
  left: 0;
}

.hot-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  color: #fff;
}


@media screen and (max-width: 768px) {
  .hot-news-wrapper {
    flex-direction: column;
  }

  .main-news,
  .hot-list {
    width: 100%;
  }

  .main-news h2{
    text-align: center;
    margin-top: 20px;
  }  
}
