/* ========================================
   LISTEN TO REAL CALLS — V2 (vertical cards)
   ======================================== */

.listen-v2{
  background: var(--bg-light);
}

.listen-v2__wrap{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.listen-v2__header{
  text-align:center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.listen-v2__title{
  margin: 0 0 12px;
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(15, 26, 43, 0.95);
}

@media (max-width: 768px){
  .listen-v2__title{ font-size: 2.05rem; }
}

.listen-v2__subtitle{
  margin: 0;
  color: rgba(15,26,43,0.62);
  font-weight: 600;
}

.listen-v2__cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.listen-card{
  background:#fff;
  border: 1px solid rgba(15,26,43,0.08);
  border-radius: 20px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 48px rgba(15,26,43,0.08);
  display:flex;
  flex-direction: column;
  min-height: 280px;
}

.listen-card__top{
  display:flex;
  align-items:center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Number badge removed per request */
.listen-card__badge{ display:none; }

.listen-card__icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(47,86,201,0.10);
  border: 1px solid rgba(47,86,201,0.16);
  color:#2f56c9;
  display:flex;
  align-items:center;
  justify-content:center;
}

.listen-card__icon i{ font-size: 20px; }

.listen-card__title{
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 900;
  color:#0f1a2b;
  letter-spacing: -0.01em;
  text-align: center;
}

.listen-card__text{
  margin: 0 0 16px;
  color: rgba(15,26,43,0.62);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: center;
}

.listen-card__play{
  margin-top: auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 12px 12px;
  background: rgba(47,86,201,0.12);
  color: #1e40af;
  font-weight: 900;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease;
}

.listen-card__play:hover{ transform: translateY(-1px); background: rgba(47,86,201,0.18); }

.listen-card--playing .listen-card__play{
  background: rgba(47,86,201,0.22);
}

.listen-card__audio{ display:none; }

.listen-v2__pills{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  overflow: visible;
  padding-bottom: 0;
}

.listen-pill{
  flex: 0 0 auto;
  white-space: nowrap;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,26,43,0.08);
  box-shadow: 0 10px 24px rgba(15,26,43,0.05);
  color: rgba(15,26,43,0.82);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
}

@media (max-width: 980px){
  .listen-v2__cards{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .listen-v2__cards{ grid-template-columns: 1fr; }
  .listen-card{ min-height: unset; }
  /* Mobile-only: hide outcome pills row under the cards */
  .listen-v2__pills{ display:none; }
}
