/* --- Author List Plugin Styles --- */

/* 並び替えリンク */
.author-list-sorter {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
}
.author-list-sorter strong {
    color: #333;
}

/* ユーザーリスト全体 */
.author-list-bp {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.author-list-bp > li {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
	list-style-type: none !important;
}
.author-list-bp > li:last-child {
    border-bottom: none;
}
.author-list-bp ul li{
	list-style-type: none !important;
}

/* ユーザー情報（アバターと詳細） */
.author-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.author-avatar img {
    border-radius: 50%;
    display: block;
	width:80px;
	height:80px;
}
.author-details {
    flex: 1;
}
.author-profile {
    font-size: 0.9em;
    color: #555;
    margin-top: 8px;
}
.author-profile p {
    margin: 0;
}

/* ユーザーごとの記事リスト */
.author-post-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

/* 個々の記事アイテム */
.author-post-list .post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}
.author-post-list {
    border: 1px var(--spontane-color) solid;
    border-radius: 3px;
    background-color: white;
}
.mcon p.author-posts-count {
	margin-top:-1em;
	margin-bottom:0em !important;
}
.post-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}
.post-details {
    flex: 1;
    background-color: whitesmoke;
	margin: 3px;
    padding: 3px;
}
.post-details h4 {
    margin: 0 0 5px 0;
    font-size: 1em;
}
.post-details h3 {
	font-size: 1em;
    background-color: whitesmoke;
}
.post-date {
    text-align: right;
    font-size: 0.8em;
}
.post-excerpt {
    font-size: 0.85em;
    color: #555;
    line-height: 1.6;
}

/* アコーディオン */
.post-item-details summary {
	padding-left: 1rem;
    background-color: silver;
}
/* ページネーション */
.xauthor-list-pagination {
    margin-top: 20px;
}
.xauthor-list-pagination .page-numbers {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ccc;
    text-decoration: none;
}
.xauthor-list-pagination .page-numbers.current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

a {text-decoration:none !important;}