/* style.css */
.latest-posts {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    font-family: sans-serif;
}

.post {
    margin-bottom: 15px;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.post:hover {
    background: #f9f9f9;
}

.post-thumbnail {
    width: 60px !important;    /* !importantを追加 */
    height: 60px !important;   /* !importantを追加 */
    object-fit: cover !important;
}
.post-content {
    flex: 1;
}

.post h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    line-height: 1.4;
}

.post a {
    color: #0066cc;
    text-decoration: none;
}

.post a:hover {
    text-decoration: underline;
}

.date {
    color: #666;
    font-size: 0.8em;
}

.loading {
    text-align: center;
    color: #666;
}

.thumbnail-link {
	display: block;
	text-decoration: none;
	cursor: pointer;
}

.thumbnail-link:hover {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.post-thumbnail {
	width: 100%;
	height: auto;
	object-fit: cover;
}




/* ナビゲーションの改善（文字色を暗めに） */
.button-bar li a {
    color: #333333 !important;        /* 文字色を濃いグレーに */
    text-shadow: none !important;     /* 影を削除 */
    font-weight: 600 !important;      /* フォントを少し太く */
    letter-spacing: 0.5px !important;
}

.button-bar li a:hover {
    color: #000000 !important;        /* ホバー時は黒に */
    opacity: 0.9 !important;
}