.public-share {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 24px;
  color: #f8f2dd;
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 184, 80, 0.2), transparent 34%),
    linear-gradient(135deg, #111a13 0%, #080d09 100%);
}

.public-share::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.12;
  background: repeating-conic-gradient(from 45deg, #d8b850 0 25%, transparent 0 50%) 50% / 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 58%, #000);
}

.public-share__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.public-share__copy {
  width: min(760px, 100%);
  margin: 0 auto;
}

.public-share__eyebrow {
  margin: 0 0 14px;
  color: #d8b850;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.public-share h2 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-style: italic;
  line-height: 0.96;
}

.public-share__copy > p:last-child {
  margin: 24px auto 0;
  color: rgba(248, 242, 221, 0.75);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  line-height: 1.7;
}

.public-share__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.public-share__actions a,
.public-share__actions button {
  min-width: 128px;
  padding: 13px 20px;
  border: 1px solid rgba(216, 184, 80, 0.48);
  border-radius: 999px;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.public-share__actions a:hover,
.public-share__actions a:focus-visible,
.public-share__actions button:hover,
.public-share__actions button:focus-visible {
  color: #0d140f;
  background: #d8b850;
  transform: translateY(-2px);
}

.public-share__privacy {
  margin: 28px 0 0;
  color: rgba(248, 242, 221, 0.5);
  font-size: 0.78rem;
}

@media (max-width: 560px) {
  .public-share__actions a,
  .public-share__actions button {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-share__actions a,
  .public-share__actions button {
    transition: none;
  }
}
