.correct-answer-feedback.vb-teaser-card {
  display: none;
  align-items: stretch;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  max-width: min(720px, 96%);
  margin: 25px auto;
  position: relative;
  border: 1px solid #cfd8cf;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.correct-answer-feedback.vb-teaser-card::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 18px solid #f4fbf4;
}

.correct-answer-feedback.vb-teaser-card.vb-theme-light {
  background: linear-gradient(180deg, #f7fcf7 0%, #edf7ee 100%);
  color: #17301d;
}

.correct-answer-feedback.vb-teaser-card.vb-theme-dark {
  background: linear-gradient(180deg, #1f3125 0%, #18271d 100%);
  color: #eef8ef;
  border-color: #35513d;
}

.correct-answer-feedback.vb-teaser-card.vb-theme-dark::before {
  border-bottom-color: #1f3125;
}

.feedback-msg {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: inherit;
}

.vb-teaser-header {
  text-align: left;
}

.vb-teaser-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
  color: inherit;
}

.vb-word-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 60, 26, 0.10);
}

.vb-theme-dark .vb-word-row {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}

.vb-word-row.has-thumb {
  grid-template-columns: 180px 1fr;
  align-items: center;
}

.vb-thumb-wrap {
  width: 100%;
}

.vb-thumb {
  width: 100%;
  max-width: 180px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.vb-word-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.vb-word-meta {
  min-width: 0;
}

.vb-word {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  color: inherit;
}

.vb-pronunciation {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: #4d6653;
}

.vb-theme-dark .vb-pronunciation {
  color: #c7dbc9;
}


.vb-teaser-card.speak-word {
  background-color: #76b88b;
  display: inline-flex !important; 

}

.vb-detail-chips {
  display: grid;
  gap: 10px;
}

.vb-detail {
  background: #ffffff;
  border: 1px solid rgba(20, 60, 26, 0.08);
  border-radius: 12px;
  padding: 12px;
  text-align: left;
}

.vb-theme-dark .vb-detail {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.10);
}

.vb-label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #527458;
}

.vb-theme-dark .vb-label {
  color: #b7d3bd;
}

.vb-detail p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: inherit;
}

.vb-cta-wrap {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(20, 60, 26, 0.08);
  border-radius: 14px;
  padding: 12px;
}

.vb-theme-dark .vb-cta-wrap {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
}

.vb-cta-note {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: #526857;
}

.vb-theme-dark .vb-cta-note {
  color: #c8d8cb;
}

.vb-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vb-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1d6f3a;
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.vb-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ffffff;
  color: #1d6f3a;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid rgba(20, 60, 26, 0.08);
}

.vb-theme-dark .vb-cta-arrow {
  background: #eef7f0;
}

@media (max-width: 560px) {
  .vb-word-row.has-thumb {
    grid-template-columns: 1fr;
  }

  .vb-thumb {
    max-width: 160px;
  }

  .vb-cta-main {
    flex: 1;
  }
}