.welcome-banner {
  background: linear-gradient(140deg, var(--cream) 0%, var(--bg) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-out);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 22px;
}
.welcome-banner .welcome-icon { font-size: 38px; margin-bottom: 10px; display: block; }
.welcome-icon .material-symbols-rounded { font-size: 38px; color: var(--brown); }
.welcome-banner h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.welcome-banner p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.meditation-list { display: flex; flex-wrap: wrap; gap: 18px; padding-bottom: 32px; width: 100%; }
.meditation-column { display: contents; }
.meditation-group { flex: 1 1 calc(50% - 9px); min-width: 200px; display: flex; flex-direction: column; gap: 16px; }

.meditation-group-title {
  align-self: flex-start;
  background: var(--cream);
  color: var(--brown);
  border: 1px solid rgba(212,181,160,0.5);
  box-shadow: var(--shadow-btn);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
}

.meditation-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-out);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.meditation-card.playing { background: var(--cream); box-shadow: var(--shadow-in); }

.play-btn {
  width: clamp(52px, 4.6vw, 64px);
  height: clamp(52px, 4.6vw, 64px);
  min-width: clamp(52px, 4.6vw, 64px);
  flex: 0 0 auto;
  padding: 0;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  transition: all 0.15s ease;
  color: var(--brown);
}
.play-btn:hover { transform: scale(1.06); }
.play-btn:active { box-shadow: var(--shadow-in); transform: scale(0.96); }
.play-btn.active {
  background: linear-gradient(135deg, var(--beige), var(--accent));
  color: #fff;
  box-shadow: -2px -2px 6px rgba(255,255,255,0.55), 3px 3px 8px rgba(139,115,85,0.42);
}
.play-btn svg { width: clamp(22px, 2vw, 30px); height: clamp(22px, 2vw, 30px); }

body.landing-page .play-btn     { width: clamp(58px,5vw,74px)!important; height: clamp(58px,5vw,74px)!important; min-width: clamp(58px,5vw,74px)!important; }
body.landing-page .play-btn svg { width: clamp(24px,2.2vw,34px)!important; height: clamp(24px,2.2vw,34px)!important; }

.meditation-info { flex: 1; overflow: hidden; }
.meditation-number { font-size: 11px; color: var(--beige); font-weight: 600; margin-bottom: 2px; }
.meditation-title { font-size: 15px; font-weight: 600; color: var(--text-primary); display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.meditation-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.meditation-category { background: var(--cream); padding: 2px 9px; border-radius: 20px; font-size: 11px; color: var(--brown); font-weight: 500; }

.progress-wrap { margin-top: 8px; display: none; direction: ltr; }
.meditation-card.playing .progress-wrap { display: block; }
.progress-bar { width: 100%; height: 4px; background: var(--beige); border-radius: 2px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-in); opacity: 0.6; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--beige), var(--accent)); border-radius: 2px; transition: width 0.5s linear; width: 0%; }
.time-display { font-size: 11px; color: var(--text-muted); text-align: right; margin-top: 3px; direction: ltr; }

@media (max-width: 480px) {
  .meditation-list  { gap: 12px; }
  .meditation-group { flex: 1 1 calc(50% - 6px); min-width: 160px; gap: 12px; }
  .meditation-card  { padding: 11px 12px; gap: 9px; flex-direction: column; align-items: stretch; text-align: center; }
  .play-btn         { align-self: center; }
  .meditation-meta  { justify-content: center; }
  .meditation-group-title { align-self: center; }
  body.landing-page .play-btn     { width: 58px!important; height: 58px!important; min-width: 58px!important; }
  body.landing-page .play-btn svg { width: 24px!important; height: 24px!important; }
}
