.today-herb-page {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 20px;
  box-sizing: border-box;
}

.today-herb-section {
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.today-herb-label {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.today-herb-section h1 {
  margin: 0 0 12px 0;
  font-size: 36px;
  font-weight: 800;
  color: #111827;
}

.today-herb-desc {
  margin: 0 0 28px 0;
  font-size: 16px;
  color: #4b5563;
}

.today-herb-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.today-herb-card img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);

  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.today-herb-card img.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}