<style>
.author-list-001 {
    max-width: 800px;
    margin: 20px auto;
}

.author-card-001 {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.author-card-001 img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0px 30px 0px 0px;
}

.author-info-001 {
    flex-grow: 1;
}

.author-name-001 {
    font-size: 18px;
    font-weight: bold;
}

.author-job-001 {
    color: #666;
    font-size: 14px;
}

.author-profile-btn-001 {
    background: #e7e7e7;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.author-profile-btn-001:hover {
    background: #d1d1d1;
}

.author-copy-btn-001 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.author-copy-btn-001:hover {
    opacity: 1;
}

.author-copy-btn-001.copied {
    background: #4CAF50;
    color: white;
} 
@media (max-width: 600px) {
  .author-card-001 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .author-card-001 img {
    width: 100px;
    height: 100px;
    margin: 0 0 15px 0;
  }

  .author-info-001 {
    width: 100%;
  }

  .author-profile-btn-001 {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .author-copy-btn-001 {
    position: static;
    margin-top: 10px;
    width: auto;
    text-align: center;
  }
}

</style>