/* =====================================================
   MEMBER DASHBOARD — /my/ profilo proprio
   Layout funzionale (NON social/profilo pubblico).
   Caricato condizionalmente solo su page_id=member_profile_my.
===================================================== */

/* BREADCRUMB sub-pagine /my/ */
.my-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0 18px;
  font-size: 14px;
  color: var(--main-grey-color);
  border-bottom: 1px solid rgba(128,128,128,0.14);
  margin-bottom: 20px;
}
.my-breadcrumb__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(128,128,128,0.28);
  color: var(--general-color);
  text-decoration: none;
  font-weight: 500;
  transition: border-color .15s, color .15s, background .15s;
}
.my-breadcrumb__back:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(128,128,128,0.06);
}
.my-breadcrumb__back .svg-icon {
  fill: currentColor;
  flex-shrink: 0;
}
.my-breadcrumb__sep { color: var(--main-grey-color); opacity: 0.6; }
.my-breadcrumb__current {
  color: var(--general-color);
  font-weight: 600;
}
@media (max-width: 480px) {
  .my-breadcrumb { padding: 10px 0 14px; font-size: 13px; }
  .my-breadcrumb__back { padding: 5px 10px; }
}

/* GREETING BAR */
.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(128,128,128,0.16);
}
.dashboard-hero__greeting h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--general-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-hero__greeting p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--main-grey-color);
}

/* UPLOAD CTA */
.dashboard-cta-upload {
  position: relative;
}
.dashboard-cta-upload__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 42px;
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: filter .15s, transform .12s;
}
.dashboard-cta-upload__btn:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff; }
.dashboard-cta-upload__btn svg {
  width: 16px; height: 16px;
  fill: currentColor;
}
.dashboard-cta-upload__drop {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  background: var(--main-background);
  border: 1px solid rgba(128,128,128,0.25);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  padding: 6px;
  display: none;
  z-index: 10;
}
.dashboard-cta-upload.is-open .dashboard-cta-upload__drop { display: block; }
.dashboard-cta-upload__drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--general-color);
  text-decoration: none;
  font-size: 14px;
}
.dashboard-cta-upload__drop a:hover { background: rgba(128,128,128,0.12); color: var(--primary-color); }
.dashboard-cta-upload__drop a svg {
  width: 18px; height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* STATS GRID — 5 card prominenti */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 20px 0 24px;
}
.dashboard-stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--thumbs-bottom-btn-bg, rgba(128,128,128,0.08));
  border: 1px solid rgba(128,128,128,0.16);
  border-radius: 12px;
  text-decoration: none;
  color: var(--general-color);
  transition: border-color .15s, transform .12s;
  cursor: pointer;
}
.dashboard-stat-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  color: var(--general-color);
}
.dashboard-stat-card__num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--general-color);
}
.dashboard-stat-card__label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--main-grey-color);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.dashboard-stat-card__icon {
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  opacity: 0.4;
  fill: currentColor;
}
.dashboard-stat-card { position: relative; }

/* QUICK ACTIONS row */
.dashboard-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.dashboard-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  height: 40px;
  background: transparent;
  color: var(--general-color);
  border: 1px solid rgba(128,128,128,0.32);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.dashboard-action-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.dashboard-action-btn svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

/* INFO CARD — compact profile widget */
.dashboard-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: rgba(128,128,128,0.06);
  border: 1px solid rgba(128,128,128,0.16);
  border-radius: 12px;
  margin-bottom: 24px;
}
.dashboard-info-card__avatar {
  width: 72px; height: 72px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--thumb-placeholder-bg);
  border: 2px solid rgba(128,128,128,0.24);
}
.dashboard-info-card__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.dashboard-info-card__avatar .no-thumb {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: var(--main-grey-color);
}
.dashboard-info-card__avatar .no-thumb svg {
  width: 50%; height: 50%;
  fill: currentColor;
}
.dashboard-info-card__info {
  flex: 1;
  min-width: 0;
}
.dashboard-info-card__name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--general-color);
}
.dashboard-info-card__handle {
  font-size: 12px;
  color: var(--main-grey-color);
  margin-top: 3px;
}
.dashboard-info-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.dashboard-info-card__chip {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(128,128,128,0.18);
  color: var(--general-color);
  font-size: 11px;
  line-height: 1.4;
}
.dashboard-info-card__bio {
  margin-top: 10px;
  font-size: 13px;
  color: var(--main-grey-color);
  line-height: 1.5;
}
.dashboard-info-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  align-self: flex-start;
}
.dashboard-info-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 16px;
  height: 36px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.dashboard-info-card__actions a.is-primary {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}
.dashboard-info-card__actions a.is-primary:hover { filter: brightness(1.08); color: #fff; }
.dashboard-info-card__actions a.is-outline {
  background: transparent;
  color: var(--general-color);
  border: 1px solid rgba(128,128,128,0.35);
}
.dashboard-info-card__actions a.is-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* =====================================================
   DASHBOARD VERIFY CARD — status verifica + CTA creator
   Usa CSS vars del tema: funziona in dark e light mode.
===================================================== */
.dashboard-verify {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0;
  padding: 20px 22px;
  border: 1px solid rgba(128,128,128,0.22);
  border-radius: 14px;
  background: var(--thumb-box-bg);
  color: var(--general-color);
  flex-wrap: wrap;
}
.dashboard-verify__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(37,99,235,0.18);
  color: #60a5fa;
}
.dashboard-verify__icon svg { width: 26px; height: 26px; fill: currentColor; }
.dashboard-verify__body { flex: 1; min-width: 200px; }
.dashboard-verify__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--general-color);
}
.dashboard-verify__text { margin: 0; font-size: 13px; color: var(--main-grey-color); line-height: 1.5; }
.dashboard-verify__action {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: background .15s, transform .15s, border-color .15s, color .15s;
}
.dashboard-verify__action.is-primary {
  background: linear-gradient(135deg,#f5b800,#e07a00);
  color: #fff;
  border: 0;
}
.dashboard-verify__action.is-primary:hover { background: linear-gradient(135deg,#e0a800,#c96d00); transform: translateY(-1px); }
.dashboard-verify__action.is-outline {
  background: transparent;
  color: var(--general-color);
  border: 1px solid rgba(128,128,128,0.35);
}
.dashboard-verify__action.is-outline:hover { background: rgba(37,99,235,0.12); border-color: #2563eb; color: #60a5fa; }
.dashboard-verify__action svg { width: 16px; height: 16px; }
.dashboard-verify__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* State variants — usano overlay rgba così funzionano sia su dark che light */
.dashboard-verify--creator {
  background: linear-gradient(135deg, rgba(245,184,0,.18), var(--thumb-box-bg) 70%);
  border-color: rgba(245,184,0,.55);
}
.dashboard-verify--creator .dashboard-verify__icon { background: rgba(245,184,0,.22); color: #f5b800; }
.dashboard-verify--identity {
  background: linear-gradient(135deg, rgba(37,99,235,.18), var(--thumb-box-bg) 70%);
}
.dashboard-verify--pending .dashboard-verify__icon { background: rgba(245,158,11,.22); color: #f59e0b; }
.dashboard-verify--rejected {
  background: linear-gradient(135deg, rgba(239,68,68,.18), var(--thumb-box-bg) 70%);
  border-color: rgba(239,68,68,.45);
}
.dashboard-verify--rejected .dashboard-verify__icon { background: rgba(239,68,68,.22); color: #ef4444; }

/* Light-mode fine-tune (testi/azioni un filo più scuri per contrasto) */
html.light .dashboard-verify__action.is-outline:hover { color: #1e40af; }

@media (max-width: 640px) {
  .dashboard-verify { padding: 16px; }
  .dashboard-verify__action,
  .dashboard-verify__actions { width: 100%; }
  .dashboard-verify__actions a { flex: 1; justify-content: center; }
}


/* =====================================================
   WALL — bacheca personale (block KVS list_members_blog)
   Usata sia su /my/ (form + miei post) che su profilo pubblico (timeline).
===================================================== */
.wall {
  margin: 28px 0;
  padding: 22px;
  background: var(--thumbs-bottom-btn-bg, rgba(128,128,128,0.06));
  border: 1px solid rgba(128,128,128,0.16);
  border-radius: 14px;
}
.wall__header { margin-bottom: 16px; }
.wall__title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--general-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wall__subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--main-grey-color);
  line-height: 1.5;
}

/* Flash banners */
.wall__flash {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
  border-left: 4px solid;
}
.wall__flash--success {
  background: rgba(34,197,94,.14);
  border-color: #22c55e;
  color: #4ade80;
}
.wall__flash--info {
  background: rgba(37,99,235,.14);
  border-color: #2563eb;
  color: #60a5fa;
}
html.light .wall__flash--success { color: #15803d; }
html.light .wall__flash--info { color: #1d4ed8; }

/* Compose form */
.wall__compose {
  background: var(--input-bg, rgba(0,0,0,0.18));
  border: 1px solid rgba(128,128,128,0.22);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.wall__compose-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.wall__compose-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(128,128,128,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wall__compose-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wall__compose-avatar-fallback {
  font-weight: 700;
  color: var(--general-color);
  text-transform: uppercase;
}
.wall__compose-input { flex: 1; min-width: 0; }
.wall__compose-input textarea {
  width: 100%;
  border: 0;
  background: transparent;
  resize: none;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  color: var(--input-color, var(--general-color));
  padding: 8px 0;
  outline: none;
  box-sizing: border-box;
  min-height: 44px;
  max-height: 200px;
}
.wall__compose-input textarea::placeholder {
  color: var(--main-grey-color);
  opacity: 0.7;
}
.wall__compose-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(128,128,128,0.14);
  margin-top: 8px;
  gap: 10px;
}
.wall__compose-counter {
  font-size: 12px;
  color: var(--main-grey-color);
  font-variant-numeric: tabular-nums;
}
.wall__compose-counter.is-near-limit { color: #f59e0b; }
.wall__compose-submit {
  padding: 8px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: filter .15s, transform .12s;
}
.wall__compose-submit:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.wall__compose-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Lista post */
.wall__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wall__item {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(128,128,128,0.05);
  border: 1px solid rgba(128,128,128,0.12);
  border-radius: 10px;
  transition: background .15s;
}
.wall__item:hover { background: rgba(128,128,128,0.09); }
.wall__item-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(128,128,128,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wall__item-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wall__item-avatar-fallback {
  font-weight: 700;
  font-size: 13px;
  color: var(--general-color);
  text-transform: uppercase;
}
.wall__item-body {
  flex: 1;
  min-width: 0;
  position: relative;
}
.wall__item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--main-grey-color);
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.wall__item-meta strong {
  color: var(--general-color);
  font-size: 13px;
}
.wall__item-meta a { color: inherit; text-decoration: none; }
.wall__item-meta a:hover strong { color: var(--primary-color); }
.wall__item-meta time::before { content: '· '; }
.wall__item-pending {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(245,158,11,.18);
  color: #f59e0b;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.wall__item-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--general-color);
  word-wrap: break-word;
}
.wall__item-actions {
  position: absolute;
  top: 0;
  right: 0;
}
.wall__item-delete {
  background: transparent;
  border: 0;
  color: var(--main-grey-color);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .15s, color .15s, background .15s;
}
.wall__item:hover .wall__item-delete { opacity: 0.6; }
.wall__item-delete:hover { opacity: 1; color: #ef4444; background: rgba(239,68,68,.1); }
.wall__item-delete .svg-icon { width: 12px; height: 12px; fill: currentColor; }

/* Activity event variants */
.wall__item-meta .wall__item-action {
  color: var(--main-grey-color);
}
.wall__item-meta .wall__item-action a strong {
  color: var(--general-color);
}
.wall__item-text--status {
  font-style: italic;
  color: var(--main-grey-color);
}

/* Embed card (video / album) */
.wall__embed {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  padding: 8px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(128,128,128,0.18);
  border-radius: 10px;
  text-decoration: none;
  color: var(--general-color);
  transition: border-color .15s, transform .12s;
}
html.light .wall__embed { background: rgba(0,0,0,0.04); }
.wall__embed:hover {
  border-color: var(--primary-color);
  transform: translateY(-1px);
  color: var(--general-color);
}
.wall__embed-thumb {
  position: relative;
  width: 120px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(128,128,128,0.18);
}
.wall__embed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wall__embed-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.wall__embed-icon .svg-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.wall__embed-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.wall__embed-meta strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--general-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wall__embed-meta span {
  font-size: 12px;
  color: var(--main-grey-color);
}
@media (max-width: 480px) {
  .wall__embed-thumb { width: 90px; height: 51px; }
}

/* Variante album: thumb 3:4 (verticale meno estremo) */
.wall__embed-thumb--album {
  width: 86px;
  height: 115px;
}

/* Variante short: thumb 9:16 (verticale) */
.wall__embed-thumb--short {
  width: 64px;
  height: 113px;
}

/* Privacy badge — overlay top-right sulla thumb */
.wall__embed-privacy {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.wall__embed-privacy--private {
  background: rgba(80, 80, 80, 0.92);
  color: #fff;
}
.wall__embed-privacy--premium {
  background: linear-gradient(135deg, #f5b800, #e07a00);
  color: #fff;
  box-shadow: 0 1px 3px rgba(224, 122, 0, .3);
}
.wall__embed-privacy svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}
.wall__embed--short .wall__embed-icon {
  background: rgba(255, 196, 0, 0.95);
  color: #000;
}
@media (max-width: 480px) {
  .wall__embed-thumb--short { width: 50px; height: 89px; }
  .wall__embed-thumb--album { width: 68px; height: 91px; }
}

.wall__feed { margin: 16px 0 0; }

/* Load-more button centrato sotto il feed */
.wall__feed .load-more {
  display: flex;
  justify-content: center;
  margin: 24px 0 8px;
  padding-top: 18px;
  position: relative;
  z-index: 5;
}
.wall__feed .load-more .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--thumbs-bottom-btn-bg, rgba(128,128,128,0.08));
  color: var(--general-color);
  border: 1px solid rgba(128,128,128,0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.wall__feed .load-more .btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(255,107,0,0.06);
}

/* =====================================================
   TIMELINE LAYOUT — Desktop ≥1024px:
   linea verticale centrale, card alternate sinistra/destra
   con pallino-marker che le ancora alla linea.
===================================================== */
@media (min-width: 1024px) {
  .wall__feed .wall__list {
    position: relative;
    display: block;
    padding: 8px 0;
  }
  /* Linea verticale centrata */
  .wall__feed .wall__list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
      rgba(128,128,128,0) 0%,
      rgba(128,128,128,0.32) 8%,
      rgba(128,128,128,0.32) 92%,
      rgba(128,128,128,0) 100%);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
  }
  /* Card a metà larghezza, alternata */
  .wall__feed .wall__list > .wall__item {
    width: calc(50% - 28px);
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
  }
  /* Card dispari → sinistra */
  .wall__feed .wall__list > .wall__item:nth-child(odd) {
    margin-right: auto;
    margin-left: 0;
  }
  /* Card pari → destra */
  .wall__feed .wall__list > .wall__item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }
  /* Marker pallino sulla linea centrale */
  .wall__feed .wall__list > .wall__item::after {
    content: '';
    position: absolute;
    top: 16px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--main-background);
    box-shadow: 0 0 0 1px rgba(128,128,128,0.32);
    z-index: 2;
  }
  /* Card sinistra → marker sul lato destro */
  .wall__feed .wall__list > .wall__item:nth-child(odd)::after {
    right: -35px;
  }
  /* Card destra → marker sul lato sinistro */
  .wall__feed .wall__list > .wall__item:nth-child(even)::after {
    left: -35px;
  }
  /* Coda (freccia) che collega card → linea */
  .wall__feed .wall__list > .wall__item::before {
    content: '';
    position: absolute;
    top: 22px;
    width: 28px;
    height: 2px;
    background: rgba(128,128,128,0.32);
    z-index: 1;
  }
  .wall__feed .wall__list > .wall__item:nth-child(odd)::before {
    right: -28px;
  }
  .wall__feed .wall__list > .wall__item:nth-child(even)::before {
    left: -28px;
  }
  /* Nasconde marker sui post tipo blog (testuali) per coerenza visiva opzionale —
     in realtà li lascio, sembra più pulito con tutti i marker uguali. */
}
/* Marker colorato per tipo evento */
@media (min-width: 1024px) {
  .wall__item--type-1::after { background: #2563eb; }   /* video — blu */
  .wall__item--type-2::after { background: #f59e0b; }   /* album — arancione */
  .wall__item--type-10::after { background: #22c55e; }  /* friend — verde */
  .wall__item--type-12::after,
  .wall__item--type-13::after { background: var(--primary-color); } /* blog — primary */
  .wall__item--type-18::after { background: #a855f7; }  /* status — viola */
}

.wall__see-all {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
.wall__see-all:hover { text-decoration: underline; color: var(--primary-color); }

.wall__empty {
  margin: 8px 0;
  padding: 24px;
  text-align: center;
  color: var(--main-grey-color);
  font-size: 14px;
  font-style: italic;
}

.wall__pagination {
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 600px) {
  .wall { padding: 16px; }
  .wall__compose { padding: 10px 12px; }
  .wall__compose-avatar, .wall__item-avatar { width: 32px; height: 32px; }
  .wall__item { padding: 10px 12px; }
}

/* =====================================================
   DASHBOARD HUB SECTIONS — sostituiscono members-links
   "I miei contenuti" + "Social & Preferiti"
===================================================== */
.dashboard-section {
  margin: 28px 0;
}
.dashboard-section__header {
  margin-bottom: 14px;
}
.dashboard-section__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--general-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.dashboard-hub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 18px 12px;
  background: var(--thumbs-bottom-btn-bg, rgba(128,128,128,0.08));
  border: 1px solid rgba(128,128,128,0.16);
  border-radius: 12px;
  text-decoration: none;
  color: var(--general-color);
  transition: border-color .15s, transform .12s, background .15s;
}
.dashboard-hub-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  color: var(--general-color);
  background: rgba(128,128,128,0.12);
}
.dashboard-hub-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(128,128,128,0.16);
  color: var(--main-grey-color);
  margin-bottom: 4px;
}
.dashboard-hub-card:hover .dashboard-hub-card__icon {
  background: rgba(255,107,0,0.14);
  color: var(--primary-color);
}
.dashboard-hub-card__icon .svg-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.dashboard-hub-card__num {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--general-color);
}
.dashboard-hub-card__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--main-grey-color);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .dashboard-section__grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
  .dashboard-hub-card { padding: 14px 8px; }
  .dashboard-hub-card__num { font-size: 18px; }
  .dashboard-hub-card__label { font-size: 11px; }
}

/* =====================================================
   CREATOR HUB — Channel Management & Monetization
===================================================== */
.creator-hub {
  margin: 32px 0 24px;
  padding: 24px;
  border: 1px solid rgba(128,128,128,0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,107,0,0.03) 0%, transparent 100%);
}
.creator-hub__header { margin-bottom: 18px; }
.creator-hub__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--general-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.creator-hub__subtitle {
  font-size: 13px;
  color: var(--main-grey-color);
  margin: 4px 0 0;
}

/* Channel cards grid */
.creator-hub__channels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.channel-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--thumbs-bottom-btn-bg, rgba(128,128,128,0.08));
  border: 1px solid rgba(128,128,128,0.16);
  transition: border-color .15s, transform .12s;
  text-decoration: none;
  color: var(--general-color);
}
.channel-card:hover {
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-2px);
}

.channel-card__cover-link { display: block; text-decoration: none; }
.channel-card__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--thumb-placeholder-bg, #1a1a1a);
}
.channel-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.channel-card__no-cover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--main-grey-color);
  opacity: 0.5;
}
.channel-card__no-cover svg { width: 48px; height: 48px; fill: currentColor; }
.channel-card__badge {
  position: absolute;
  top: 8px; right: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffc400 0%, #ff8a00 100%);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255,170,0,0.4);
}
.channel-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.channel-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--general-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.channel-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  color: var(--main-grey-color);
}
.channel-card__meta strong { color: var(--general-color); }
.channel-card__price strong { font-size: 14px; }
.channel-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.channel-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1;
  height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: filter .15s, color .15s, border-color .15s;
  font-family: inherit;
  line-height: 1;
}
button.channel-card__action { appearance: none; -webkit-appearance: none; }
.channel-card__action--primary {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}
.channel-card__action--primary:hover { filter: brightness(1.08); color: #fff; }
.channel-card__action--outline {
  background: transparent;
  color: var(--general-color);
  border: 1px solid rgba(128,128,128,0.32);
}
.channel-card__action--outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.channel-card__action svg { width: 12px; height: 12px; fill: currentColor; }

/* "Add new channel" card */
.channel-card--add {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border: 2px dashed rgba(128,128,128,0.32);
  background: transparent;
  text-decoration: none;
  color: var(--main-grey-color);
  cursor: pointer;
  transition: border-color .15s, color .15s;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
}
button.channel-card--add { appearance: none; -webkit-appearance: none; }
.channel-card--add:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.channel-card--add__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.channel-card--add__icon {
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}
.channel-card--add__label {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  max-width: 180px;
}

/* Mini upsell (when user has paid + free channels) */
.creator-hub__upsell-mini {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(255,170,0,0.08);
  border: 1px solid rgba(255,170,0,0.22);
  border-radius: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--general-color);
}
.creator-hub__upsell-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.creator-hub__upsell-link:hover { text-decoration: underline; }

/* Upsell — has free channels but no paid */
.creator-hub__upsell {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,170,0,0.06) 0%, rgba(255,107,0,0.04) 100%);
  border: 1px solid rgba(255,170,0,0.22);
  border-radius: 12px;
  align-items: flex-start;
}
.creator-hub__upsell-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}
.creator-hub__upsell-content { flex: 1; }
.creator-hub__upsell-content h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--general-color);
}
.creator-hub__upsell-content p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--main-grey-color);
  line-height: 1.55;
}

/* Hero — full promo when user has 0 channels */
.creator-hub__hero {
  position: relative;
  padding: 32px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,107,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(180,60,200,0.14) 0%, transparent 60%),
    linear-gradient(135deg, #1a1418 0%, #221820 100%);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 14px;
  overflow: hidden;
}
.creator-hub__hero-content {
  position: relative;
  max-width: 720px;
}
.creator-hub__hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(255,107,0,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.creator-hub__hero-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.2;
}
.creator-hub__hero-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
}

/* Benefits list (used in hero AND upsell) */
.creator-hub__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.creator-hub__benefits-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.creator-hub__upsell .creator-hub__benefits-list li {
  color: var(--general-color);
}

/* CTA buttons */
.creator-hub__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: filter .15s, transform .12s;
  font-family: inherit;
  border: none;
  line-height: 1;
}
button.creator-hub__cta { appearance: none; -webkit-appearance: none; }
.creator-hub__cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff;
}
.creator-hub__cta--big {
  height: 50px;
  padding: 0 28px;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}
.creator-hub__hero-disclaimer {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* RESPONSIVE */
@media (max-width: 1023px) {
  .dashboard-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .creator-hub { padding: 18px; }
  .creator-hub__hero { padding: 22px; }
  .creator-hub__hero-title { font-size: 20px; }
  .creator-hub__upsell { flex-direction: column; gap: 12px; }
  .creator-hub__upsell-icon { font-size: 32px; }
  .creator-hub__upsell-mini { flex-direction: column; align-items: flex-start; }
  .creator-hub__channels { grid-template-columns: 1fr 1fr; gap: 10px; }
  .channel-card--add { min-height: 140px; }
}
@media (max-width: 640px) {
  .dashboard-hero { flex-direction: column; align-items: flex-start; }
  .dashboard-cta-upload__btn { width: 100%; justify-content: center; }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .dashboard-stat-card { padding: 14px 16px; }
  .dashboard-stat-card__num { font-size: 22px; }
  .dashboard-info-card { flex-wrap: wrap; }
  .dashboard-info-card__avatar { width: 60px; height: 60px; }
  .dashboard-info-card__actions { flex-direction: row; width: 100%; }
  .dashboard-info-card__actions a { flex: 1; }
}


/* =========================================================================
   VERIFY PANEL (/my/verify/) — Identity (blu) + Creator (oro)
   Dark-mode aware (usa CSS vars del tema; light mode override sotto)
   ========================================================================= */

.verify-panel {
  max-width: 1100px;
  margin: 24px auto 60px;
  padding: 0 16px;
  color: var(--general-color);
  box-sizing: border-box;
}
.verify-panel * { box-sizing: border-box; }
.verify-panel__header { text-align: center; margin-bottom: 24px; }
.verify-panel__title { font-size: 28px; font-weight: 700; margin: 0 0 6px; color: var(--general-color); }
.verify-panel__subtitle { color: var(--main-grey-color); margin: 0; font-size: 15px; }

/* Flash banner — overlay rgba functional in both themes */
.verify-panel__flash {
  margin: 16px 0 24px;
  padding: 14px 18px;
  border-radius: 10px;
  border-left: 4px solid;
  font-size: 14px;
  line-height: 1.5;
}
.verify-panel__flash--success {
  background: rgba(34,197,94,.16);
  border-color: #22c55e;
  color: #4ade80;
}
.verify-panel__flash--warning {
  background: rgba(245,158,11,.16);
  border-color: #f59e0b;
  color: #fbbf24;
}
html.light .verify-panel__flash--success { color: #15803d; }
html.light .verify-panel__flash--warning { color: #b45309; }

/* Legend */
.verify-panel__legend {
  display: flex; gap: 18px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 32px;
  font-size: 13px; color: var(--main-grey-color);
}
.verify-panel__legend > div { display: flex; align-items: center; gap: 8px; }

/* Badge (riusabile fuori dal panel) */
.verify-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  font-size: 12px; font-weight: 700;
  border-radius: 999px; line-height: 1;
}
.verify-badge--identity { background: #2563eb; color: #fff; }
.verify-badge--creator  { background: linear-gradient(135deg,#f5b800,#e07a00); color: #fff; box-shadow: 0 1px 3px rgba(224,122,0,.3); }

/* Cards grid */
.verify-panel__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.verify-card {
  background: var(--thumb-box-bg);
  border: 1px solid rgba(128,128,128,0.22);
  border-radius: 14px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  color: var(--general-color);
  min-width: 0;
}
.verify-card--creator {
  border-color: rgba(245,184,0,.55);
  box-shadow: 0 2px 12px rgba(245,184,0,.12);
}

.verify-card__header { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.verify-card__icon { width: 36px; height: 36px; flex-shrink: 0; color: #60a5fa; }
.verify-card__icon svg { width: 100%; height: 100%; fill: currentColor; }
.verify-card--creator .verify-card__icon { color: #f5b800; }
.verify-card__title { font-size: 18px; font-weight: 700; margin: 0; flex: 1; color: var(--general-color); }
.verify-card__pill {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: rgba(37,99,235,.18); color: #93c5fd; font-size: 12px; font-weight: 600;
}
.verify-card__pill--gold { background: rgba(245,184,0,.20); color: #fcd34d; }
html.light .verify-card__pill { color: #1e40af; }
html.light .verify-card__pill--gold { color: #92400e; }
.verify-card__desc { color: var(--main-grey-color); font-size: 14px; line-height: 1.55; margin: 0; }

/* Status block — usano overlay rgba per coerenza dark/light */
.verify-card__status { padding: 14px 16px; border-radius: 10px; font-size: 14px; line-height: 1.5; }
.verify-card__status strong { display: block; font-size: 15px; margin-bottom: 4px; }
.verify-card__status--ok       { background: rgba(34,197,94,.14);  color: #4ade80; border: 1px solid rgba(34,197,94,.45); }
.verify-card__status--pending  { background: rgba(245,158,11,.14); color: #fbbf24; border: 1px solid rgba(245,158,11,.45); }
.verify-card__status--rejected { background: rgba(239,68,68,.14);  color: #f87171; border: 1px solid rgba(239,68,68,.45); }
.verify-card__status--revoked  { background: rgba(128,128,128,.14);color: var(--main-grey-color); border: 1px solid rgba(128,128,128,.35); }
html.light .verify-card__status--ok       { color: #15803d; }
html.light .verify-card__status--pending  { color: #b45309; }
html.light .verify-card__status--rejected { color: #b91c1c; }
.verify-card__status p { margin: 4px 0 0; }
.verify-card__expiry time { font-weight: 600; }

/* Forms */
.verify-form { display: flex; flex-direction: column; gap: 16px; }
.verify-form__instruction {
  background: rgba(37,99,235,.14);
  padding: 14px 16px; border-radius: 8px;
  font-size: 13px; line-height: 1.6; margin: 0;
  color: var(--general-color);
}
.verify-form__instruction strong { display: block; margin-bottom: 4px; }
html.light .verify-form__instruction { background: #eff6ff; color: #1e3a8a; }

.verify-form__section { padding: 14px 0; border-top: 1px solid rgba(128,128,128,.18); }
.verify-form__section:first-of-type { border-top: 0; padding-top: 0; }
.verify-form__section h3 {
  margin: 0 0 14px; font-size: 13px; text-transform: uppercase;
  letter-spacing: .05em; color: var(--main-grey-color);
}
.verify-form__row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.verify-form__row:last-child { margin-bottom: 0; }
.verify-form__row--inline { flex-direction: row; gap: 14px; flex-wrap: wrap; }
.verify-form__row--inline > div { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 8px; }
.verify-form__row > label,
.verify-form__row--inline > div > label {
  font-size: 13px;
  font-weight: 600;
  color: var(--general-color);
  line-height: 1.4;
}
.verify-form__row input[type=text],
.verify-form__row input[type=date],
.verify-form__row input[type=file],
.verify-form__row select,
.verify-form__row--inline input[type=text],
.verify-form__row--inline input[type=date],
.verify-form__row--inline select {
  padding: 11px 13px;
  border: 1px solid rgba(128,128,128,.32);
  border-radius: 8px;
  font: inherit;
  background: var(--input-bg);
  color: var(--input-color);
  width: 100%;
  box-sizing: border-box;
}
.verify-form__row input[type=text]:focus,
.verify-form__row input[type=date]:focus,
.verify-form__row select:focus,
.verify-form__row--inline input[type=text]:focus,
.verify-form__row--inline input[type=date]:focus,
.verify-form__row--inline select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.18);
}
.verify-form__row input[type=file] {
  padding: 8px 10px;
  cursor: pointer;
}
.verify-form__row small { color: var(--main-grey-color); font-size: 12px; line-height: 1.5; margin-top: 2px; }
.verify-form__row small a { color: #60a5fa; text-decoration: underline; }
html.light .verify-form__row small a { color: #2563eb; }

/* Declarations — checkbox custom indipendenti dal global del tema
   (il global usa display:flex sulla label, che spezza i link inline in flex items
   producendo wrap brutti su mobile). Ridefiniamo qui con display:block e ::before/::after. */
.verify-form__declarations {
  border: 1px solid rgba(128,128,128,.22);
  border-radius: 10px;
  padding: 12px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.verify-form__declarations legend {
  padding: 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--main-grey-color);
}
/* Input visivamente nascosto ma keyboard-accessible.
   `display: block` necessario per overridare `input[type=checkbox]{display:none}`
   nel theme globale (black_orange.css) — altrimenti :checked non triggera il ::before. */
.verify-form__declarations input[type=checkbox] {
  display: block !important;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}
/* Override del global label (display:flex; align-items:center) — block layout
   per permettere ai link inline di fluire correttamente nel testo. */
.verify-form__declarations input[type=checkbox] + label {
  display: block !important;
  position: relative;
  padding: 9px 6px 9px 36px;
  margin: 0 !important;
  font-size: 13px;
  line-height: 1.55;
  color: var(--general-color);
  cursor: pointer;
  border-radius: 6px;
  transition: background .15s;
}
.verify-form__declarations input[type=checkbox] + label:hover {
  background: rgba(128,128,128,.08);
}
/* Override completo del ::before global (era 25x25 con bg --checkbox-bg, poco contrasto in dark) */
.verify-form__declarations input[type=checkbox] + label::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(160,160,160,.55);
  border-radius: 5px;
  background: rgba(255,255,255,.04);
  padding: 0;
  margin: 0;
  display: block;
  color: transparent;
  box-shadow: none;
  transform: none;
  transition: background .12s, border-color .12s;
}
.verify-form__declarations input[type=checkbox]:checked + label::before {
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37,99,235,.35);
}
.verify-form__declarations input[type=checkbox]:checked + label::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 13px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.verify-form__declarations input[type=checkbox]:focus-visible + label::before {
  outline: 2px solid rgba(96,165,250,.7);
  outline-offset: 2px;
}
.verify-form__declarations a {
  color: #60a5fa;
  text-decoration: underline;
}
html.light .verify-form__declarations a { color: #2563eb; }
html.light .verify-form__declarations input[type=checkbox] + label::before {
  border-color: rgba(0,0,0,.28);
  background: #fff;
}
html.light .verify-form__declarations input[type=checkbox] + label:hover {
  background: rgba(0,0,0,.04);
}

.verify-form__submit {
  margin-top: 8px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.verify-form__submit:hover { background: #1d4ed8; transform: translateY(-1px); }
.verify-form__submit:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.verify-form__submit--creator { background: linear-gradient(135deg,#f5b800,#e07a00); }
.verify-form__submit--creator:hover { background: linear-gradient(135deg,#e0a800,#c96d00); }

/* Footer */
.verify-panel__footer {
  border-top: 1px solid rgba(128,128,128,.22);
  padding-top: 18px;
  font-size: 12px;
  color: var(--main-grey-color);
  text-align: center;
  line-height: 1.6;
}
.verify-panel__footer p { margin: 4px 0; }
.verify-panel__footer a { color: #60a5fa; text-decoration: underline; }
html.light .verify-panel__footer a { color: #2563eb; }

@media (max-width: 720px) {
  .verify-panel__cards { grid-template-columns: 1fr; gap: 18px; }
  .verify-card { padding: 18px; }
  .verify-form__row--inline { flex-direction: column; }
  .verify-form__row--inline > div { min-width: 0; }
}
@media (max-width: 480px) {
  .verify-panel { padding: 0 14px; margin-top: 16px; margin-bottom: 40px; }
  .verify-panel__title { font-size: 22px; }
  .verify-panel__subtitle { font-size: 14px; line-height: 1.5; }
  .verify-panel__legend {
    gap: 10px;
    font-size: 12px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .verify-panel__legend > div { padding-left: 4px; }
  .verify-card { padding: 16px; gap: 14px; border-radius: 12px; }
  .verify-card__header { gap: 10px; }
  .verify-card__icon { width: 28px; height: 28px; }
  .verify-card__title { font-size: 16px; }
  .verify-card__pill { font-size: 11px; padding: 3px 8px; }
  .verify-form__instruction { padding: 12px 14px; font-size: 13px; }
  .verify-form__declarations { padding: 10px 12px 6px; }
  .verify-form__declarations input[type=checkbox] + label {
    padding: 10px 4px 10px 34px;
    font-size: 13px;
    line-height: 1.5;
  }
  .verify-form__declarations input[type=checkbox] + label::before {
    left: 2px;
    top: 11px;
    width: 20px;
    height: 20px;
  }
  .verify-form__declarations input[type=checkbox]:checked + label::after {
    left: 9px;
    top: 13px;
  }
  .verify-form__submit { width: 100%; padding: 14px 18px; font-size: 15px; }
  .verify-panel__footer { font-size: 11px; padding-top: 14px; }
}
