.vx-primary-cta {
  border-radius: 999px;
  letter-spacing: 0.02em;
  padding-inline: 1.4rem;
}

.vx-cta-price {
  display: inline-block;
  margin-left: 0.5rem;
  opacity: 0.78;
}

.vx-post-feed {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #f5efe1, #ffffff);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.vx-post-feed__header h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.vx-post-feed__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.vx-post-feed__card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vx-post-feed__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.vx-post-feed__link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 1.25rem;
}

.vx-post-feed__link h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.vx-post-feed__link p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
}

.vx-account-host {
  width: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  min-height: 640px;
}

.vx-account-host::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    linear-gradient(110deg, rgba(244, 247, 252, 0.92) 8%, rgba(255, 255, 255, 0.98) 18%, rgba(244, 247, 252, 0.92) 33%) 0 0 / 220% 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.96));
  animation: vxAccountSkeleton 1.15s linear infinite;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.vx-account-host.is-ready::before {
  opacity: 0;
}

.vx-account-frame {
  display: block;
  width: 100%;
  min-height: 640px;
  height: 640px;
  border: 0;
  background: transparent;
  overflow: hidden;
  scrollbar-width: none;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.vx-account-host.is-ready .vx-account-frame {
  opacity: 1;
}

.vx-account-frame::-webkit-scrollbar {
  display: none;
}

@keyframes vxAccountSkeleton {
  0% {
    background-position: 100% 0, 0 0;
  }
  100% {
    background-position: -100% 0, 0 0;
  }
}
