.yvdv-card {
  --yvdv-accent: #2563eb;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.yvdv-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--yvdv-accent), rgba(37, 99, 235, 0.25));
}

.yvdv-card__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.yvdv-card__eyebrow,
.yvdv-card__date {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
}

.yvdv-card__content-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
}

.yvdv-card__reference {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  font-weight: 800;
}

.yvdv-card__verse {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
}

.yvdv-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.yvdv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.yvdv-btn:hover {
  transform: translateY(-1px);
}

.yvdv-btn--primary {
  background: var(--yvdv-accent);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.yvdv-btn--secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.yvdv-error {
  border-left: 4px solid #dc2626;
  padding: 12px 16px;
  background: #fef2f2;
  color: #7f1d1d;
}

@media (max-width: 640px) {
  .yvdv-card {
    padding: 20px;
    border-radius: 20px;
  }

  .yvdv-card__topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .yvdv-btn {
    width: 100%;
  }
}
