/* Contenedor principal del shortcode */
.ccp-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

/* Contenedor de las fotos */
.ccp-fotos {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 10px;
}

/* Estilo para las imágenes redondas superpuestas */
.ccp-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
  margin-left: -10px;
  z-index: 1;
}

.ccp-avatar:first-child {
  margin-left: 0;
}

.ccp-avatar:hover {
  transform: scale(1.2);
  z-index: 10;
}

/* Estrellas encima del texto */
.ccp-estrellas {
  margin-bottom: 6px;
}

.ccp-estrella {
  color: #f5c518;
  font-size: 18px;
  margin-right: 2px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}

.ccp-estrella:hover {
  transform: scale(1.1);
}

/* Texto al lado de las fotos */
.ccp-texto {
  font-size: 14px;
  line-height: 1.5;
  font-family: inherit;
  max-width: 60%;
  min-width: 200px;
  flex: 1;
}

/* Responsive para mobile */
@media (max-width: 768px) {
  .ccp-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .ccp-fotos {
    justify-content: flex-start;
  }

  .ccp-texto {
    margin-top: 10px;
    max-width: 100%;
  }
}
