/* ============================================================
   TEA.CSS — 薬草茶紹介ページ
   Pasir Putih HP
============================================================ */

/* === TEA GRID === */
.tea-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

/* === TEA CARD === */
.tea-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  gap: 0;
}

.tea-card:hover {
  box-shadow: 0 6px 24px rgba(58, 47, 37, 0.08);
  transform: translateY(-2px);
}

/* === TEA IMAGE === */
.tea-card-icon {
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
}

.tea-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === TEA CARD BODY === */
.tea-card-body {
  padding: 22px 24px;
  flex: 1;
  min-width: 0;
}

.tea-card-body h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.tea-card-free {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  background: var(--earth);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.06em;
}

.tea-card-effect {
  font-size: 11px;
  color: var(--earth);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}

.tea-card-body p:last-child {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.85;
  margin: 0;
}

/* === NOTE === */
.tea-note {
  background: var(--sand);
  border-radius: 4px;
  padding: 24px 28px;
  margin-top: 40px;
}

.tea-note p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.9;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .tea-grid {
    grid-template-columns: 1fr;
  }

  .tea-card-icon {
    width: 90px;
  }

  .tea-card-body {
    padding: 18px 20px;
  }

  .tea-card-body h3 {
    font-size: 15px;
  }
}
