/* ========================================
   Blog Article 頁面樣式
   奢華黑金風格 - 與主頁一致
   ======================================== */

.article-page {
  background: #faf8f5;
}

/* Article Hero */
.article-hero {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(201, 169, 98, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.article-back {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.article-back:hover {
  color: #C9A962;
}

.article-brand {
  display: inline-block;
  padding: 8px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #C9A962;
  border: 1px solid rgba(201, 169, 98, 0.4);
  margin-bottom: 20px;
}

.article-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.article-source {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* Article Container */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 25px 80px;
}

.article-content {
  background: #fff;
  padding: 40px 50px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(201, 169, 98, 0.1);
  border-radius: 4px;
}

/* Article Sections */
.article-section {
  margin-bottom: 45px;
}

.article-section:last-child {
  margin-bottom: 0;
}

.article-section h2 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C9A962;
}

.article-section p {
  font-size: 15px;
  line-height: 1.9;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.article-section ul {
  margin: 15px 0 15px 20px;
}

.article-section li {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 25px;
}

/* Tips & Warnings */
.article-tip,
.article-warning {
  padding: 20px 25px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.7;
  border-radius: 4px;
}

.article-tip {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.03) 100%);
  border-left: 4px solid #C9A962;
  color: #5a5a5a;
}

.article-warning {
  background: #fff8f0;
  border-left: 4px solid #e67e22;
  color: #8a6a3a;
}

.article-notice {
  padding: 20px;
  margin-bottom: 35px;
  background: rgba(201, 169, 98, 0.05);
  border-left: 4px solid #C9A962;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
}

/* Price Tables */
.price-table {
  margin: 20px 0;
}

.price-table h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 25px 0 12px;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table td,
.price-table th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.price-table td:last-child {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #0a0a0a;
  white-space: nowrap;
}

.price-table th {
  font-weight: 600;
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid rgba(201, 169, 98, 0.3);
}

.price-table tr:hover td {
  background: rgba(201, 169, 98, 0.05);
}

/* Article CTA */
.article-cta {
  padding: 40px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
  text-align: center;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 4px;
}

.article-cta h2 {
  border-bottom: none;
  padding-bottom: 0;
  color: #0a0a0a;
}

.article-cta p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.article-cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 35px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #25D366;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-cta-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ========================================
   響應式設計 - 手機適配
   ======================================== */
@media (max-width: 768px) {
  .article-hero {
    padding: 50px 15px;
  }
  
  .article-container {
    padding: 30px 15px 60px;
  }
  
  .article-content {
    padding: 25px 20px;
  }
  
  .article-section h2 {
    font-size: 1.2rem;
  }
  
  .article-section p,
  .article-section li {
    font-size: 14px;
  }
  
  .price-table td,
  .price-table th {
    padding: 10px 8px;
    font-size: 13px;
  }
  
  .price-table td:last-child {
    font-size: 14px;
  }
  
  .article-cta {
    padding: 25px 20px;
  }
  
  .article-cta h2 {
    font-size: 1.2rem;
  }
  
  .article-cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .article-hero {
    padding: 40px 12px;
  }
  
  .article-title {
    font-size: 1.5rem;
  }
  
  .article-brand {
    font-size: 11px;
    padding: 6px 15px;
  }
  
  .article-content {
    padding: 20px 15px;
  }
  
  .article-section h2 {
    font-size: 1.1rem;
  }
  
  .article-section p,
  .article-section li {
    font-size: 13px;
    line-height: 1.8;
  }
  
  .article-tip,
  .article-warning,
  .article-notice {
    padding: 15px;
    font-size: 13px;
  }
  
  .price-table td,
  .price-table th {
    padding: 8px 6px;
    font-size: 12px;
  }
  
  .article-cta {
    padding: 20px 15px;
  }
}
