/************************************************
 CREATOR VERIFIED BLOCK — Wallpapers Central
************************************************/

/* Contenitore principale */
.cv-wrap {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin: 0px 0;
  font-family: -apple-system, "San Francisco", BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}

/* Avatar + badge */
.cv-avatar {
  text-align: center;
  position: relative;
}

.cv-avatar__frame {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

.cv-avatar__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cv-avatar__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ Badge di verifica sovrapposto correttamente */
.cv-check {
    position: absolute;
    bottom: -9px;
    right: -8px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ff2d55;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); */
    z-index: 10;
    border: 3px solid #fff;
}

/* Scritta Verificato */
.cv-verified {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 600;
  color: #ff2d55;
}

/* Meta info a destra */
.cv-meta {
  flex: 1;
  min-width: 260px;
}

.cv-name {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 22px 0;
  line-height: 1.1;
}

.cv-name a {
  color: #000;
  text-decoration: none;
}

.cv-name a:hover {
  text-decoration: underline;
}

/* Azioni (bottoni) */
.cv-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Bottone Segui */
.cv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
padding: 2px 42px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cv-btn--follow {
  background: #ff2d55;
  color: #fff;
}

.cv-btn--follow:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 45, 85, 0.4);
}

/* Bottone Social */
.cv-btn--social {
  background: #f5f4f7;
  color: #000;
  font-weight: 600;
}

.cv-btn--social:hover {
  background: #ebeaf0;
  transform: translateY(-2px);
}

/* Icone nei bottoni */
.cv-btn i {
  font-size: 22px;
  display: inline-block;
  vertical-align: middle;
}

/* Tooltip per il pulsante Segui */
.cv-tooltip {
  position: absolute;
  background: #000;
  color: #fff;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transform: translate(-50%, -100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}

.cv-tooltip.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -120%);
}

/* Vibrazione icona */
.shake {
  animation: shake 0.25s linear;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .cv-wrap {
    flex-direction: column;
    text-align: center;
  }

  .cv-avatar__frame {
    width: 150px;
    height: 150px;
  }

  .cv-check {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: -14px;
    right: -14px;
  }

  .cv-name {
    font-size: 32px;
  }

  .cv-btn {
    width: 100%;
    max-width: 320px;
  }
}



h3.wc-card-title.latest {color: #fff;  
     margin: 0;}
p.wc-card-author.latest  {margin-top: 4px;}
p.wc-card-author {margin-bottom: 15px;}