/* Contenedor principal del shortcode */
.ccp-wrapper {
    display: flex;
    align-items: center;
    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-fa-star {
    color: #f5c518;
    font-size: 16px;
    margin-right: 2px;
    transition: transform 0.2s ease;
  }
  
  .ccp-fa-star:hover {
    transform: scale(1.1);
  }
  
  /* Texto al lado de las fotos */
  .ccp-texto {
    font-size: 12px;
    line-height: 1.4;
    max-width: 300px;
    font-family: inherit;
  }
  
  /* 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;
    }
  }
  