@charset "UTF-8";

.pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2em 0;
    padding: 0;
    list-style: none;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: .875rem;
}

.pagination .current {
    background: #2b6cb0;
    border-color: #2b6cb0;
    color: #fff;
    font-weight: bold;
}

.pagination a:hover {
    background: #ebf4ff;
}

/* ── カテゴリメニュー（アクティブ） ─────────────── */
.cat-menu a.active {
    font-weight: bold;
    text-decoration: underline;
}
