.linkora-preview {
  margin: 34px 0 42px;
}

.linkora-preview__head {
  margin-bottom: 18px;
}

.linkora-preview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 47, 117, .42);
  border-radius: 999px;
  color: #ff75a4;
  background: rgba(255, 47, 117, .09);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.linkora-preview__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff2f75;
  box-shadow: 0 0 14px rgba(255, 47, 117, .8);
}

.linkora-preview__title {
  margin: 0;
  font-size: clamp(27px, 5vw, 39px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.linkora-preview__sub {
  max-width: 620px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.linkora-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.linkora-preview__card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: #101521;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
}

.linkora-profile-photo {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.linkora-profile-photo::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 16, .94));
  pointer-events: none;
}

.linkora-profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linkora-profile-overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 7px;
  padding: 24px 18px 18px;
  color: #fff;
  text-align: left;
}

.linkora-profile-overlay strong {
  font-size: 19px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .8);
}

.linkora-profile-overlay span {
  color: #66ee9a;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .9);
}

.linkora-preview[dir="rtl"] {
  direction: rtl;
}

.linkora-preview[dir="rtl"] .linkora-preview__head,
.linkora-preview[dir="rtl"] .linkora-profile-overlay {
  text-align: right;
}

@media (max-width: 600px) {
  .linkora-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 2px 0 16px;
  }

  .linkora-preview__card {
    min-width: 0;
  }
}
