#latest-publication-authors {
    --authors-ink: #111827;
    --authors-muted: #64748b;
    --authors-line: #eeeeee;
    --authors-surface: transparent;
    padding: 0;
    margin-bottom: 30px;
    background: var(--authors-surface);
}

#latest-publication-authors .latest-authors-card {
    background: transparent;
    box-shadow: none;
}

#latest-publication-authors .latest-authors-head {
    margin-bottom: 0px;
    padding-top: 0;
    margin-top: 0;
    border-bottom: none;
}

#latest-publication-authors .latest-authors-title {
    font-family: var(--bs-body-font-family, system-ui, -apple-system, sans-serif) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: var(--authors-ink, #121212) !important;
    border-top: 2px solid var(--authors-ink, #000) !important;
    padding-top: 0.65rem !important;
    margin-bottom: 1.25rem !important;
    display: block;
    width: 100%;
}

#latest-publication-authors .latest-authors-title a {
    color: inherit !important;
    text-decoration: none !important;
}

#latest-publication-authors .latest-authors-title a:hover i {
    transform: translateX(6px);
    transition: all 0.2s ease;
}

#latest-publication-authors .latest-authors-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#latest-publication-authors .latest-authors-item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--authors-line);
    transition: background-color 0.2s ease;
}

#latest-publication-authors .latest-authors-item:last-child {
    border-bottom: 0;
}

#latest-publication-authors .latest-authors-item:hover {
    background-color: var(--authors-hover-bg, rgba(0, 0, 0, 0.02));
}

#latest-publication-authors .latest-authors-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

#latest-publication-authors .latest-authors-name {
    color: #0066cc;
    font-family: var(--bs-font-sans-serif);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

#latest-publication-authors .latest-authors-publication {
    color: var(--authors-ink);
    font-family: 'Literata', serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

#latest-publication-authors .latest-authors-timeago {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--authors-muted);
    font-family: var(--bs-font-sans-serif);
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

#latest-publication-authors .latest-authors-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    flex-shrink: 0;
    border: 1px solid #eee;
}

#latest-publication-authors .latest-authors-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    #latest-publication-authors {
        padding-left: 1.5rem;
        border-left: 1px solid var(--authors-line, #eeeeee);
    }
}

html[data-bs-theme="dark"] #latest-publication-authors,
body.dark-mode #latest-publication-authors {
    --authors-ink: #f8fafc;
    --authors-muted: #94a3b8;
    --authors-line: rgba(255, 255, 255, 0.1);
    --authors-hover-bg: rgba(255, 255, 255, 0.04);
    border-top-color: #f8fafc;
}
