/* ✅ 筆友資訊區塊（讓頭像 & 暱稱置中） */
.author-info {
    display: flex;
    flex-direction: column;  /* ✅ 讓頭像在最上方 */
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    padding: 10px;
}

/* ✅ 筆友頭像（置頂 & 置中，移除背景與框線） */
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* ✅ 筆友暱稱（置中顯示） */
.author-name {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    text-align: center;
}

.author-name:hover {
    text-decoration: underline;
}

/* ✅ 響應式設計（手機版） */
@media (max-width: 768px) {
    .author-avatar {
        width: 70px;
        height: 70px;
    }

    .author-name {
        font-size: 18px;
    }
}
