/* カテゴリーボタンのスタイル */
.o-frame-categories-list {
    margin: 20px 0;
}

.o-frame-categories-list ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.o-frame-categories-list button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    outline: none;
    min-width: 80px;
}

.o-frame-categories-list button:hover {
    background: #f0f0f0;
    border-color: #8CC280;
}

.o-frame-categories-list button.active,
.o-frame-categories-list button.current {
    background: #8CC280;
    color: white;
    border-color: #8CC280;
}

/* ローディング状態のスタイル */
.loading {
    text-align: center;
    padding: 40px 0;
}

.loading p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* 記事一覧のアニメーション */
.o-frame--list-news-items ul li {
    transition: opacity 0.3s ease;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .o-frame-categories-list ul {
        gap: 8px;
    }

    .o-frame-categories-list button {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 60px;
    }
}