/**
 * Author Box 스타일
 */

.author-box-container {
    margin: 40px 20px;
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    clear: both;
}

.author-box-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-box-photo {
    flex-shrink: 0;
}

.author-box-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-box-content {
    flex: 1;
    min-width: 0;
}

.author-box-name {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.author-box-bio {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.author-box-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.single-post .entry-content .author-box-links a{
    text-decoration:none;
}

.author-box-homepage {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.author-box-homepage:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.author-box-homepage svg {
    width: 16px;
    height: 16px;
}

.author-box-sns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.author-sns-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.2s ease;
    text-decoration: none;
}

.author-sns-link svg {
    width: 20px;
    height: 20px;
}

.author-sns-link.facebook {
    background: #1877f2;
}

.author-sns-link.facebook:hover {
    background: #145dbf;
}

.author-sns-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.author-sns-link.instagram:hover {
    opacity: 0.9;
}

.author-sns-link.twitter {
    background: #000;
}

.author-sns-link.twitter:hover {
    background: #333;
}

.author-sns-link.youtube {
    background: #ff0000;
}

.author-sns-link.youtube:hover {
    background: #cc0000;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .author-box-container {
        padding: 20px;
    }
    
    .author-box-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-box-photo img {
        width: 80px;
        height: 80px;
    }
    
    .author-box-name {
        font-size: 18px;
    }
    
    .author-box-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .author-box-container {
        margin: 30px 0;
        padding: 15px;
    }
    
    .author-box-photo img {
        width: 70px;
        height: 70px;
    }
    
    .author-box-name {
        font-size: 16px;
    }
    
    .author-box-bio {
        font-size: 13px;
    }
    
    .author-sns-link {
        width: 32px;
        height: 32px;
    }
    
    .author-sns-link svg {
        width: 18px;
        height: 18px;
    }
}

.single p.author-box-bio{
    padding: 0px;
}
