.author-container {
    max-width: 900px;
    margin: 60px auto 0 auto;
    padding: 0 16px 40px 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.author-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.author-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.author-avatar img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    box-shadow: 0 4px 15px rgba(37,99,235,0.15);
    border: 4px solid #fff;
    transition: transform 0.3s ease;
}
.author-avatar img:hover {
    transform: scale(1.05);
}
.author-info {
    flex: 1;
}
.author-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    letter-spacing: -0.5px;
}
.author-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.author-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}
.author-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}
.author-stats span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
}
.author-social-links {
    margin-bottom: 8px;
}
.author-social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #2563eb;
    font-size: 18px;
    transition: color 0.2s;
}
.author-social-links a:hover {
    color: #1d4ed8;
}
.author-timeline {
    position: relative;
    margin: 40px 0 0 30px;
    padding-left: 20px;
    border-left: 2px solid #e2e8f0;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    min-height: 40px;
    transition: transform 0.3s ease;
}
.timeline-item:hover {
    transform: translateX(5px);
}
.timeline-dot {
    position: absolute;
    left: -31px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 4px solid #3b82f6;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 2px #fff;
    transition: all 0.3s ease;
}
.timeline-item:hover .timeline-dot {
    border-color: #60a5fa;
    transform: scale(1.2);
}
.timeline-content {
    margin-left: 20px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.timeline-content:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}
.timeline-title {
    margin: 0 0 12px 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #1e293b;
}
.timeline-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.timeline-title a:hover {
    color: #3b82f6;
}
.timeline-meta {
    color: #64748b;
    font-size: 0.9em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.timeline-meta::before {
    content: '📅';
    font-size: 1em;
}
.timeline-excerpt {
    color: #475569;
    font-size: 0.95em;
    line-height: 1.6;
}
.author-pagination {
    text-align: center;
    margin: 40px 0 0 0;
}
.author-pagination .page-numbers {
    display: inline-block;
    margin: 0 4px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}
.author-pagination .page-numbers.current {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}
.author-pagination .page-numbers:hover:not(.current) {
    background: #e2e8f0;
    color: #1e40af;
}
.no-posts {
    color: #aaa;
    text-align: center;
    font-size: 16px;
    padding: 40px 0;
}
@media (max-width: 768px) {
    .author-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .author-stats {
        justify-content: center;
    }
    .author-timeline {
        margin-left: 20px;
        padding-left: 15px;
    }
    .timeline-dot {
        left: -26px;
        width: 14px;
        height: 14px;
        border-width: 3px;
    }
    .timeline-content {
        padding: 15px;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.timeline-item {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.author-news-list {
    margin-top: 32px;
}
.news-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-bottom: 28px;
    padding: 24px 24px 18px 0;
    position: relative;
    transition: box-shadow 0.2s;
}
.news-card:hover {
    box-shadow: 0 6px 24px rgba(37,99,235,0.10);
}
.news-date {
    width: 56px;
    min-width: 56px;
    background: #f5f6fa;
    border-radius: 10px;
    text-align: center;
    margin-right: 24px;
    padding: 10px 0 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.news-day {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    line-height: 1;
}
.news-month {
    font-size: 15px;
    color: #888;
    margin-top: 2px;
}
.news-content {
    flex: 1 1 0%;
    min-width: 0;
}
.news-title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.4;
}
.news-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.news-title a:hover {
    color: #2563eb;
    text-decoration: underline;
}
.news-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}
.news-excerpt {
    color: #444;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
}
.news-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #888;
}
.news-category {
    color: #2563eb;
    background: #e0e7ff;
    border-radius: 6px;
    padding: 2px 8px;
    margin-right: 4px;
}
.news-tags {
    display: inline-block;
}
.news-tag {
    background: #f1f5f9;
    color: #2563eb;
    border-radius: 6px;
    padding: 2px 8px;
    margin-right: 4px;
}
.news-thumb {
    width: 120px;
    min-width: 120px;
    height: 80px;
    margin-left: 24px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6fa;
}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 800px) {
    .news-card {
        flex-direction: column;
        padding: 16px 8px 12px 8px;
    }
    .news-date {
        flex-direction: row;
        width: auto;
        min-width: 0;
        margin: 0 0 8px 0;
        padding: 6px 12px;
    }
    .news-thumb {
        width: 100%;
        min-width: 0;
        height: 120px;
        margin: 12px 0 0 0;
    }
} 