/* 検索・タグフィルター領域 */
.blog-search-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 24px;
    align-items: center;
}
#blog-search-input {
    flex: 1 1 240px;
    padding: 8px 14px;
    font-size: 1em;
    border-radius: 8px;
    border: 2px solid #7ecb8f;
    background: rgba(44, 80, 28, 0.85);
    color: #eaffee;
    outline: none;
    box-shadow: 0 1px 8px #0006;
}
#blog-search-input::placeholder {
    color: #b7e6c7;
    opacity: 0.7;
}
.tag-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-btn {
    background: #7ecb8f;
    color: #234d2d;
    border: none;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.95em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 4px;
}
.tag-btn.selected {
    background: #fff7b2;
    color: #234d2d;
    font-weight: bold;
}
.tag-btn:hover {
    background: #a4e08b;
}

/* ブログ記事リスト */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.blog-item {
    display: flex;
    background: rgba(44, 80, 28, 0.85);
    border-radius: 14px;
    box-shadow: 0 2px 12px #0006;
    border: 2px solid #7ecb8f;
    padding: 18px 16px;
    align-items: center;
    gap: 24px;
    transition: box-shadow 0.2s;
}
.blog-item:hover {
    box-shadow: 0 4px 24px #0008;
}
.blog-thumb {
    width: 120px;
    min-width: 88px;
    aspect-ratio: 16/9;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 8px #0008;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-info {
    flex: 1 1 0;
    min-width: 0;
}
.blog-title {
    font-size: 1.15em;
    font-weight: bold;
    color: #eaffee;
    margin-bottom: 6px;
    text-decoration: none;
    border-left: 4px solid #7ecb8f;
    padding-left: 8px;
    background: rgba(164,224,139,0.08);
    border-radius: 8px;
    display: inline-block;
}
.blog-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.blog-tag {
    background: #a4e08b;
    color: #234d2d;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.85em;
    margin-bottom: 2px;
}
.blog-date {
    font-size: 0.95em;
    color: #b7e6c7;
    margin-bottom: 2px;
}
.blog-link {
    display: inline-block;
    background: #7ecb8f;
    color: #234d2d;
    padding: 6px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 4px #0004;
    margin-top: 8px;
}
.blog-link:hover {
    background: #fff7b2;
    color: #234d2d;
}

/* ページネーション */
.blog-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}
.page-btn {
    background: #7ecb8f;
    color: #234d2d;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.page-btn.selected {
    background: #fff7b2;
    color: #234d2d;
    font-weight: bold;
}
.page-btn:disabled {
    background: #b7e6c7;
    color: #888;
    cursor: not-allowed;
}

/* レスポンシブ */
@media screen and (max-width: 680px) {
    .blog-list {
        gap: 12px;
    }
    .blog-item {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 4px;
        gap: 10px;
    }
    .blog-thumb {
        width: 100%;
        min-width: 0;
        max-width: 100vw;
    }
}
