/* ═══════════════════════════════════════════════════
   HUB::rio — Block Preview Styles
   Rendered inside the phone-screen preview
   ═══════════════════════════════════════════════════ */

/* ─── PREVIEW CONTAINER ─── */
.pv { --s: 1; }

.pv-bg-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; filter: blur(40px); transform: scale(1.3);
  z-index: 0; transition: opacity 0.5s;
}
.pv-bg-layer.active { opacity: 0.12; }

.pv-container {
  position: relative; z-index: 1;
  padding: calc(4rem * var(--s)) calc(1.5rem * var(--s)) calc(2rem * var(--s));
  display: flex; flex-direction: column;
  gap: calc(0.75rem * var(--s));
  min-height: 100%;
}

/* ─── PROFILE HEADER ─── */
.pv-profile { text-align: center; margin-bottom: calc(0.75rem * var(--s)); }

/* Avatar layouts */
.pv-profile[data-layout="center"] { text-align: center; }
.pv-profile[data-layout="left"] { text-align: left; display: flex; align-items: center; gap: calc(0.75rem * var(--s)); }
.pv-profile[data-layout="left"] .pv-avatar { margin: 0; }
.pv-profile[data-layout="left"] .pv-profile-text { text-align: left; }
.pv-profile[data-layout="right"] { text-align: right; display: flex; flex-direction: row-reverse; align-items: center; gap: calc(0.75rem * var(--s)); }
.pv-profile[data-layout="right"] .pv-avatar { margin: 0; }
.pv-profile[data-layout="right"] .pv-profile-text { text-align: right; }
.pv-profile[data-layout="hero"] { position: relative; padding-bottom: calc(1rem * var(--s)); }
.pv-profile[data-layout="hero"] .pv-avatar {
  width: clamp(72px, calc(120px * var(--s)), 120px);
  height: clamp(72px, calc(120px * var(--s)), 120px);
  border-width: clamp(3px, calc(5px * var(--s)), 5px);
}
.pv-profile[data-layout="minimal"] .pv-avatar { display: none; }

.pv-avatar {
  width: clamp(56px, calc(80px * var(--s)), 80px);
  height: clamp(56px, calc(80px * var(--s)), 80px);
  border-radius: 50%;
  object-fit: cover;
  border: clamp(2px, calc(3px * var(--s)), 3px) solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin: 0 auto calc(0.75rem * var(--s));
  /* Law 4: grayscale → color on hover */
  filter: grayscale(50%);
  transition: filter 0.5s;
}
.pv-avatar:hover { filter: grayscale(0); }

/* Avatar shapes */
.pv-avatar.shape-circle { border-radius: 50%; }
.pv-avatar.shape-rounded { border-radius: 20%; }
.pv-avatar.shape-square { border-radius: 8px; }

.pv-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1rem, calc(1.15rem * var(--s)), 1.15rem);
  font-weight: 800; color: var(--ink, #121214);
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 4px;
}

.pv-bio {
  font-size: clamp(0.75rem, calc(0.82rem * var(--s)), 0.82rem);
  color: var(--smoke, #666); line-height: 1.45;
  max-width: 85%; margin: 0 auto;
}

.pv-profile[data-layout="left"] .pv-bio,
.pv-profile[data-layout="right"] .pv-bio { max-width: 100%; margin: 0; }

.pv-verified {
  display: inline-flex; align-items: center; gap: 3px;
  font-family: "Space Mono", monospace; font-size: 0.6rem;
  color: var(--primary, #f45f00);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; margin-top: 4px;
}

/* ─── GENERIC BLOCK WRAPPER ─── */
.pv-block {
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: calc(14px * var(--s));
  overflow: hidden;
  cursor: pointer; text-decoration: none; color: inherit;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s var(--spring, cubic-bezier(0.175, 0.885, 0.32, 1.275)), background 0.2s;
}
.pv-block:active { transform: scale(0.98); }
.pv-block:hover { background: rgba(255, 255, 255, 0.92); }

/* ═══ 1. LINK / CTA BLOCK ═══ */
.pv-link-inner {
  padding: clamp(0.6rem, calc(0.85rem * var(--s)), 0.85rem);
  display: flex; align-items: center;
  gap: clamp(0.5rem, calc(0.65rem * var(--s)), 0.65rem);
}

.pv-link-icon {
  width: clamp(36px, calc(42px * var(--s)), 42px);
  height: clamp(36px, calc(42px * var(--s)), 42px);
  border-radius: clamp(8px, calc(10px * var(--s)), 10px);
  background: #f4f4f5;
  display: flex; align-items: center; justify-content: center;
  color: #121214; font-size: clamp(1rem, calc(1.15rem * var(--s)), 1.15rem);
  flex-shrink: 0;
}

.pv-link-text { flex: 1; min-width: 0; }
.pv-link-title { font-weight: 600; font-size: clamp(0.85rem, calc(0.92rem * var(--s)), 0.92rem); color: #121214; margin-bottom: 1px; }
.pv-link-sub {
  font-family: "Space Mono", monospace;
  font-size: clamp(0.65rem, calc(0.7rem * var(--s)), 0.7rem);
  color: #999; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pv-link-arrow { color: #ddd; font-size: 16px; flex-shrink: 0; }

/* Link variants */
.pv-link-inner.variant-grid { flex-direction: column; text-align: center; padding: 1rem 0.5rem; }
.pv-link-inner.variant-grid .pv-link-arrow { display: none; }
.pv-link-inner.variant-minimal { padding: 0.5rem 0.75rem; }
.pv-link-inner.variant-minimal .pv-link-icon { width: 28px; height: 28px; border-radius: 6px; }

/* ═══ 2. SOCIAL ICONS BLOCK ═══ */
.pv-social {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(0.6rem, calc(0.8rem * var(--s)), 0.8rem);
  padding: clamp(0.6rem, calc(0.8rem * var(--s)), 0.8rem);
  background: transparent; border: none; box-shadow: none;
}

.pv-social-item {
  width: clamp(36px, calc(42px * var(--s)), 42px);
  height: clamp(36px, calc(42px * var(--s)), 42px);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  display: flex; align-items: center; justify-content: center;
  color: #121214; font-size: 1.15rem;
  transition: 0.2s;
}
.pv-social-item:hover { background: #121214; color: #fff; transform: translateY(-2px); }
.pv-social-item .p-icon-masked { width: 20px; height: 20px; background: currentColor; }

/* ═══ 3. EVENT BLOCK ═══ */
.pv-event {
  display: flex; padding: clamp(0.5rem, calc(0.6rem * var(--s)), 0.6rem);
  align-items: center; gap: clamp(0.5rem, calc(0.65rem * var(--s)), 0.65rem);
  background: #fff;
}

.pv-event-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: clamp(48px, calc(56px * var(--s)), 56px);
  height: clamp(48px, calc(56px * var(--s)), 56px);
  background: #fafafa; border: 1px solid #e4e4e7;
  border-radius: clamp(10px, calc(12px * var(--s)), 12px);
  flex-shrink: 0;
}

.pv-event-day { font-size: clamp(1rem, calc(1.2rem * var(--s)), 1.2rem); font-weight: 800; color: var(--primary, #f45f00); line-height: 1; }
.pv-event-month {
  font-family: "Space Mono", monospace;
  font-size: clamp(0.55rem, calc(0.6rem * var(--s)), 0.6rem);
  text-transform: uppercase; font-weight: 700; color: #a1a1aa; margin-top: 1px;
}

.pv-event-info { flex: 1; min-width: 0; }
.pv-event-title { font-weight: 700; font-size: clamp(0.85rem, calc(0.95rem * var(--s)), 0.95rem); color: #121214; line-height: 1.2; }
.pv-event-venue {
  font-family: "Space Mono", monospace;
  font-size: clamp(0.6rem, calc(0.65rem * var(--s)), 0.65rem);
  color: #999; margin-top: 2px;
}
.pv-event-cta {
  font-size: clamp(0.6rem, calc(0.68rem * var(--s)), 0.68rem);
  color: var(--primary, #f45f00); font-weight: 700; margin-top: 3px;
  text-transform: uppercase; letter-spacing: 0.02em;
}

.pv-event-action {
  width: clamp(28px, calc(32px * var(--s)), 32px);
  height: clamp(28px, calc(32px * var(--s)), 32px);
  background: #121214; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

/* Event variants */
.pv-event.variant-countdown .pv-event-date {
  background: #121214; border-color: #121214;
}
.pv-event.variant-countdown .pv-event-day { color: #fff; }
.pv-event.variant-countdown .pv-event-month { color: rgba(255,255,255,0.6); }

.pv-event.variant-ticket {
  border-left: 4px solid var(--primary, #f45f00);
}

.pv-event.variant-neon {
  background: #121214; color: #fff;
}
.pv-event.variant-neon .pv-event-title { color: #fff; }
.pv-event.variant-neon .pv-event-date { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }
.pv-event.variant-neon .pv-event-day { color: var(--primary, #f45f00); }
.pv-event.variant-neon .pv-event-month { color: rgba(255,255,255,0.5); }
.pv-event.variant-neon .pv-event-venue { color: rgba(255,255,255,0.5); }

/* ═══ 4. AUDIO PLAYER BLOCK ═══ */
.pv-audio {
  padding: clamp(0.6rem, calc(0.8rem * var(--s)), 0.8rem);
}

.pv-audio-compact {
  display: flex; align-items: center; gap: 0.5rem;
}

.pv-audio-art {
  width: clamp(40px, calc(48px * var(--s)), 48px);
  height: clamp(40px, calc(48px * var(--s)), 48px);
  border-radius: 8px; background: #f4f4f5;
  flex-shrink: 0; overflow: hidden;
}
.pv-audio-art img { width: 100%; height: 100%; object-fit: cover; }

.pv-audio-info { flex: 1; min-width: 0; }
.pv-audio-title { font-weight: 600; font-size: 0.85rem; color: #121214; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pv-audio-artist { font-family: "Space Mono", monospace; font-size: 0.65rem; color: #999; }

.pv-audio-play {
  width: 32px; height: 32px;
  background: #121214; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0; cursor: pointer;
}

.pv-audio-wave {
  display: flex; align-items: flex-end; gap: 2px;
  height: 20px; margin-top: 6px;
}
.pv-audio-wave-bar {
  width: 3px; background: #e4e4e7; border-radius: 2px;
  animation: waveAnim 0.8s ease-in-out infinite alternate;
}
@keyframes waveAnim { from { height: 30%; } to { height: 100%; } }

/* Audio iframe embed */
.pv-audio-embed iframe {
  width: 100%; height: 80px; border: none; border-radius: 8px;
}

/* ═══ 5. VIDEO PLAYER BLOCK ═══ */
.pv-video { padding: 0; }
.pv-video iframe {
  width: 100%; aspect-ratio: 16/9; border: none;
  border-radius: calc(14px * var(--s));
}
.pv-video-thumb {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000; border-radius: calc(14px * var(--s)); overflow: hidden;
}
.pv-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pv-video-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.25);
}
.pv-video-play-btn {
  width: 48px; height: 48px; background: rgba(255,255,255,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #121214;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ═══ 5b. VIDEO AUTOPLAY (YouTube — controls hidden via scale+overflow) ═══ */
.pv-video-autoplay {
  position: relative;
  overflow: hidden;
  border-radius: calc(14px * var(--s, 1));
  aspect-ratio: 16 / 9;
  background: #000;
  padding: 0;
}
.pv-video-autoplay iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 127%; height: 127%;
  transform: translate(-50%, -50%) scale(1.2);
  border: none;
  pointer-events: none;
}

/* ═══ 6. IMAGE BLOCK ═══ */
.pv-image { padding: 0; background: transparent; border: none; box-shadow: none; }
.pv-image-single { border-radius: calc(14px * var(--s)); overflow: hidden; }
.pv-image-single img { width: 100%; height: auto; display: block; }
.pv-image-caption {
  text-align: center; font-family: "Space Mono", monospace;
  font-size: 0.68rem; color: #999; padding: 0.4rem;
}

/* Gallery */
.pv-image-gallery {
  display: grid; gap: 4px;
  border-radius: calc(14px * var(--s)); overflow: hidden;
}
.pv-image-gallery.cols-2 { grid-template-columns: 1fr 1fr; }
.pv-image-gallery.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.pv-image-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ═══ 7. TEXT / BIO BLOCK ═══ */
.pv-text {
  padding: clamp(0.65rem, calc(0.85rem * var(--s)), 0.85rem);
  font-size: clamp(0.78rem, calc(0.85rem * var(--s)), 0.85rem);
  line-height: 1.55; color: #666;
  border: none; background: transparent; box-shadow: none;
}
.pv-text a { color: var(--primary, #f45f00); text-decoration: underline; }
.pv-text strong { color: #121214; font-weight: 700; }

/* Tags */
.pv-tags {
  display: flex; flex-wrap: wrap; gap: 4px;
  padding: 0 0.5rem 0.5rem;
}
.pv-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 3px 8px; border-radius: 100px;
  background: #f4f4f5; color: #666;
}

/* Status badge */
.pv-status {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: "Space Mono", monospace;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 100px;
}
.pv-status.available { background: rgba(22, 163, 74, 0.08); color: #16a34a; }
.pv-status.busy { background: rgba(220, 38, 38, 0.08); color: #dc2626; }

/* ═══ 8. RSS / FEED BLOCK ═══ */
.pv-rss { padding: 0.6rem; }
.pv-rss-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pv-rss-item:last-child { border-bottom: none; }
.pv-rss-dot { width: 4px; height: 4px; background: #bbb; border-radius: 50%; flex-shrink: 0; }
.pv-rss-title { font-size: 0.78rem; font-weight: 500; color: #121214; flex: 1; }
.pv-rss-date { font-family: "Space Mono", monospace; font-size: 0.6rem; color: #bbb; flex-shrink: 0; }

/* ═══ 9. FORM / NEWSLETTER BLOCK ═══ */
.pv-newsletter { padding: clamp(0.65rem, calc(0.85rem * var(--s)), 0.85rem); }
.pv-newsletter-title {
  font-weight: 700; font-size: 0.88rem;
  text-align: center; margin-bottom: 0.5rem; color: #121214;
}
.pv-newsletter-form { display: flex; gap: 4px; }
.pv-newsletter-form input {
  flex: 1; padding: 0.45rem 0.6rem;
  border: 1px solid #e4e4e7; border-radius: 8px;
  font-size: 0.78rem; background: #fff; color: #121214;
  font-family: "Space Grotesk", system-ui, sans-serif;
}
.pv-newsletter-form button {
  padding: 0.45rem 0.8rem;
  background: #121214; color: #fff; border: none; border-radius: 8px;
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  white-space: nowrap;
}

/* ═══ 10. CAROUSEL / SLIDER BLOCK ═══ */
.pv-carousel { padding: 0; background: transparent; border: none; box-shadow: none; }
.pv-carousel-track {
  display: flex; gap: 8px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 4px;
}
.pv-carousel-track::-webkit-scrollbar { display: none; }
.pv-carousel-slide {
  min-width: 75%; scroll-snap-align: start;
  border-radius: 12px; overflow: hidden;
  background: #f4f4f5; aspect-ratio: 16/9;
  flex-shrink: 0; position: relative;
}
.pv-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.pv-carousel-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 0.6rem; color: #fff; font-size: 0.78rem; font-weight: 600;
}
.pv-carousel-dots {
  display: flex; justify-content: center; gap: 4px;
  padding: 0.4rem 0;
}
.pv-carousel-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #ddd; transition: 0.2s;
}
.pv-carousel-dot.on { background: #121214; width: 14px; border-radius: 3px; }

/* ═══ 11. CUSTOM HTML BLOCK ═══ */
.pv-html {
  padding: 0.6rem;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem; color: #666;
  border: 1px dashed rgba(0,0,0,0.08);
  background: #fafafa;
}
.pv-html iframe {
  width: 100%; min-height: 80px; border: none; border-radius: 8px;
}

/* ═══ 12. POLL / INTERACTIVE BLOCK ═══ */
.pv-poll { padding: 0.7rem; }
.pv-poll-question { font-weight: 700; font-size: 0.88rem; margin-bottom: 0.5rem; color: #121214; }
.pv-poll-option {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.6rem; margin-bottom: 4px;
  border: 1px solid #e4e4e7; border-radius: 8px;
  cursor: pointer; transition: 0.15s; position: relative; overflow: hidden;
}
.pv-poll-option:hover { border-color: #121214; }
.pv-poll-option-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--primary-l, rgba(244,95,0,0.07));
  border-radius: 8px; transition: width 0.6s var(--ease);
}
.pv-poll-option-text { position: relative; z-index: 1; font-size: 0.78rem; flex: 1; }
.pv-poll-option-pct {
  position: relative; z-index: 1;
  font-family: "Space Mono", monospace; font-size: 0.68rem;
  font-weight: 700; color: #999;
}

/* Emoji Reactions */
.pv-reactions {
  display: flex; justify-content: center; gap: 6px;
  padding: 0.5rem; background: transparent; border: none; box-shadow: none;
}
.pv-reaction {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 10px; border-radius: 10px;
  background: rgba(0,0,0,0.03); cursor: pointer;
  transition: 0.2s; font-size: 1.1rem;
}
.pv-reaction:hover { transform: scale(1.15); background: rgba(0,0,0,0.06); }
.pv-reaction-count { font-family: "Space Mono", monospace; font-size: 0.6rem; color: #999; }

/* ═══ 13. TESTIMONIAL / SPOTLIGHT BLOCK ═══ */
.pv-testimonial { padding: 0.8rem; text-align: center; }
.pv-testimonial-quote {
  font-size: 0.85rem; font-style: italic;
  color: #444; line-height: 1.5;
  margin-bottom: 0.6rem;
}
.pv-testimonial-quote::before { content: '\201C'; font-size: 1.5rem; color: #ddd; display: block; }
.pv-testimonial-author { font-weight: 700; font-size: 0.78rem; color: #121214; }
.pv-testimonial-role {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem; color: #999;
}

/* ═══ 14. TABS / ACCORDION BLOCK ═══ */
.pv-tabs { padding: 0; }
.pv-tabs-bar {
  display: flex; overflow-x: auto;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pv-tabs-bar::-webkit-scrollbar { display: none; }
.pv-tab-item {
  padding: 0.5rem 0.75rem; white-space: nowrap;
  font-size: 0.75rem; font-weight: 600; color: #999;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: 0.15s;
}
.pv-tab-item:hover { color: #121214; }
.pv-tab-item.on { color: #121214; border-bottom-color: #121214; }
.pv-tab-content { padding: 0.6rem; font-size: 0.8rem; color: #666; }

/* Accordion */
.pv-accordion-item { border-bottom: 1px solid rgba(0,0,0,0.04); }
.pv-accordion-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0.75rem; cursor: pointer;
  font-size: 0.82rem; font-weight: 600; color: #121214;
}
.pv-accordion-head i { font-size: 14px; color: #bbb; transition: transform 0.3s; }
.pv-accordion-item.open .pv-accordion-head i { transform: rotate(180deg); }
.pv-accordion-body {
  display: none; padding: 0 0.75rem 0.6rem;
  font-size: 0.78rem; color: #666; line-height: 1.5;
}
.pv-accordion-item.open .pv-accordion-body { display: block; }

/* ═══ 15. TIMELINE / STORY BLOCK ═══ */
.pv-timeline { padding: 0.6rem 0.6rem 0.6rem 1.2rem; }
.pv-timeline-item {
  position: relative; padding-left: 1.2rem;
  padding-bottom: 1rem; border-left: 2px solid #e4e4e7;
}
.pv-timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.pv-timeline-dot {
  position: absolute; left: -5px; top: 2px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #121214; border: 2px solid #fff;
}
.pv-timeline-date {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem; font-weight: 700;
  color: #999; text-transform: uppercase;
}
.pv-timeline-title { font-weight: 700; font-size: 0.82rem; color: #121214; margin-top: 2px; }
.pv-timeline-desc { font-size: 0.72rem; color: #666; margin-top: 2px; line-height: 1.4; }

/* ═══ 16. MONETIZATION BLOCK ═══ */
.pv-monetize {
  padding: 0.7rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.pv-monetize-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-l, rgba(244,95,0,0.07));
  color: var(--primary, #f45f00);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.pv-monetize-info { flex: 1; }
.pv-monetize-title { font-weight: 700; font-size: 0.85rem; color: #121214; }
.pv-monetize-desc { font-size: 0.68rem; color: #999; }
.pv-monetize-btn {
  padding: 0.35rem 0.8rem;
  background: var(--primary, #f45f00); color: #fff;
  border: none; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
}

/* ═══ 17. LAYOUT CONTAINER BLOCK ═══ */
.pv-container-block {
  padding: 0.5rem;
  background: transparent; border: none; box-shadow: none;
}
.pv-container-cols { display: flex; gap: 6px; }
.pv-container-cols > * { flex: 1; min-width: 0; }

.pv-divider {
  border: none; background: transparent; box-shadow: none;
  padding: 0.3rem 0;
}
.pv-divider-line { height: 1px; background: rgba(0,0,0,0.06); }
.pv-divider-line.wave {
  height: 8px; background: none;
  border-bottom: 2px solid rgba(0,0,0,0.06);
  border-radius: 50%; margin: 0 1rem;
}

.pv-section-header {
  background: transparent; border: none; box-shadow: none;
  padding: 0.3rem 0.5rem;
  font-size: clamp(0.72rem, calc(0.82rem * var(--s)), 0.82rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; color: #121214;
  opacity: 0.7;
}

/* ═══ 18. PROFILE / PERSONAL BLOCK ═══ */
.pv-contact-row {
  display: flex; justify-content: center; gap: 6px;
  padding: 0.5rem; background: transparent; border: none; box-shadow: none;
}
.pv-contact-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 0.35rem 0.7rem; border-radius: 100px;
  background: #f4f4f5; font-size: 0.72rem;
  font-weight: 600; color: #121214;
  transition: 0.15s;
}
.pv-contact-btn:hover { background: #121214; color: #fff; }
.pv-contact-btn i { font-size: 12px; }

/* vCard */
.pv-vcard {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0.5rem; background: transparent; border: none; box-shadow: none;
  font-size: 0.72rem; color: #999;
}

/* ═══ 19. DISCOVERY / HUB BLOCK ═══ */
.pv-discovery { padding: 0; background: transparent; border: none; box-shadow: none; }
.pv-discovery-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(6px, calc(8px * var(--s)), 8px);
}
.pv-discovery-card {
  position: relative; border-radius: calc(12px * var(--s));
  overflow: hidden; aspect-ratio: 1; background: #f4f4f5;
}
.pv-discovery-card img { width: 100%; height: 100%; object-fit: cover; }
.pv-discovery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  display: flex; align-items: flex-end; padding: 0.5rem;
}
.pv-discovery-title { color: #fff; font-weight: 700; font-size: 0.78rem; }

/* ═══ 20. SOCIAL CONTENT EMBED ═══ */
.pv-embed { padding: 0.3rem; }
.pv-embed iframe {
  width: 100%; min-height: 200px; border: none; border-radius: 10px;
}
.pv-embed-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem; text-align: center;
  background: #fafafa; border-radius: 10px; border: 1px dashed #e4e4e7;
}
.pv-embed-placeholder i { font-size: 2rem; color: #ddd; margin-bottom: 0.5rem; }
.pv-embed-placeholder span { font-size: 0.72rem; color: #999; }

/* ═══ MARQUEE BLOCK ═══ */
.pv-marquee {
  background: #121214; color: #fff;
  padding: clamp(0.5rem, calc(0.65rem * var(--s)), 0.65rem) 0;
  border: none; overflow: hidden;
}
.pv-marquee-track { white-space: nowrap; display: flex; overflow: hidden; }
.pv-marquee-content {
  display: inline-block;
  animation: marquee 12s linear infinite;
  padding-left: 100%;
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(0.68rem, calc(0.75rem * var(--s)), 0.75rem);
  letter-spacing: 0.06em;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-200%); } }

/* ═══ CARDS GRID BLOCK ═══ */
.pv-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(6px, calc(8px * var(--s)), 8px);
  padding: 0; background: transparent; border: none; box-shadow: none;
}
.pv-cards-item {
  position: relative; border-radius: calc(12px * var(--s));
  overflow: hidden; aspect-ratio: 1;
}
.pv-cards-item img { width: 100%; height: 100%; object-fit: cover; }
.pv-cards-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  display: flex; align-items: flex-end; padding: 0.5rem;
}
.pv-cards-title { color: #fff; font-weight: 700; font-size: 0.78rem; }

/* ═══ WATERMARK / FOOTER ═══ */
.pv-watermark {
  text-align: center; padding: 1.5rem 0 1rem;
  margin-top: auto; opacity: 0.25;
}
.pv-watermark-logo { display: flex; align-items: baseline; justify-content: center; gap: 3px; }
.pv-watermark .gl { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; }
.pv-watermark .ga { font-family: system-ui; font-weight:100; font-size: 7px; }
