/* ブログ専用のスタイル */

/* --- 記事一覧 --- */
.blog-list-container {
    list-style: none;
    padding: 0;
}

.blog-list-item {
    border-bottom: 1px solid var(--color-border);
    padding: 25px 0;
}
.blog-list-item:first-child {
    padding-top: 0;
}
.blog-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-list-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
}
.blog-list-item h3 a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}
.blog-list-item h3 a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.post-meta {
    font-size: 0.9rem;
    color: #535353ff;
    margin-bottom: 10px;
}
.post-meta span {
    margin-right: 15px;
}

.post-excerpt p {
    margin: 0;
    line-height: 1.6;
}

/* --- 記事詳細 --- */
.post-header {
    text-align: center;
}
.post-header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    border-bottom: none;
    text-align: left;
}
.post-header .post-meta {
    text-align: left;
    margin-bottom: 0;
}

.post-body {
    padding: 20px 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* 本文中の見出し */
.post-body h2 {
    font-size: 1.6rem;
    border-left: 5px solid var(--color-accent);
    padding-left: 10px;
    margin-top: 30px;
}
.post-body h3 {
    font-size: 1.3rem;
    margin-top: 25px;
}
/* 本文中の画像 */
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.post-footer {
    text-align: center;
    padding-top: 20px;
}