.cr-author-page {
    max-width: 760px;
    margin: 32px auto 56px;
    border: 1px solid #dde3ec;
    border-radius: 12px;
    overflow: hidden;
}

.cr-author-header {
    background: #0f2744;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
}
.cr-author-header-avatar {
    width: 14%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}
.cr-author-header-avatar-placeholder {
    background: #1c3a5e;
    color: #e8a020;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
}
.cr-author-header-body { min-width: 0; color: #fff; }
.cr-author-header-name {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}
.cr-author-header-credentials {
    font-family: var(--font-body);
    font-size: 13px;
    margin: 3px 0 8px;
    color: rgba(255,255,255,0.7);
}
.cr-author-header-linkedin {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
}

.cr-author-body { padding: 20px 24px; background: #fff; }
.cr-author-bio {
    font-family: var(--font-body);
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 16px;
}
.cr-author-article-count {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 10px;
}

.cr-author-article-list { display: flex; flex-direction: column; }
.cr-author-article-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #222;
}
.cr-author-article-row:last-child { border-bottom: none; }
.cr-author-article-thumb-wrap {
    display: block;
    flex: 0 0 30%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
}
.cr-author-article-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}
.cr-author-article-row:hover .cr-author-article-thumb {
    transform: scale(1.06);
}
.cr-author-article-thumb-placeholder {
    flex: 0 0 30%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0a83a, #854f0b);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}
.cr-author-article-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.cr-author-article-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}
.cr-author-article-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cr-author-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.cr-author-article-subject {
    font-family: var(--font-body);
    font-size: 12px;
    color: #888;
}
.cr-author-article-date {
    font-family: var(--font-body);
    font-size: 12px;
    color: #aaa;
}
.cr-author-article-date::before {
    content: "\2022";
    margin-right: 8px;
    color: #ccc;
}

.cr-author-empty {
    font-family: var(--font-body);
    font-size: 13px;
    color: #888;
}

@media (max-width: 600px) {
    .cr-author-page { margin: 0; border-radius: 0; border-left: none; border-right: none; }
    .cr-author-article-row { flex-direction: column; align-items: stretch; gap: 10px; }
    .cr-author-article-thumb-wrap, .cr-author-article-thumb-placeholder { flex-basis: auto; width: 100%; }
}
