@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

.review-article {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== ARTICLE HERO + INTRO ===== */
.article-hero {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}

.article-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2F8F8B;
  margin-bottom: 16px;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.article-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0 0 24px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #888;
}

.article-intro {
  font-size: 17px;
  color: #444;
  margin-top: 30px;
  text-align: left;
}

/* ===== EDITOR'S TOP PICK ===== */
.editors-pick {
  background: linear-gradient(135deg, #f8fafa 0%, #e8f4f3 100%);
  border: 2px solid #2F8F8B;
  border-radius: 16px;
  padding: 30px;
  margin: 40px 0;
  position: relative;
}

.editors-pick-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: #2F8F8B;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.editors-pick-content {
  display: flex;
  gap: 30px;
}

.editors-pick-image {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editors-pick-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.editors-pick-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 8px;
}

.editors-pick-brand {
  font-size: 14px;
  color: #2F8F8B;
  font-weight: 600;
  margin-bottom: 12px;
}

.editors-pick-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
}

.highlight-tag {
  background: white;
  border: 1px solid #2F8F8B;
  color: #2F8F8B;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .article-title {
    font-size: 32px;
  }

  .editors-pick-content {
    flex-direction: column;
    text-align: center;
  }
}
