.top-authors-wrapper-78842 {
    background-color: #0b192c; /* Dark blue background */
    border: 1px solid #666; /* Outer gray border */
    border-radius: 8px;
    padding: 2px; /* Space for double border effect */
    box-sizing: border-box;
}

.top-authors-wrapper-78842::before {
    content: '';
    display: block;
    border: 1px solid #ccc; /* Inner lighter border */
    border-radius: 6px;
    padding: 20px;
}

.top-authors-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.top-authors-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: -40px; /* Offset the padding from the ::before pseudo-element hack to place content inside */
    padding: 20px;
    position: relative;
    z-index: 1;
}

.top-author-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 120px;
}

.top-author-avatar-link {
    display: block;
    margin-bottom: 10px;
}

.top-author-avatar-wrapper {
    border: 2px solid #38bdf8; /* Light blue cyan border */
    border-radius: 10px;
    overflow: hidden;
    width: 120px;
    height: 120px;
}

.top-author-avatar-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0; /* Let wrapper handle rounding */
}

.top-author-info {
    text-align: left;
    width: 100%;
}

.top-author-name {
    color: #38bdf8; /* Light blue cyan text */
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
}

.top-author-link {
    color: #38bdf8;
    text-decoration: none;
    font-size: 14px;
}

.top-author-link:hover {
    text-decoration: underline;
}