/* Adding the missing SNS link styles from mypage.css */

/* Existing author.css styles */
.author-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.author-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.author-profile-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-bio-preview {
    max-height: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.badge-writer {
    background-color: #71c16e;
    color: #000;
}

/* 작가 상세 페이지 스타일 */
.sir{
    font-size: 0.9rem;
}
.author-banner {
    background-color: #1a1a1a;
    padding: 40px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.author-profile-image-large {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 15px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 4px;
    flex-grow: 1;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #71c16e;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.project-card {
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-cover {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bmc-container {
    margin: 30px 0;
    text-align: center;
}

.bmc {
    width: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5px;
    padding-right: 35px;
    border-radius: 10px;
    /* 기본 배경색은 JavaScript에서 덮어씌워짐 */
    background-color: #ffdd00;
}

.recent-episodes {
    margin-top: 20px;
}

.join-date {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.no-content-box {
    padding: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.6);
}

/* Added SNS links styles from mypage.css */
.author-sns-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sns-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.sns-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.sns-link i {
    color: #ff6b95;
    font-size: 1.1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.sns-link a, .sns-link span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    flex-grow: 1;
    text-align: left;
}

.sns-link a:hover {
    color: #ffffff;
}